diff options
Diffstat (limited to 'tests/shell/testcases/transactions/0038set_0')
-rwxr-xr-x | tests/shell/testcases/transactions/0038set_0 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/shell/testcases/transactions/0038set_0 b/tests/shell/testcases/transactions/0038set_0 new file mode 100755 index 0000000..d7c2ba3 --- /dev/null +++ b/tests/shell/testcases/transactions/0038set_0 @@ -0,0 +1,16 @@ +#!/bin/bash + +set -e + +RULESET="add table x +add set x y { type ipv4_addr; flags interval;} +add element x y { 192.168.0.0/24, 192.168.2.0/24 } +delete element x y { 192.168.0.0/24 } +delete element x y { 192.168.2.0/24 } +add element x y { 192.168.4.0/24 }" + +$NFT -f - <<< "$RULESET" +if [ $? -ne 0 ] ; then + echo "E: unable to load good ruleset" >&2 + exit 1 +fi |