]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
tests: monitor: Become $PWD agnostic
authorPhil Sutter <phil@nwl.cc>
Thu, 7 Nov 2024 13:39:51 +0000 (14:39 +0100)
committerPhil Sutter <phil@nwl.cc>
Thu, 7 Nov 2024 17:32:58 +0000 (18:32 +0100)
The call to 'cd' is problematic since later the script tries to 'exec
unshare -n $0'. This is not the only problem though: Individual test
cases specified on command line are expected to be relative to the
script's directory, too. Just get rid of these nonsensical restrictions.

Reported-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Phil Sutter <phil@nwl.cc>
tests/monitor/run-tests.sh

index 214512d269e8da6fc1265503c9901a97fb3c82f0..67d3e618cee07bbf267bf2109d8cd864178a4d12 100755 (executable)
@@ -1,7 +1,6 @@
 #!/bin/bash
 
-cd $(dirname $0)
-nft=${NFT:-../../src/nft}
+nft=${NFT:-$(dirname $0)/../../src/nft}
 debug=false
 test_json=false
 
@@ -146,7 +145,7 @@ while [ -n "$1" ]; do
                nft=nft
                shift
                ;;
-       testcases/*.t)
+       *.t)
                testcases+=" $1"
                shift
                ;;