summary refs log tree commit diff stats
path: root/scripts/test_interactive.sh
blob: 3b3fe0d58dd7deaa4ea19e7f2f0157e44ec54401 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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".driver

./result/bin/nixos-test-driver --interactive

# vim: ft=sh