emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 8bc4185: Expect 2 icalendar tests to fail on MS-Win


From: Eli Zaretskii
Subject: [Emacs-diffs] master 8bc4185: Expect 2 icalendar tests to fail on MS-Windows
Date: Sun, 21 Jun 2015 15:12:00 +0000

branch: master
commit 8bc4185d647df4313eada79311c07313139d9b4f
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Expect 2 icalendar tests to fail on MS-Windows
    
    * test/automated/icalendar-tests.el (icalendar-import-with-timezone)
    (icalendar-real-world): Make them expected failures on MS-Windows.
---
 test/automated/icalendar-tests.el |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/test/automated/icalendar-tests.el 
b/test/automated/icalendar-tests.el
index 68d0a40..3614c7a 100644
--- a/test/automated/icalendar-tests.el
+++ b/test/automated/icalendar-tests.el
@@ -1318,6 +1318,11 @@ DTEND;VALUE=DATE-TIME:20030919T113000"
    "&9/19/2003 09:00-11:30 non-recurring\n UID: 1234567890uid\n"))
 
 (ert-deftest icalendar-import-with-timezone ()
+  ;; This is known to fail on MS-Windows, because the test assumes
+  ;; Posix features of specifying DST rules.
+  :expected-result (if (memq system-type '(windows-nt ms-dos))
+                       :failed
+                     :passed)
   ;; bug#11473
   (icalendar-tests--test-import
    "BEGIN:VCALENDAR
@@ -1446,6 +1451,11 @@ SUMMARY:and diary-anniversary
 ;; ======================================================================
 (ert-deftest icalendar-real-world ()
   "Perform real-world tests, as gathered from problem reports."
+  ;; This is known to fail on MS-Windows, since it doesn't support DST
+  ;; specification with month and day.
+  :expected-result (if (memq system-type '(windows-nt ms-dos))
+                       :failed
+                     :passed)
   ;; 2003-05-29
   (icalendar-tests--test-import
    "BEGIN:VCALENDAR



reply via email to

[Prev in Thread] Current Thread [Next in Thread]