Changeset 41966 for trunk/tests/phpunit/includes/bootstrap.php
- Timestamp:
- 10/21/2017 02:13:37 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/bootstrap.php
r41636 r41966 66 66 $wp_theme_directories = array( DIR_TESTDATA . '/themedir1' ); 67 67 68 system( WP_PHP_BINARY . ' ' . escapeshellarg( dirname( __FILE__ ) . '/install.php' ) . ' ' . escapeshellarg( $config_file_path ) . ' ' . $multisite ); 68 system( WP_PHP_BINARY . ' ' . escapeshellarg( dirname( __FILE__ ) . '/install.php' ) . ' ' . escapeshellarg( $config_file_path ) . ' ' . $multisite, $retval ); 69 if ( 0 !== $retval ) { 70 exit( $retval ); 71 } 69 72 70 73 if ( $multisite ) {
Note: See TracChangeset
for help on using the changeset viewer.