blob: f8e76277667a50da40b2f48a3fdfd8cf0538685d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Run the internal tests of nftables (py)
# The testsuite requires kernel at least 4.x
if [ "$(uname -r | cut -d. -f1)" -lt 4 ] ; then
echo "W: This testsuite is likely to produce many fails because of old kernel"
fi
set -e
cd tests/py
NFT=$(which nft) ./nft-test.py
|