diff options
author | Magnus Ahltorp <map@kth.se> | 2016-10-05 10:06:16 +0200 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2016-10-05 10:08:43 +0200 |
commit | 1d902cd5813a2df252b6976bdcdc9cd7531590b4 (patch) | |
tree | cef355f80032c5e15893a5d96c52728d9b71b7d8 /test/scripts/light-system-test-stop.sh | |
parent | 49b40a0170b80b204746ab3bc42a73c5c60bcf0c (diff) |
Move tests to shell scripts
Diffstat (limited to 'test/scripts/light-system-test-stop.sh')
-rwxr-xr-x | test/scripts/light-system-test-stop.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/scripts/light-system-test-stop.sh b/test/scripts/light-system-test-stop.sh new file mode 100755 index 0000000..8f3447f --- /dev/null +++ b/test/scripts/light-system-test-stop.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +set -o nounset +set -o errexit + +INSTDIR=../catlfish +PREFIX=.. + +. test.shvars + +for node in ${ERLANGNODES}; do + ${PREFIX}/tools/to_catlfish.py to_erl ${INSTDIR}/tests/nodes/${node}/ "init:stop()" +done |