about summary refs log tree commit diff
path: root/third_party/nix/tests/filter-source.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/tests/filter-source.sh')
-rw-r--r--third_party/nix/tests/filter-source.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/third_party/nix/tests/filter-source.sh b/third_party/nix/tests/filter-source.sh
deleted file mode 100644
index 1f8dceee57..0000000000
--- a/third_party/nix/tests/filter-source.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-source common.sh
-
-rm -rf $TEST_ROOT/filterin
-mkdir $TEST_ROOT/filterin
-mkdir $TEST_ROOT/filterin/foo
-touch $TEST_ROOT/filterin/foo/bar
-touch $TEST_ROOT/filterin/xyzzy
-touch $TEST_ROOT/filterin/b
-touch $TEST_ROOT/filterin/bak
-touch $TEST_ROOT/filterin/bla.c.bak
-ln -s xyzzy $TEST_ROOT/filterin/link
-
-nix-build ./filter-source.nix -o $TEST_ROOT/filterout
-
-test ! -e $TEST_ROOT/filterout/foo/bar
-test -e $TEST_ROOT/filterout/xyzzy
-test -e $TEST_ROOT/filterout/bak
-test ! -e $TEST_ROOT/filterout/bla.c.bak
-test ! -L $TEST_ROOT/filterout/link