]> granicus.if.org Git - php/commitdiff
fixed path separator in the tests
authorAnatol Belski <ab@php.net>
Thu, 20 Feb 2014 23:23:01 +0000 (00:23 +0100)
committerAnatol Belski <ab@php.net>
Thu, 20 Feb 2014 23:23:01 +0000 (00:23 +0100)
Zend/tests/debug_info-error-0.0.phpt
Zend/tests/debug_info-error-0.phpt
Zend/tests/debug_info-error-1.0.phpt
Zend/tests/debug_info-error-1.phpt
Zend/tests/debug_info-error-empty_str.phpt
Zend/tests/debug_info-error-false.phpt
Zend/tests/debug_info-error-object.phpt
Zend/tests/debug_info-error-resource.phpt
Zend/tests/debug_info-error-str.phpt
Zend/tests/debug_info-error-true.phpt

index 67cbe8a74980292918d6c04d43f566ea080f05c0..1c8dfc885388960026ca32a9cd4cbf4054f068b8 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C(0.0);
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-0.0.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-0.0.php on line %d
index 97352a8017feecc8a88c67da2e2e4b18f83d8895..868ac2f75f85128a2391d44fbeffca5c99c292e4 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C(0);
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-0.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-0.php on line %d
index e89a47c199358abdf957874a45f84d59dec19fde..27611237bbfcf7dbd11b66e12d0d0e1fdd6a1992 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C(1.0);
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-1.0.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-1.0.php on line %d
index a77500df2c248944ef0bd5fb2430ef44cf8cd39b..e2e9823ed448368aaf2c9bc74cc173effc924213 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C(1);
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-1.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-1.php on line %d
index ea55b65ecbccd6ab74ae2e8d0cba33e2c1ab6d1a..72ab85d7d83ac45075809aa7dc611683d2a3e989 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C("");
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-empty_str.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-empty_str.php on line %d
index 9e9111326ce58416c8c51e1fb497b2d39c7ca589..d6e19938af6bfd6a421a7befaf575c83538373f9 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C(false);
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-false.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-false.php on line %d
index 6562b5b6daea1536977afc4ec120b4644defa0b9..40737db2b61461929a8271ce25fe491e72952103 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C(new stdClass);
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-object.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-object.php on line %d
index c6d7be4cd952a0b7104447abe69c9d0f9254e2cb..ebdc37e534ac33fefd191c68ef594ef6dedd4548 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C(fopen("data:text/plain,Foo", 'r'));
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-resource.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-resource.php on line %d
index 230ad0e93b493d3f539c5ef4e524c2a6e2c3a6d5..aa16d5bf7c94db4369be9b225c42d8f81fa7084f 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C("foo");
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-str.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-str.php on line %d
index 886c60128616178a07ab8d35479f3ac69e25f808..2501e8a412b007c1523eb3927b2d5170a8b317f4 100644 (file)
@@ -16,4 +16,4 @@ class C {
 $c = new C(true);
 var_dump($c);
 --EXPECTF--
-Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-true.php on line %d
+Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-true.php on line %d