diff --git a/.travis.yml b/.travis.yml index 6c51e13a0fa..9f764251aff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -85,7 +85,7 @@ before_script: # Run PHPs run-tests.php script: - - travis_wait 60 ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=tracing + - ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=tracing - sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");' after_success: diff --git a/travis/test.sh b/travis/test.sh index c1617f782ab..92253042751 100755 --- a/travis/test.sh +++ b/travis/test.sh @@ -7,7 +7,7 @@ if [ -z "$ARM64" ]; then export JOBS=$(nproc); else export JOBS=16; fi export SKIP_SLOW_TESTS=1 export SKIP_IO_CAPTURE_TESTS=1 ./sapi/cli/php run-tests.php -P \ - -g "FAIL,BORK,LEAK" --offline --show-diff --show-slow 1000 \ + -g "FAIL,SKIP,BORK,LEAK" --offline --show-diff --show-slow 1000 \ --no-progress \ --set-timeout 120 -j$JOBS \ -d extension=`pwd`/modules/zend_test.so \