Skip to content

Commit 706e51a

Browse files
committed
Fix travis_wait
It seems travis_wait is broken. Output skipped tests to avoid the timeout. Closes GH-12822
1 parent 7521927 commit 706e51a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ before_script:
8585

8686
# Run PHPs run-tests.php
8787
script:
88-
- travis_wait 60 ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=tracing
88+
- ./travis/test.sh -d opcache.jit_buffer_size=16M -d opcache.jit=tracing
8989
- sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");'
9090

9191
after_success:

travis/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ -z "$ARM64" ]; then export JOBS=$(nproc); else export JOBS=16; fi
77
export SKIP_SLOW_TESTS=1
88
export SKIP_IO_CAPTURE_TESTS=1
99
./sapi/cli/php run-tests.php -P \
10-
-g "FAIL,BORK,LEAK" --offline --show-diff --show-slow 1000 \
10+
-g "FAIL,SKIP,BORK,LEAK" --offline --show-diff --show-slow 1000 \
1111
--no-progress \
1212
--set-timeout 120 -j$JOBS \
1313
-d extension=`pwd`/modules/zend_test.so \

0 commit comments

Comments
 (0)