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

add more tests (stream benchmark)

This commit is contained in:
Stefan Lankes 2016-08-31 19:40:09 +02:00
parent bd2595adfd
commit 78eecc9ec1
2 changed files with 2 additions and 2 deletions

View file

@ -23,6 +23,6 @@ env:
- PROXY_STR=":hermit:M:7:\\x42::`pwd`/RWTH-OS/HermitCore/hermit/tools/proxy"
- HERMIT_ISLE=qemu
- HERMIT_CPUS=1
- HERMIT_MEM="128M"
- HERMIT_MEM="512M"
- HERMIT_KVM="0"
#- 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"
FILES="hermit/usr/tests/hello hermit/usr/tests/hellof hermit/usr/tests/hello++ hermit/usr/tests/thr_hello hermit/usr/benchmarks/stream hermit/usr/benchmarks/basic"
PROXY=hermit/tools/proxy
for f in $FILES; do echo "check $f..."; $PROXY $f || exit 1; done