summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/0006create_set_0
blob: ca36cf7ac091a3ce8c14377eb15d745982486828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

# This testscase checks for add and create set commands.

set -e
$NFT add table t
$NFT add set t s { type ipv4_addr \; }
if $NFT create set t s { type ipv4_addr \; } 2>/dev/null ; then
	echo "E: accepted set creation that already exists" >&2
	exit 1
fi
$NFT add set t s { type ipv4_addr \; }

exit 0