summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug20382-1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/bug20382-1.phpt')
-rw-r--r--ext/date/tests/bug20382-1.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/ext/date/tests/bug20382-1.phpt b/ext/date/tests/bug20382-1.phpt
deleted file mode 100644
index a259d934af..0000000000
--- a/ext/date/tests/bug20382-1.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Bug #20382 [1] (strtotime ("Monday", $date) produces wrong result on DST changeover)
---FILE--
-<?php
- putenv("TZ=Europe/Amsterdam");
- $tStamp = mktime (17, 17, 17, 10, 27, 2004);
- echo "tStamp=". date("l Y-m-d H:i:s T", $tStamp). "\n";
-
- $strtotime_timestamp = strtotime ("Monday", $tStamp);
- echo "result=". date("l Y-m-d H:i:s T", $strtotime_timestamp). "\n";
- echo "wanted=Monday 2004-11-01 00:00:00 CET\n";
-?>
---EXPECT--
-tStamp=Wednesday 2004-10-27 17:17:17 CEST
-result=Monday 2004-11-01 00:00:00 CET
-wanted=Monday 2004-11-01 00:00:00 CET