summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/listing/0017objects_0
blob: c4e72db0cd5f8d379c2ac1d19afecf163e008b2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

EXPECTED="table inet filter {
	map countermap {
		type ipv4_addr : counter
	}
}"

set -e

$NFT -f - <<< "$EXPECTED"
$NFT flush map inet filter countermap

GET="$($NFT list map inet filter countermap)"
if [ "$EXPECTED" != "$GET" ] ; then
	$DIFF -u <(echo "$EXPECTED") <(echo "$GET")
	exit 1
fi