summaryrefslogtreecommitdiff
path: root/ext/standard/tests/time/bug13142.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/time/bug13142.phpt')
-rw-r--r--ext/standard/tests/time/bug13142.phpt20
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/standard/tests/time/bug13142.phpt b/ext/standard/tests/time/bug13142.phpt
deleted file mode 100644
index af3e1f2f31..0000000000
--- a/ext/standard/tests/time/bug13142.phpt
+++ /dev/null
@@ -1,20 +0,0 @@
---TEST--
-Bug #13142 strtotime handling of "M d H:i:s Y" format
---SKIPIF--
-<?php
-if (!@putenv("TZ=US/Eastern") || getenv("TZ") != 'US/Eastern') {
- die("skip unable to change TZ enviroment variable\n");
-}
-?>
---FILE--
-<?php
-putenv("TZ=US/Eastern");
-if (date('T') == 'GMT') {
- putenv("TZ=EST5EDT4,M4.1.0,M10.5.0");
-}
-echo date("r\n", strtotime("Sep 04 16:39:45 2001"));
-echo date("r\n", strtotime("Sep 04 2001 16:39:45"));
-?>
---EXPECT--
-Tue, 4 Sep 2001 16:39:45 -0400
-Tue, 4 Sep 2001 16:39:45 -0400