summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/listing/0004table_0
blob: 2c7c995203b85f0ab7306027a9d3ada1c92ece0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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="$(which diff)"
	[ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
	exit 1
fi