pajoye Sun Aug 10 11:27:48 2008 UTC
Added files: (Branch: PHP_5_3)
/php-src/ext/date/tests 009_win32.phpt
Modified files:
/php-src/ext/date/tests 009.phpt
Log:
- [DOC] win's strftime does not support all posix formatting code and have
some win specific rules see
http://msdn.microsoft.com/en-us/library/fe06s4ak(VS.80).aspx for a complete
list: split test for win32 and posix
http://cvs.php.net/viewvc.cgi/php-src/ext/date/tests/009.phpt?r1=1.1.2.5&r2=1.1.2.5.2.1&diff_format=u
Index: php-src/ext/date/tests/009.phpt
diff -u php-src/ext/date/tests/009.phpt:1.1.2.5
php-src/ext/date/tests/009.phpt:1.1.2.5.2.1
--- php-src/ext/date/tests/009.phpt:1.1.2.5 Thu Jun 29 22:45:19 2006
+++ php-src/ext/date/tests/009.phpt Sun Aug 10 11:27:48 2008
@@ -2,6 +2,11 @@
strftime() and gmstrftime() tests
--INI--
date.timezone=Asia/Jerusalem
+--SKIPIF--
+<?php
+if (substr(PHP_OS, 0, 3) == 'WIN') die('skip posix only test.');
+if (!function_exists('strftime')) die("skip, strftime not available");
+?>
--FILE--
<?php
http://cvs.php.net/viewvc.cgi/php-src/ext/date/tests/009_win32.phpt?view=markup&rev=1.1
Index: php-src/ext/date/tests/009_win32.phpt
+++ php-src/ext/date/tests/009_win32.phpt
--TEST--
strftime() and gmstrftime() tests
--INI--
date.timezone=Asia/Jerusalem
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) != 'WIN') die('skip only windows test.');
if (!function_exists('strftime')) die("skip, strftime not available");
?>
--FILE--
<?php
$t = mktime(0,0,0, 6, 27, 2006);
var_dump(strftime());
var_dump(strftime(""));
var_dump(strftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y
%Z %z %%", $t));
var_dump(strftime("%%q %%a", $t));
var_dump(strftime("blah", $t));
var_dump(gmstrftime());
var_dump(gmstrftime(""));
var_dump(gmstrftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y
%Y %Z %z %%", $t));
var_dump(gmstrftime("%%q %%a", $t));
var_dump(gmstrftime("blah", $t));
echo "Done\n";
?>
--EXPECTF--
Warning: strftime() expects at least 1 parameter, 0 given in
C:\Users\pierre\Documents\php-sdk\vc9\x86\php_5_3\ext\date\tests\009_win32.php
on line 5
bool(false)
bool(false)
string(147) "Tue Tuesday Jun June 06/27/06 00:00:00 27 00 12 178 06 00 AM 00 26
26 2 06/27/06 00:00:00 06 2006 W. Europe Daylight Time W. Europe Daylight Time
%"
string(5) "%q %a"
string(4) "blah"
Warning: gmstrftime() expects at least 1 parameter, 0 given in
C:\Users\pierre\Documents\php-sdk\vc9\x86\php_5_3\ext\date\tests\009_win32.php
on line 15
bool(false)
bool(false)
string(146) "Mon Monday Jun June 06/26/06 21:00:00 26 21 09 177 06 00 PM 00 26
26 1 06/26/06 21:00:00 06 2006 W. Europe Standard Time W. Europe Standard Time
%"
string(5) "%q %a"
string(4) "blah"
Done