mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
21 lines
561 B
Bash
Executable File
21 lines
561 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
TODO_NixOS
|
|
|
|
clearStore
|
|
|
|
RESULT=$TEST_ROOT/result
|
|
|
|
nix-build -o "$RESULT" check-reqs.nix -A test1
|
|
|
|
(! nix-build -o "$RESULT" check-reqs.nix -A test2)
|
|
(! nix-build -o "$RESULT" check-reqs.nix -A test3)
|
|
(! nix-build -o "$RESULT" check-reqs.nix -A test4) 2>&1 | grepQuiet 'check-reqs-dep1'
|
|
(! nix-build -o "$RESULT" check-reqs.nix -A test4) 2>&1 | grepQuiet 'check-reqs-dep2'
|
|
(! nix-build -o "$RESULT" check-reqs.nix -A test5)
|
|
(! nix-build -o "$RESULT" check-reqs.nix -A test6)
|
|
|
|
nix-build -o "$RESULT" check-reqs.nix -A test7
|