easy-dhall-nix/test.sh
Profpatsch e555e2201c test(*): automatically check all binaries, based on binNames
The test list would go out-of-date when new packages were added. This
does the same check as before, but uses the binaries we already
specify on the nix level (via a passthru).

The next step is to try to run the binaries (e.g. with --version),
which will give us a better test of whether they are actually
executable.
2020-11-06 11:59:44 +01:00

5 lines
83 B
Bash
Executable File

#!/usr/bin/env sh
set -e
test_script="$(nix-build ./test.nix)"
exec "$test_script"