#!/bin/bash

# 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-test.py
