From 25a60b849024ab9555183acbcbe1b52b2968d53a Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Mon, 6 Apr 2020 17:15:52 +0200 Subject: [PATCH] travis: fix broken test for detecting empty SETUP_PATH - Test was broken by commit 487d8eb2 this remained undetected due to name conflict between die() in test script and in utils.sh --- travis-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-test.sh b/travis-test.sh index 8e6bdea..ac73b2a 100755 --- a/travis-test.sh +++ b/travis-test.sh @@ -60,7 +60,7 @@ fn_exists add_dependency || fail "function add_dependency missing from SCRIPTDIR # test source_set() ###################################################################### -SETUP_DIRS= source_set test01 | grep -q "(SETUP_PATH) is empty" || fail "empty search path not detected" +SETUP_PATH= source_set test01 | grep -q "(SETUP_PATH) is empty" || fail "empty search path not detected" source_set xxdoesnotexistxx | grep -q "does not exist" || fail "missing setup file not detected" source_set test01 | grep -q "Loading setup file" || fail "test01 setup file not found" unset SEEN_SETUPS