summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/0019jump_variable_1
blob: bda861c91df3146c7412912e3e58414b809fe8bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

# Tests use of variables in jump statements

set -e

RULESET="
define dest = { 1024 }

table ip foo {
	chain bar {
		jump \$dest
	}

	chain ber {
	}
}"

$NFT -f - <<< "$RULESET" && exit 1
exit 0