summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-02-21 00:23:01 +0100
committerAnatol Belski <ab@php.net>2014-02-21 00:23:01 +0100
commit5d0d88d1f2202896d62c21d0043264487fb12785 (patch)
tree8f2d1e73a7cb564951d769c96f6801087332f893
parent14c08ea362e5f16527b3d9772ddc75ca49cc22d7 (diff)
downloadphp-git-5d0d88d1f2202896d62c21d0043264487fb12785.tar.gz
fixed path separator in the tests
-rw-r--r--Zend/tests/debug_info-error-0.0.phpt2
-rw-r--r--Zend/tests/debug_info-error-0.phpt2
-rw-r--r--Zend/tests/debug_info-error-1.0.phpt2
-rw-r--r--Zend/tests/debug_info-error-1.phpt2
-rw-r--r--Zend/tests/debug_info-error-empty_str.phpt2
-rw-r--r--Zend/tests/debug_info-error-false.phpt2
-rw-r--r--Zend/tests/debug_info-error-object.phpt2
-rw-r--r--Zend/tests/debug_info-error-resource.phpt2
-rw-r--r--Zend/tests/debug_info-error-str.phpt2
-rw-r--r--Zend/tests/debug_info-error-true.phpt2
10 files changed, 10 insertions, 10 deletions
diff --git a/Zend/tests/debug_info-error-0.0.phpt b/Zend/tests/debug_info-error-0.0.phpt
index 67cbe8a749..1c8dfc8853 100644
--- a/Zend/tests/debug_info-error-0.0.phpt
+++ b/Zend/tests/debug_info-error-0.0.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-0.phpt b/Zend/tests/debug_info-error-0.phpt
index 97352a8017..868ac2f75f 100644
--- a/Zend/tests/debug_info-error-0.phpt
+++ b/Zend/tests/debug_info-error-0.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-1.0.phpt b/Zend/tests/debug_info-error-1.0.phpt
index e89a47c199..27611237bb 100644
--- a/Zend/tests/debug_info-error-1.0.phpt
+++ b/Zend/tests/debug_info-error-1.0.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-1.phpt b/Zend/tests/debug_info-error-1.phpt
index a77500df2c..e2e9823ed4 100644
--- a/Zend/tests/debug_info-error-1.phpt
+++ b/Zend/tests/debug_info-error-1.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-empty_str.phpt b/Zend/tests/debug_info-error-empty_str.phpt
index ea55b65ecb..72ab85d7d8 100644
--- a/Zend/tests/debug_info-error-empty_str.phpt
+++ b/Zend/tests/debug_info-error-empty_str.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-false.phpt b/Zend/tests/debug_info-error-false.phpt
index 9e9111326c..d6e19938af 100644
--- a/Zend/tests/debug_info-error-false.phpt
+++ b/Zend/tests/debug_info-error-false.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-object.phpt b/Zend/tests/debug_info-error-object.phpt
index 6562b5b6da..40737db2b6 100644
--- a/Zend/tests/debug_info-error-object.phpt
+++ b/Zend/tests/debug_info-error-object.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-resource.phpt b/Zend/tests/debug_info-error-resource.phpt
index c6d7be4cd9..ebdc37e534 100644
--- a/Zend/tests/debug_info-error-resource.phpt
+++ b/Zend/tests/debug_info-error-resource.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-str.phpt b/Zend/tests/debug_info-error-str.phpt
index 230ad0e93b..aa16d5bf7c 100644
--- a/Zend/tests/debug_info-error-str.phpt
+++ b/Zend/tests/debug_info-error-str.phpt
@@ -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
diff --git a/Zend/tests/debug_info-error-true.phpt b/Zend/tests/debug_info-error-true.phpt
index 886c601286..2501e8a412 100644
--- a/Zend/tests/debug_info-error-true.phpt
+++ b/Zend/tests/debug_info-error-true.phpt
@@ -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