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

# list table only show table asked for

EXPECTED="table ip test {
}"

set -e

$NFT add table test
$NFT add table test2

GET="$($NFT list table test)"
if [ "$EXPECTED" != "$GET" ] ; then
	$DIFF -u <(echo "$EXPECTED") <(echo "$GET")
	exit 1
fi