summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/0007create_element_0
blob: 47b3559c27b940ed134de4092e10cfb07ec2ce0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# This testcase checks for add and create element commands.

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

exit 0