blob: 230f5a0871249a45064703f45d3cc836e15f96d5 (
plain) (
tree)
|
|
#!/usr/bin/env sh
test_target="$1"
[ -z "$test_target" ] && {
echo "You need to select a test target!" 1>&2
echo "Usage: test_interactive TEST_TARGET" 1>&2
exit 1
}
nix build .#checks.x86_64-linux."$test_target".driverInteractive || {
exit 1
}
./result/bin/nixos-test-driver --interactive
# vim: ft=sh
|