housekeeping: shellcheck for tests/functional/filter-source.sh

This commit is contained in:
Cameron Dart 2024-06-04 13:32:59 -07:00 committed by John Ericson
parent 224f5515b9
commit ae6a842c55

View file

@ -2,26 +2,26 @@
source common.sh source common.sh
rm -rf $TEST_ROOT/filterin rm -rf "$TEST_ROOT/filterin"
mkdir $TEST_ROOT/filterin mkdir "$TEST_ROOT/filterin"
mkdir $TEST_ROOT/filterin/foo mkdir "$TEST_ROOT/filterin/foo"
touch $TEST_ROOT/filterin/foo/bar touch "$TEST_ROOT/filterin/foo/bar"
touch $TEST_ROOT/filterin/xyzzy touch "$TEST_ROOT/filterin/xyzzy"
touch $TEST_ROOT/filterin/b touch "$TEST_ROOT/filterin/b"
touch $TEST_ROOT/filterin/bak touch "$TEST_ROOT/filterin/bak"
touch $TEST_ROOT/filterin/bla.c.bak touch "$TEST_ROOT"/filterin/bla.c.bak
ln -s xyzzy $TEST_ROOT/filterin/link ln -s xyzzy "$TEST_ROOT/filterin/link"
checkFilter() { checkFilter() {
test ! -e $1/foo/bar test ! -e "$1/foo/bar"
test -e $1/xyzzy test -e "$1/xyzzy"
test -e $1/bak test -e "$1/bak"
test ! -e $1/bla.c.bak test ! -e "$1"/bla.c.bak
test ! -L $1/link test ! -L "$1/link"
} }
nix-build ./filter-source.nix -o $TEST_ROOT/filterout1 nix-build ./filter-source.nix -o "$TEST_ROOT/filterout1"
checkFilter $TEST_ROOT/filterout1 checkFilter "$TEST_ROOT/filterout1"
nix-build ./path.nix -o $TEST_ROOT/filterout2 nix-build ./path.nix -o "$TEST_ROOT/filterout2"
checkFilter $TEST_ROOT/filterout2 checkFilter "$TEST_ROOT/filterout2"