summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/maps/map_with_flags_0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/maps/map_with_flags_0')
-rwxr-xr-xtests/shell/testcases/maps/map_with_flags_015
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/shell/testcases/maps/map_with_flags_0 b/tests/shell/testcases/maps/map_with_flags_0
index 8774eb51..68bd80d2 100755
--- a/tests/shell/testcases/maps/map_with_flags_0
+++ b/tests/shell/testcases/maps/map_with_flags_0
@@ -4,18 +4,3 @@ set -e
$NFT add table x
$NFT add map x y { type ipv4_addr : ipv4_addr\; flags timeout\; }
-
-EXPECTED="table ip x {
- map y {
- type ipv4_addr : ipv4_addr
- flags timeout
- }
-}"
-
-GET="$($NFT list ruleset)"
-
-if [ "$EXPECTED" != "$GET" ] ; then
- DIFF="$(which diff)"
- [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
- exit 1
-fi