mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
11 lines
130 B
Bash
11 lines
130 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
test=$1
|
||
|
|
||
|
dir="$(dirname "${BASH_SOURCE[0]}")"
|
||
|
source "$dir/common-test.sh"
|
||
|
|
||
|
run "$test"
|