diff options
| author | Louis Burda <quent.burda@gmail.com> | 2021-05-17 23:26:52 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2021-05-17 23:26:52 +0200 |
| commit | dafdcc3547ec786fac85486cbb77909fffe1a4de (patch) | |
| tree | 775770a35eea486ccee3e4318cd45b86e771bbdb /service/src/test.sh | |
| parent | 130fc6d97bce96bc042bdaa6329b82d00f6316d5 (diff) | |
| download | enowars5-service-stldoctor-dafdcc3547ec786fac85486cbb77909fffe1a4de.tar.gz enowars5-service-stldoctor-dafdcc3547ec786fac85486cbb77909fffe1a4de.zip | |
added basic checker flag and noise commands, still very basic, needs randomization and havoc
Diffstat (limited to 'service/src/test.sh')
| -rw-r--r-- | service/src/test.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/service/src/test.sh b/service/src/test.sh index f8e7196..c9e5af3 100644 --- a/service/src/test.sh +++ b/service/src/test.sh @@ -2,7 +2,7 @@ set -e -RUN_REMOTE=1 +# RUN_REMOTE=1 export RESULTDIR="../data/scans" export ECHO_INPUT=1 @@ -22,7 +22,7 @@ print() } checkleaks() { - valgrind --leak-check=full ./printdoc 2>&1 | tee /tmp/testlog + valgrind --leak-check=full ./stldoctor 2>&1 | tee /tmp/testlog if [ -z "$(grep "no leaks are possible" /tmp/testlog)" ]; then echo "Valgrind exited with errors!" exit 1 @@ -33,7 +33,7 @@ connect() { if [ $RUN_REMOTE ]; then nc localhost 9000 else - ./printdoc + ./stldoctor fi } |
