]> granicus.if.org Git - php/commitdiff
Fix one more test in dos style eol
authorXinchen Hui <laruence@php.net>
Mon, 30 Dec 2013 02:58:40 +0000 (10:58 +0800)
committerXinchen Hui <laruence@php.net>
Mon, 30 Dec 2013 02:58:40 +0000 (10:58 +0800)
ext/opcache/tests/bug66338.phpt

index cf0018df94e4716e77027697e04971ca11e7ba27..ed7f8ab4757e07c53aedfbbec57f42aae48776aa 100644 (file)
@@ -1,42 +1,42 @@
---TEST--\r
-Bug #66338 (Optimization binding of class constants is not safely opcacheable)\r
---INI--\r
-opcache.enable=0\r
---SKIPIF--\r
-<?php if (!extension_loaded('Zend OPcache') || php_sapi_name() != "cli") die("skip CLI only"); ?>\r
---FILE--\r
-<?php\r
-$root  = str_replace('.php', "", __FILE__);\r
-$base  = basename( $root );\r
-\r
-file_put_contents( "$root-Officials.inc", '<?php \r
-       class Officials { static function getLeader() { return LocalTerms::GOV_LEADER; } }\r
-       ' );\r
-\r
-file_put_contents( "$root-clientUS.php", '<?php \r
-       class LocalTerms { const GOV_LEADER = "Barack Hussein Obama II"; }\r
-       require "'.$root.'-Officials.inc";\r
-       printf( "The President of the USA is %s\n", Officials::getLeader() );\r
-       ' );\r
-\r
-file_put_contents( "$root-clientUK.php", '<?php \r
-       class LocalTerms { const GOV_LEADER = "David William Donald Cameron"; }\r
-       require "'.$root.'-Officials.inc";\r
-       printf( "The Prime Minister of the UK is %s\n", Officials::getLeader() );\r
-       ' );\r
-\r
-include "php_cli_server.inc";\r
-$uri = sprintf("http://%s/%s", PHP_CLI_SERVER_ADDRESS, basename(__FILE__));\r
-$opt = -1;   # This test works if $opt = 0\r
-php_cli_server_start("-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.optimization_level=$opt -d opcache.file_update_protection=0" );\r
-\r
-echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/$base-clientUS.php" );\r
-echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/$base-clientUK.php" );\r
-\r
-unlink("$root-Officials.inc");\r
-unlink("$root-clientUS.php");\r
-unlink("$root-clientUK.php");\r
-?>\r
---EXPECT--\r
-The President of the USA is Barack Hussein Obama II\r
-The Prime Minister of the UK is David William Donald Cameron\r
+--TEST--
+Bug #66338 (Optimization binding of class constants is not safely opcacheable)
+--INI--
+opcache.enable=0
+--SKIPIF--
+<?php if (!extension_loaded('Zend OPcache') || php_sapi_name() != "cli") die("skip CLI only"); ?>
+--FILE--
+<?php
+$root  = str_replace('.php', "", __FILE__);
+$base  = basename( $root );
+
+file_put_contents( "$root-Officials.inc", '<?php 
+       class Officials { static function getLeader() { return LocalTerms::GOV_LEADER; } }
+       ' );
+
+file_put_contents( "$root-clientUS.php", '<?php 
+       class LocalTerms { const GOV_LEADER = "Barack Hussein Obama II"; }
+       require "'.$root.'-Officials.inc";
+       printf( "The President of the USA is %s\n", Officials::getLeader() );
+       ' );
+
+file_put_contents( "$root-clientUK.php", '<?php 
+       class LocalTerms { const GOV_LEADER = "David William Donald Cameron"; }
+       require "'.$root.'-Officials.inc";
+       printf( "The Prime Minister of the UK is %s\n", Officials::getLeader() );
+       ' );
+
+include "php_cli_server.inc";
+$uri = sprintf("http://%s/%s", PHP_CLI_SERVER_ADDRESS, basename(__FILE__));
+$opt = -1;   # This test works if $opt = 0
+php_cli_server_start("-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.optimization_level=$opt -d opcache.file_update_protection=0" );
+
+echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/$base-clientUS.php" );
+echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/$base-clientUK.php" );
+
+unlink("$root-Officials.inc");
+unlink("$root-clientUS.php");
+unlink("$root-clientUK.php");
+?>
+--EXPECT--
+The President of the USA is Barack Hussein Obama II
+The Prime Minister of the UK is David William Donald Cameron