summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2017-02-28 11:36:24 +0100
committerJoe Watkins <krakjoe@php.net>2017-02-28 14:14:31 +0000
commit33444dc0b099948fcacb1f5eba706b34065d7311 (patch)
treee50e04b9bf9e2b12ae4401ac76e6042e9f02e3c3
parenta64b17ffde75c3f2d3cb927b476a4b1e4250960a (diff)
downloadphp-git-33444dc0b099948fcacb1f5eba706b34065d7311.tar.gz
make test slower again
-rw-r--r--Zend/tests/bug74093.phpt40
1 files changed, 20 insertions, 20 deletions
diff --git a/Zend/tests/bug74093.phpt b/Zend/tests/bug74093.phpt
index 22c78a6760..7f20285805 100644
--- a/Zend/tests/bug74093.phpt
+++ b/Zend/tests/bug74093.phpt
@@ -1,20 +1,20 @@
---TEST--
-Bug #74093 (Maximum execution time of n+2 seconds exceed not written in error_log)
---SKIPIF--
-<?php
-if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
-if (PHP_ZTS) die("skip only for no-zts build");
-if (substr(PHP_OS, 0, 3) == 'WIN') die("skip not for Windows");
-?>
---INI--
-memory_limit=1G
-max_execution_time=1
-hard_timeout=1
---FILE--
-<?php
-$a1 = range(1, 1000000);
-$a2 = range(100000, 999999);
-array_intersect($a1, $a2);
-?>
---EXPECTF--
-Fatal error: Maximum execution time of 1+1 seconds exceeded %s
+--TEST--
+Bug #74093 (Maximum execution time of n+2 seconds exceed not written in error_log)
+--SKIPIF--
+<?php
+if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
+if (PHP_ZTS) die("skip only for no-zts build");
+if (substr(PHP_OS, 0, 3) == 'WIN') die("skip not for Windows");
+?>
+--INI--
+memory_limit=1G
+max_execution_time=1
+hard_timeout=1
+--FILE--
+<?php
+$a1 = range(1, 1000000);
+$a2 = range(100000, 1999999);
+array_intersect($a1, $a2);
+?>
+--EXPECTF--
+Fatal error: Maximum execution time of 1+1 seconds exceeded %s