summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/transactions/0015chain_0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/transactions/0015chain_0')
-rwxr-xr-xtests/shell/testcases/transactions/0015chain_025
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/shell/testcases/transactions/0015chain_0 b/tests/shell/testcases/transactions/0015chain_0
new file mode 100755
index 00000000..90f87182
--- /dev/null
+++ b/tests/shell/testcases/transactions/0015chain_0
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+set -e
+
+RULESET="add table x
+add chain x y
+add chain x z
+add rule x z jump y"
+
+$NFT -f - <<< $RULESET
+if [ $? -ne 0 ] ; then
+ echo "E: unable to load good ruleset" >&2
+ exit 1
+fi
+
+RULESET="delete rule x z handle 3
+delete chain x z
+delete chain x y
+delete table x"
+
+$NFT -f - <<< $RULESET
+if [ $? -ne 0 ] ; then
+ echo "E: unable to load good ruleset" >&2
+ exit 1
+fi