From 3fd6b24ace319b139ec3c4e3031a5f05d21e304e Mon Sep 17 00:00:00 2001 From: Jozsef Kadlecsik Date: Tue, 15 Jun 2010 13:30:55 +0200 Subject: ipset 5 in an almost ready state - milestone Reworked protocol and internal interfaces, missing set types added, backward compatibility verified, lots of tests added (and thanks to the tests, bugs fixed), even the manpage is rewritten ;-). Countless changes everywhere... The missing bits before announcing ipset 5: - net namespace support - new iptables/ip6tables extension library - iptables/ip6tables match and target tests (backward/forward compatibility) - tests on catching syntax errors --- tests/runtest.sh | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'tests/runtest.sh') diff --git a/tests/runtest.sh b/tests/runtest.sh index a045905..ccd057e 100755 --- a/tests/runtest.sh +++ b/tests/runtest.sh @@ -1,22 +1,19 @@ #!/bin/bash tests="init" -tests="$tests ipmap bitmap:ip macipmap portmap" -tests="$tests iphash hash:ip" -# nethash ipporthash" -# tests="$tests ipportiphash ipportnethash" -# tests="$tests iptree iptreemap" -# tests="$tests setlist" +tests="$tests ipmap bitmap:ip" +tests="$tests macipmap portmap" +tests="$tests iphash hash:ip hash:ip6" +tests="$tests ipporthash hash:ip,port hash:ip6,port" +tests="$tests ipportiphash hash:ip,port,ip hash:ip6,port,ip6" +tests="$tests nethash hash:net hash:net6" +tests="$tests setlist" +tests="$tests iptree iptreemap" if [ "$1" ]; then tests="init $@" fi -if [ ! -x ../src/ipset ]; then - echo "Please rune `make` first and create the ipset binary." - exit 1 -fi - for types in $tests; do ../src/ipset -X test >/dev/null 2>&1 if [ -f $types ]; then -- cgit v1.2.3