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