1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

reduce debug message, remove test case "jacobi"

- jacobi takes too long for Travis CI
This commit is contained in:
Stefan Lankes 2016-08-28 11:05:58 +02:00
parent 01471e4790
commit 46a68ddab0
2 changed files with 2 additions and 2 deletions

View file

@ -25,4 +25,4 @@ env:
- HERMIT_CPUS=1
- HERMIT_MEM="128M"
- HERMIT_KVM="0"
- HERMIT_VERBOSE="1"
#- HERMIT_VERBOSE="1"

View file

@ -3,7 +3,7 @@
# do not use this script
# it is written only for internal tests via Travis CI
FILES="hermit/usr/tests/hello hermit/usr/tests/hellof hermit/usr/tests/hello++ hermit/usr/tests/thr_hello hermit/usr/tests/jacobi"
FILES="hermit/usr/tests/hello hermit/usr/tests/hellof hermit/usr/tests/hello++ hermit/usr/tests/thr_hello"
PROXY=hermit/tools/proxy
for f in $FILES; do echo "check $f..."; $PROXY $f || exit 1; done