aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2015-06-21 18:10:49 +0300
committerEli Zaretskii2015-06-21 18:10:49 +0300
commit8bc4185d647df4313eada79311c07313139d9b4f (patch)
treebbc4037d6a3c399f0169ec5f6718e8356ea737b3
parent821a3633564f36857968c7fe2b8bb6681a895905 (diff)
downloademacs-8bc4185d647df4313eada79311c07313139d9b4f.tar.gz
emacs-8bc4185d647df4313eada79311c07313139d9b4f.zip
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.
-rw-r--r--test/automated/icalendar-tests.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/automated/icalendar-tests.el b/test/automated/icalendar-tests.el
index 68d0a400137..3614c7adc76 100644
--- a/test/automated/icalendar-tests.el
+++ b/test/automated/icalendar-tests.el
@@ -1318,6 +1318,11 @@ DTEND;VALUE=DATE-TIME:20030919T113000"
1318 "&9/19/2003 09:00-11:30 non-recurring\n UID: 1234567890uid\n")) 1318 "&9/19/2003 09:00-11:30 non-recurring\n UID: 1234567890uid\n"))
1319 1319
1320(ert-deftest icalendar-import-with-timezone () 1320(ert-deftest icalendar-import-with-timezone ()
1321 ;; This is known to fail on MS-Windows, because the test assumes
1322 ;; Posix features of specifying DST rules.
1323 :expected-result (if (memq system-type '(windows-nt ms-dos))
1324 :failed
1325 :passed)
1321 ;; bug#11473 1326 ;; bug#11473
1322 (icalendar-tests--test-import 1327 (icalendar-tests--test-import
1323 "BEGIN:VCALENDAR 1328 "BEGIN:VCALENDAR
@@ -1446,6 +1451,11 @@ SUMMARY:and diary-anniversary
1446;; ====================================================================== 1451;; ======================================================================
1447(ert-deftest icalendar-real-world () 1452(ert-deftest icalendar-real-world ()
1448 "Perform real-world tests, as gathered from problem reports." 1453 "Perform real-world tests, as gathered from problem reports."
1454 ;; This is known to fail on MS-Windows, since it doesn't support DST
1455 ;; specification with month and day.
1456 :expected-result (if (memq system-type '(windows-nt ms-dos))
1457 :failed
1458 :passed)
1449 ;; 2003-05-29 1459 ;; 2003-05-29
1450 (icalendar-tests--test-import 1460 (icalendar-tests--test-import
1451 "BEGIN:VCALENDAR 1461 "BEGIN:VCALENDAR