]> granicus.if.org Git - php/commitdiff
- Fixed tests
authorFelipe Pena <felipe@php.net>
Mon, 5 Jan 2009 15:21:10 +0000 (15:21 +0000)
committerFelipe Pena <felipe@php.net>
Mon, 5 Jan 2009 15:21:10 +0000 (15:21 +0000)
sapi/cli/tests/002.phpt
sapi/cli/tests/003-2.phpt
sapi/cli/tests/003.phpt
sapi/cli/tests/013.phpt

index ea2d421b6595352a9d67cdff67def586129dd647..5b7a967ba946fc1db75d07d29df4b8664a59148e 100644 (file)
@@ -17,6 +17,6 @@ var_dump(`"$php" -n -r 'var_dump("hello");'`);
 echo "Done\n";
 ?>
 --EXPECTF--    
-string(18) "string(5) "hello"
+string(19) "unicode(5) "hello"
 "
 Done
index 2ed9b07db4c4b9776d8644e4717fc05557102b03..d3fa4c0462f277c26809579211a1678eb6b2e661 100755 (executable)
@@ -18,8 +18,8 @@ var_dump(`"$php" -nd max_execution_time=500 -r 'var_dump(ini_get("max_execution_
 ?>
 ===DONE===
 --EXPECTF--    
-string(16) "string(3) "111"
+string(17) "unicode(3) "111"
 "
-string(16) "string(3) "500"
+string(17) "unicode(3) "500"
 "
 ===DONE===
index aeb6a694721c9a61412d0d7471513232c219e0ee..44ab1dd712f8ef5a36c7063b4cd052885e487027 100644 (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";
 ?>
 --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(10) "/test/path"
+string(42) "unicode(3) "555"
+unicode(10) "/test/path"
 "
 Done
index 99bfe5e7bb07f578be86d6ea565bc604f0a29107..9bac2d4defcf5b1258a195a43ad302a0998a7ff4 100644 (file)
@@ -24,11 +24,11 @@ var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");' -E 'var_dump("
 echo "Done\n";
 ?>
 --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(3) "end"
+string(36) "unicode(5) "start"
+unicode(3) "end"
 "
 Done