summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-10-10 10:43:21 +0200
committerNikita Popov <nikita.ppv@gmail.com>2019-10-10 10:43:21 +0200
commitc1da10b77b370c6689675af2c4ce6ffc4ce124df (patch)
tree054057bb04d96b255c0b2bd13d50f37b16092e9b /run-tests.php
parent51501dacb16f11ad375a99b31092c86b74f72a4f (diff)
downloadphp-git-c1da10b77b370c6689675af2c4ce6ffc4ce124df.tar.gz
Set display_startup_errors=0 when running skipif
Now that we're displaying errors in skipif, suppress this particular category. Otherwise we get warnings in the SKIPIF of tests with EXTENSION where the extension does not exist, and there's no way to suppress them.
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index 5083dce023..9ee7299f9c 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -2135,7 +2135,7 @@ TEST $file
junit_start_timer($shortname);
- $output = system_with_timeout("$extra $php $pass_options $extra_options -q $orig_ini_settings $no_file_cache -d display_errors=1 \"$test_skipif\"", $env);
+ $output = system_with_timeout("$extra $php $pass_options $extra_options -q $orig_ini_settings $no_file_cache -d display_errors=1 -d display_startup_errors=0 \"$test_skipif\"", $env);
$output = trim($output);
junit_finish_timer($shortname);