From cc42ff9fa2b2936829098fc92eef331bbffbaf94 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Mon, 5 Jan 2009 15:21:10 +0000 Subject: [PATCH] - Fixed tests --- sapi/cli/tests/002.phpt | 2 +- sapi/cli/tests/003-2.phpt | 4 ++-- sapi/cli/tests/003.phpt | 10 +++++----- sapi/cli/tests/013.phpt | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sapi/cli/tests/002.phpt b/sapi/cli/tests/002.phpt index ea2d421b65..5b7a967ba9 100644 --- a/sapi/cli/tests/002.phpt +++ b/sapi/cli/tests/002.phpt @@ -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 diff --git a/sapi/cli/tests/003-2.phpt b/sapi/cli/tests/003-2.phpt index 2ed9b07db4..d3fa4c0462 100755 --- a/sapi/cli/tests/003-2.phpt +++ b/sapi/cli/tests/003-2.phpt @@ -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=== diff --git a/sapi/cli/tests/003.phpt b/sapi/cli/tests/003.phpt index aeb6a69472..44ab1dd712 100644 --- a/sapi/cli/tests/003.phpt +++ b/sapi/cli/tests/003.phpt @@ -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 diff --git a/sapi/cli/tests/013.phpt b/sapi/cli/tests/013.phpt index 99bfe5e7bb..9bac2d4def 100644 --- a/sapi/cli/tests/013.phpt +++ b/sapi/cli/tests/013.phpt @@ -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 -- 2.50.1