summaryrefslogtreecommitdiff
path: root/ext/date/tests/timezone-configuration.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/timezone-configuration.phpt')
-rw-r--r--ext/date/tests/timezone-configuration.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/date/tests/timezone-configuration.phpt b/ext/date/tests/timezone-configuration.phpt
deleted file mode 100644
index 147b10a823..0000000000
--- a/ext/date/tests/timezone-configuration.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-timezone configuration [1]
---INI--
-date.timezone=GMT
---FILE--
-<?php
- putenv('TZ=Europe/Oslo');
- echo strtotime("2005-06-18 22:15:44"), "\n";
-
- putenv('TZ=Europe/London');
- echo strtotime("2005-06-18 22:15:44"), "\n";
-
- date_default_timezone_set('Europe/Oslo');
- echo strtotime("2005-06-18 22:15:44"), "\n";
-?>
---EXPECT--
-1119125744
-1119129344
-1119125744