Changeset 30286 for trunk/tests/phpunit/includes/bootstrap.php
- Timestamp:
- 11/08/2014 09:07:05 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/bootstrap.php
r30277 r30286 130 130 131 131 $ajax_message = true; 132 $ms_files_message = true; 132 133 foreach ( $options as $option ) { 133 134 switch ( $option[0] ) { 134 135 case '--exclude-group' : 135 136 $ajax_message = false; 137 $ms_files_message = false; 136 138 continue 2; 137 139 case '--group' : … … 143 145 } 144 146 $ajax_message = ! in_array( 'ajax', $groups ); 147 $ms_files_message = ! in_array( 'ms-files', $groups ); 145 148 continue 2; 146 149 } … … 149 152 echo "Not running ajax tests... To execute these, use --group ajax." . PHP_EOL; 150 153 } 154 if ( $ms_files_message ) { 155 echo "Not running ms_files_rewriting tests... To execute these, use --group ms-files." . PHP_EOL; 156 } 151 157 } 152 158 }
Note: See TracChangeset
for help on using the changeset viewer.