summaryrefslogtreecommitdiffstats
path: root/tests/eval-test.sh
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-24 18:00:51 +0000
committerYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-24 18:00:51 +0000
commit4d498aff1a147f06d71a8e96d17bbba9df5ae926 (patch)
tree43cde1e3903d3d20cac8476f7101857f210a814c /tests/eval-test.sh
parenta433fd730f65e427513883865e0610c0a4c519c6 (diff)
tests: move to _tests
Diffstat (limited to 'tests/eval-test.sh')
-rwxr-xr-xtests/eval-test.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/eval-test.sh b/tests/eval-test.sh
deleted file mode 100755
index 00970b7..0000000
--- a/tests/eval-test.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-cd $(dirname $0)/..
-
-find=(find . -name default.nix)
-
-for profile in `${find[@]}`; do
- echo evaluating $profile >&2
-
- nixos-rebuild \
- -I nixos-config=tests/eval-test.nix \
- -I nixos-hardware-profile=$profile \
- dry-build
-
- if [ $? -ne 0 ]; then
- exit 1
- fi
-done