From c76de7966df371487eb3657e38112720a963a469 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sun, 10 Aug 2008 11:27:26 +0000 Subject: [PATCH] - [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 --- ext/date/tests/009.phpt | 23 +++++++++------- ext/date/tests/009_win32.phpt | 51 +++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+), 9 deletions(-) create mode 100644 ext/date/tests/009_win32.phpt diff --git a/ext/date/tests/009.phpt b/ext/date/tests/009.phpt index eb5b459154..20d7bb6411 100644 --- a/ext/date/tests/009.phpt +++ b/ext/date/tests/009.phpt @@ -2,6 +2,11 @@ strftime() and gmstrftime() tests --INI-- date.timezone=Asia/Jerusalem +--SKIPIF-- + --FILE-- ---EXPECTF-- +--EXPECTF-- Warning: strftime() expects at least 1 parameter, 0 given in %s on line %d bool(false) bool(false) -unicode(%d) "Tue Tuesday Jun June Tue Jun 27 00:00:00 2006 %s +string(%d) "Tue Tuesday Jun June Tue Jun 27 00:00:00 2006 %s %s %" -unicode(5) "%q %a" -unicode(%d) "%s" -unicode(4) "blah" +string(5) "%q %a" +string(%d) "%s" +string(4) "blah" Warning: gmstrftime() expects at least 1 parameter, 0 given in %s on line %d bool(false) bool(false) -unicode(%d) "Mon Monday Jun June Mon Jun 26 21:00:00 2006 %s +string(%d) "Mon Monday Jun June Mon Jun 26 21:00:00 2006 %s %s %" -unicode(5) "%q %a" -unicode(%d) "%s" -unicode(4) "blah" +string(5) "%q %a" +string(%d) "%s" +string(4) "blah" Done diff --git a/ext/date/tests/009_win32.phpt b/ext/date/tests/009_win32.phpt new file mode 100644 index 0000000000..3c22604b3c --- /dev/null +++ b/ext/date/tests/009_win32.phpt @@ -0,0 +1,51 @@ +--TEST-- +strftime() and gmstrftime() tests +--INI-- +date.timezone=Asia/Jerusalem +--SKIPIF-- + +--FILE-- + +--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 -- 2.40.0