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.phpt17
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/standard/tests/time/bug13142.phpt b/ext/standard/tests/time/bug13142.phpt
deleted file mode 100644
index f021bea6aa..0000000000
--- a/ext/standard/tests/time/bug13142.phpt
+++ /dev/null
@@ -1,17 +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");
-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