From fbd103b7200a2530f65a2f1f6bc043ba2b36e5e0 Mon Sep 17 00:00:00 2001 From: Arturo Borrero Date: Thu, 21 Apr 2016 11:43:54 +0200 Subject: tests: py: allow to run tests with other nft binaries Allow to run tests with other nft binaries by reading a 'NFT' environment variable, allowing arbitrary locations for the nft binary. This is what the tests/shell/run-tests.sh script does. Among other thing, this allow us to properly hook this testsuite from the Debian CI environment (https://ci.debian.net) where we can perform tests for packages 'as installed'. Examples: # run with default config (ie src/nft) % ./nft-test.py # run with installed binary (ie /usr/sbin/nft) % NFT=/usr/sbin/nft ./nft-test.py Signed-off-by: Arturo Borrero Gonzalez Signed-off-by: Pablo Neira Ayuso --- tests/py/nft-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/py/nft-test.py b/tests/py/nft-test.py index bba91bea..fc7ae608 100755 --- a/tests/py/nft-test.py +++ b/tests/py/nft-test.py @@ -19,7 +19,7 @@ import subprocess import argparse import signal -NFT_BIN = "src/nft" +NFT_BIN = os.getenv('NFT', "src/nft") TESTS_PATH = os.path.dirname(os.path.abspath(__file__)) TESTS_DIRECTORY = ["any", "arp", "bridge", "inet", "ip", "ip6"] LOGFILE = "/tmp/nftables-test.log" -- cgit v1.2.3