mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
add --offline option to run-tests command
This commit is contained in:
parent
79db2855f7
commit
dd093ac12a
1 changed files with 5 additions and 0 deletions
|
@ -632,6 +632,9 @@ if (isset($argc) && $argc > 1) {
|
|||
case 'x':
|
||||
$environment['SKIP_SLOW_TESTS'] = 1;
|
||||
break;
|
||||
case '--offline':
|
||||
$environment['SKIP_ONLINE_TESTS'] = 1;
|
||||
break;
|
||||
//case 'w'
|
||||
case '-':
|
||||
// repeat check with full switch
|
||||
|
@ -689,6 +692,8 @@ Options:
|
|||
|
||||
-x Sets 'SKIP_SLOW_TESTS' environmental variable.
|
||||
|
||||
--offline Sets 'SKIP_ONLINE_TESTS' environmental variable.
|
||||
|
||||
--verbose
|
||||
-v Verbose mode.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue