diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/filter-source.nix.in | 4 | ||||
-rw-r--r-- | tests/filter-source.sh | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/filter-source.nix.in b/tests/filter-source.nix.in index 2b5c23d31765..8493835c2b93 100644 --- a/tests/filter-source.nix.in +++ b/tests/filter-source.nix.in @@ -3,5 +3,7 @@ derivation { system = "@system@"; builder = "@shell@"; args = ["-e" "-x" (builtins.toFile "builder" "PATH=@testPath@; ln -s $input $out")]; - input = builtins.filterSource (path: baseNameOf (toString path) != "foo") ./test-tmp/filterin; + input = + let filter = path: type: type != "symlink" && baseNameOf (toString path) != "foo"; + in builtins.filterSource filter ./test-tmp/filterin; } diff --git a/tests/filter-source.sh b/tests/filter-source.sh index 4880969ba7ad..96ccaedca028 100644 --- a/tests/filter-source.sh +++ b/tests/filter-source.sh @@ -5,9 +5,11 @@ mkdir $TEST_ROOT/filterin mkdir $TEST_ROOT/filterin/foo touch $TEST_ROOT/filterin/foo/bar touch $TEST_ROOT/filterin/xyzzy +ln -s xyzzy $TEST_ROOT/filterin/link $NIX_BIN_DIR/nix-build ./filter-source.nix -o $TEST_ROOT/filterout set -x test ! -e $TEST_ROOT/filterout/foo/bar test -e $TEST_ROOT/filterout/xyzzy +test ! -L $TEST_ROOT/filterout/link |