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

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

# vim: ft=sh