diff options
author | Klaus T. Aehlig <aehlig@linta.de> | 2024-06-04 11:35:50 +0200 |
---|---|---|
committer | Klaus T. Aehlig <aehlig@linta.de> | 2024-06-04 11:40:15 +0200 |
commit | d9b5abdb716bd5e4d474c724cb52e9f09899f942 (patch) | |
tree | 81ef3311effa8dec3a504ed5361a88c5e60cfb0f /test/test_hello.sh | |
parent | 3626877554b6c567d43336ec49414cedfe487260 (diff) | |
download | hello-nix-d9b5abdb716bd5e4d474c724cb52e9f09899f942.tar.gz |
test: add overall target
... acting as a test suite for all tests; in doing so, also add the
usual structure that each directory has is own overall target of
only the tree objects with the test results. While there, remove
duplicate copy of a test script in a wrong directory.
Diffstat (limited to 'test/test_hello.sh')
-rw-r--r-- | test/test_hello.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/test_hello.sh b/test/test_hello.sh deleted file mode 100644 index 08347e8..0000000 --- a/test/test_hello.sh +++ /dev/null @@ -1,5 +0,0 @@ -set -e - -./hello | grep -i world -./hello Universe | grep Universe -./hello Universe | grep -i world && exit 1 || : |