From: Christopher Jones Date: Tue, 23 Aug 2011 20:59:10 +0000 (+0000) Subject: Update log, marking 5.4 and trunk as XFAIL due to bug #55496 X-Git-Tag: php-5.4.0beta1~378 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab704eb9f663a4dfea9fe781eb278b71d9a22f83;p=php Update log, marking 5.4 and trunk as XFAIL due to bug #55496 --- diff --git a/sapi/cli/tests/016.phpt b/sapi/cli/tests/016.phpt index adde106df0..31c1a40e4a 100644 --- a/sapi/cli/tests/016.phpt +++ b/sapi/cli/tests/016.phpt @@ -59,31 +59,45 @@ foreach ($codes as $key => $code) { echo "\nDone\n"; ?> +--XFAIL-- +https://bugs.php.net/bug.php?id=55496 --EXPECTF-- -------------- Snippet no. 1: -------------- Interactive shell -php > Hello world -php > +php > echo 'Hello world'; +Hello world +php > exit + -------------- Snippet no. 2: -------------- Interactive shell -php > php ' php ' multine +php > echo 'multine +php ' single +php ' quote'; +multine single quote -php > +php > exit + -------------- Snippet no. 3: -------------- Interactive shell -php > <<< > <<< > <<< > <<< > <<< > Here +php > echo << Here +<<< > comes +<<< > the +<<< > doc +<<< > HEREDOC; +Here comes the doc @@ -94,7 +108,11 @@ Snippet no. 4: -------------- Interactive shell -php > php { php { php > Done +php > if (0) { +php { echo "I'm not there"; +php { } +php > echo "Done"; +Done php > -------------- @@ -102,7 +120,11 @@ Snippet no. 5: -------------- Interactive shell -php > php { php { php > I was called! +php > function a_function_with_some_name() { +php { echo "I was called!"; +php { } +php > a_function_with_some_name(); +I was called! php > Done