- Fixed tests

This commit is contained in:
Felipe Pena 2009-01-05 15:21:10 +00:00
parent 9c51e8e977
commit cc42ff9fa2
4 changed files with 12 additions and 12 deletions

View file

@ -17,6 +17,6 @@ var_dump(`"$php" -n -r 'var_dump("hello");'`);
echo "Done\n"; echo "Done\n";
?> ?>
--EXPECTF-- --EXPECTF--
string(18) "string(5) "hello" string(19) "unicode(5) "hello"
" "
Done Done

View file

@ -18,8 +18,8 @@ var_dump(`"$php" -nd max_execution_time=500 -r 'var_dump(ini_get("max_execution_
?> ?>
===DONE=== ===DONE===
--EXPECTF-- --EXPECTF--
string(16) "string(3) "111" string(17) "unicode(3) "111"
" "
string(16) "string(3) "500" string(17) "unicode(3) "500"
" "
===DONE=== ===DONE===

View file

@ -20,13 +20,13 @@ var_dump(`"$php" -n -d upload_tmp_dir=/test/path -d max_execution_time=555 -r 'v
echo "Done\n"; echo "Done\n";
?> ?>
--EXPECTF-- --EXPECTF--
string(16) "string(3) "111" string(17) "unicode(3) "111"
" "
string(16) "string(3) "500" string(17) "unicode(3) "500"
" "
string(16) "string(3) "555" string(17) "unicode(3) "555"
" "
string(40) "string(3) "555" string(42) "unicode(3) "555"
string(10) "/test/path" unicode(10) "/test/path"
" "
Done Done

View file

@ -24,11 +24,11 @@ var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");' -E 'var_dump("
echo "Done\n"; echo "Done\n";
?> ?>
--EXPECTF-- --EXPECTF--
string(18) "string(5) "start" string(19) "unicode(5) "start"
" "
string(16) "string(3) "end" string(17) "unicode(3) "end"
" "
string(34) "string(5) "start" string(36) "unicode(5) "start"
string(3) "end" unicode(3) "end"
" "
Done Done