diff options
author | Anatol Belski <ab@php.net> | 2014-12-19 10:24:57 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-19 10:24:57 +0100 |
commit | 373a7a4a753a9db07559b8f3ca8318b36cbb4edc (patch) | |
tree | 4e3f2bde982eb35235ceed3d2d562d0de3746b82 | |
parent | 6b59b276fd066e1bef5d2217c8004549895bfa6a (diff) | |
download | php-git-373a7a4a753a9db07559b8f3ca8318b36cbb4edc.tar.gz |
fixed tests
-rw-r--r-- | ext/standard/tests/array/array_fill_variation1.phpt | 2 | ||||
-rw-r--r-- | ext/standard/tests/file/touch_variation3-win32.phpt | 1 | ||||
-rw-r--r-- | ext/standard/tests/file/touch_variation4-win32.phpt | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/ext/standard/tests/array/array_fill_variation1.phpt b/ext/standard/tests/array/array_fill_variation1.phpt index 0bedf4a68b..03972c3be4 100644 --- a/ext/standard/tests/array/array_fill_variation1.phpt +++ b/ext/standard/tests/array/array_fill_variation1.phpt @@ -125,7 +125,7 @@ array(2) { } -- Iteration 3 -- -Warning: array_fill() expects parameter 1 to be long, double given in %s/ext/standard/tests/array/array_fill_variation1.php on line 92 +Warning: array_fill() expects parameter 1 to be long, double given in %s%eext%estandard%etests%earray%earray_fill_variation1.php on line 92 NULL -- Iteration 4 -- array(2) { diff --git a/ext/standard/tests/file/touch_variation3-win32.phpt b/ext/standard/tests/file/touch_variation3-win32.phpt index 43556b8106..0aa4a3ae4d 100644 --- a/ext/standard/tests/file/touch_variation3-win32.phpt +++ b/ext/standard/tests/file/touch_variation3-win32.phpt @@ -4,6 +4,7 @@ Test touch() function : usage variation - different types for time Dave Kelsey <d_kelsey@uk.ibm.com> --SKIPIF-- <?php +if (PHP_INT_SIZE != 8) die("skip this test is for 64-bit only"); if (substr(PHP_OS, 0, 3) != 'WIN') { die('skip.. only for Windows'); } diff --git a/ext/standard/tests/file/touch_variation4-win32.phpt b/ext/standard/tests/file/touch_variation4-win32.phpt index ee2639a477..77a89185ca 100644 --- a/ext/standard/tests/file/touch_variation4-win32.phpt +++ b/ext/standard/tests/file/touch_variation4-win32.phpt @@ -4,6 +4,7 @@ Test touch() function : usage variation - different types for atime Dave Kelsey <d_kelsey@uk.ibm.com> --SKIPIF-- <?php +if (PHP_INT_SIZE != 8) die("skip this test is for 64-bit only"); if (substr(PHP_OS, 0, 3) != 'WIN') { die('skip.. only for Windows'); } |