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

# test for a segfault if bad syntax was used in set declaration
# and the set is referenced in the same batch

tmpfile=$(mktemp)
if [ ! -w $tmpfile ] ; then
	echo "Failed to create tmp file" >&2
	exit 0
fi

trap "rm -f $tmpfile" EXIT # cleanup if aborted

echo "
add table t
add chain t c
add set t s {type ipv4_addr\;}
add rule t c ip saddr @s
" > $tmpfile

$NFT -f $tmpfile 2>/dev/null