Browse Source

Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  make sure run-tests reports exit status upon prerequisite error
pull/2893/head
Joe Watkins 8 years ago
parent
commit
cb04599d27
No known key found for this signature in database GPG Key ID: F9BA0ADA31CBD89E
  1. 4
      run-tests.php

4
run-tests.php

@ -43,7 +43,7 @@ if (!extension_loaded('pcre')) {
+-----------------------------------------------------------+
NO_PCRE_ERROR;
exit;
exit(1);
}
if (!function_exists('proc_open')) {
@ -56,7 +56,7 @@ if (!function_exists('proc_open')) {
+-----------------------------------------------------------+
NO_PROC_OPEN_ERROR;
exit;
exit(1);
}
// If timezone is not set, use UTC.

Loading…
Cancel
Save