Test cosmetics.
authorDerick Rethans <derick@php.net>
Wed, 7 Dec 2011 19:42:44 +0000 (19:42 +0000)
committerDerick Rethans <derick@php.net>
Wed, 7 Dec 2011 19:42:44 +0000 (19:42 +0000)
13 files changed:
ext/date/tests/bug48476.phpt
ext/date/tests/bug48678.phpt
ext/date/tests/bug50392.phpt
ext/date/tests/bug51096.phpt
ext/date/tests/bug52062-64bit.phpt
ext/date/tests/bug52062.phpt
ext/date/tests/bug52113.phpt
ext/date/tests/bug53437.phpt
ext/date/tests/bug53502.phpt
ext/date/tests/bug54597.phpt
ext/date/tests/bug54851.phpt
ext/date/tests/bug55253.phpt
ext/date/tests/bug60236.phpt

index 4bf9503759e5fc48d53e3c5d35e2eaf41ba66799..2daa594871806f9426c5169b069d407457e6836d 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug#48476 (cloning extended DateTime class without calling parent::__constr crashed PHP)
+Bug #48476 (cloning extended DateTime class without calling parent::__constr crashed PHP)
 --FILE--
 <?php
 class MyDateTime extends DateTime {
index ec39153787638665835e09f9a8bb5df61aa11141..e2cb724f761b45b9201b398171f32f0f82214739 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #48678: DateInterval segfaults when unserialising
+Bug #48678 (DateInterval segfaults when unserialising)
 --FILE--
 <?php
 $x = new DateInterval("P3Y6M4DT12H30M5S");
index 4fa506ef55124d01182ba3c96e593507c45c15f4..9b1002317d62c36091108d95301f4be8903f2742 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #50392 date_create_from_format enforces 6 digits for 'u' format character
+Bug #50392 (date_create_from_format enforces 6 digits for 'u' format character)
 --FILE--
 <?php
 date_default_timezone_set('Europe/Bratislava');
index 31503bc7a93434bd0c60f45c2972a08649cfaf4f..df31313a76e1f41962254ff96496c9dce8742d6e 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #51096: Test for "first day" vs "first day of".
+Bug #51096 (Test for "first day" vs "first day of")
 --FILE--
 <?php
 $tests = array(
index 861e578dd2f5ebeb4eddf1623216a4fe4a117d58..e4a2a524f60afb5fc5413b9a692f48b71c5eb323 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #52062: large timestamps with DateTime::getTimestamp and DateTime::setTimestamp (64 bit)
+Bug #52062 (large timestamps with DateTime::getTimestamp and DateTime::setTimestamp) (64 bit)
 --SKIPIF--
 <?php
 if (PHP_INT_SIZE == 4) die('skip 64 bit only');
index c992a2847fecc1f4624e2c44979d1f2e8fadc7d2..d3e1c9abff47462d2ed97c612c1e17bf695f9193 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #52062: large timestamps with DateTime::getTimestamp and DateTime::setTimestamp (32 bit)
+Bug #52062 (large timestamps with DateTime::getTimestamp and DateTime::setTimestamp) (32 bit)
 --SKIPIF--
 <?php
 if (PHP_INT_SIZE == 8) die('skip 32-bit only');
index 8d8569b0af6f2b3b23772c1c2e793aaa331f377a..a7d9339d13d4990d05a58ab8123c2f347c0b8cbd 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #52113: Seg fault while creating (by unserialization) DatePeriod
+Bug #52113 (Seg fault while creating (by unserialization) DatePeriod)
 --INI--
 date.timezone=UTC
 --FILE--
index af5dca8e04987858295c834fb9e158e85094486f..f0898665385e7d18f0201f2928fe9aff265a0a3f 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #53437: Crash when using unserialized DatePeriod instance
+Bug #53437 (Crash when using unserialized DatePeriod instance)
 --XFAIL--
 Bug #53437 Not fixed yet
 --FILE--
index 87b648e354f91d27eccc38c1f24f66d63273355a..6cfa5e07f13784a456aaa1acb24692605fa8479f 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #53502: strtotime with timezone memory leak
+Bug #53502 (strtotime with timezone memory leak)
 --INI--
 date.timezone=UTC
 --FILE--
index 5f61cd8f1bbf2768f0ccd0363cc68a8c256591a0..d196adf1213bc022aec5cc54a845e2b59a5ddebd 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #54597: incorrect years for DateTime objects created with 4-digit years
+Bug #54597 (incorrect years for DateTime objects created with 4-digit years)
 --INI--
 date.timezone=Europe/London
 --FILE--
index 34be1766cdb0e1fc95617fdf37b0d1123287612a..84d18ba5a6bc238cd3130eee32cb0b8baabcbe63 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #54851: DateTime::createFromFormat() doesn't interpret "D".
+Bug #54851 (DateTime::createFromFormat() doesn't interpret "D")
 --INI--
 date.timezone=UTC
 --FILE--
index 3b2b42bc2622a1c6438f2067ddb2145d3a0d0d08..5751cc112606ab503764a85bc30811a9b2960d9a 100755 (executable)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #55253: DateTime::add() and sub() result -1 hour on objects with time zone type 2
+Bug #55253 (DateTime::add() and sub() result -1 hour on objects with time zone type 2)
 --CREDITS--
 Daniel Convissor <danielc@php.net>
 --FILE--
index c82bf176d721aa9772996614ed9f9f242539727a..faa0e160ce92ca78b8eabc8890c8a0ddc87f797d 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug #60236: TLA timezone dates are not converted properly from timestamp
+Bug #60236 (TLA timezone dates are not converted properly from timestamp)
 --INI--
 date.timezone=America/New_York
 --FILE--