diff --git a/README.md b/README.md index c959680..7a6f4aa 100644 --- a/README.md +++ b/README.md @@ -432,7 +432,7 @@ attack. There are some rules: - Remember that indirect dependencies are dependencies for us, too, and need to be treated the same way - If in doubt: copy the parts we need, vet them thoroughly, and maintain them separately -There is a useful discussion about thise matters [here](https://research.swtch.com/deps). +There is a useful discussion of these matters [here](https://research.swtch.com/deps). ## How we run sonar on a cluster diff --git a/tests/hostname.sh b/tests/hostname.sh index d3be9fe..570171e 100755 --- a/tests/hostname.sh +++ b/tests/hostname.sh @@ -8,4 +8,3 @@ if [[ $(../target/debug/sonar ps | head -n 1 | grep ",host=$(hostname)," | wc -l echo "Wrong hostname??" exit 1 fi - diff --git a/tests/run_tests.sh b/tests/run_tests.sh index d783208..ee4aa8a 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -3,7 +3,9 @@ # Primitive test runner. Keep tests alphabetical. Note that sysinfo-syntax will require the `jq` # utility to be installed and will fail if it is not. -./command-line.sh -./hostname.sh -./sysinfo-syntax.sh -./user.sh +set -e +for test in command-line hostname sysinfo-syntax user; do + echo $test + ./$test.sh +done +echo "No errors"