From 5c33d714b433a575aa40754da563842db7f1e774 Mon Sep 17 00:00:00 2001 From: Elise Lennion Date: Mon, 23 Jan 2017 20:42:00 -0200 Subject: tests: shell: Add test for flush bug on sets with size This tests for a bug where elements can't be added after flushing a full set with the flag NFTNL_SET_DESC_SIZE set. Signed-off-by: Elise Lennion Signed-off-by: Pablo Neira Ayuso --- tests/shell/testcases/sets/0017add_after_flush_0 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 tests/shell/testcases/sets/0017add_after_flush_0 (limited to 'tests/shell') diff --git a/tests/shell/testcases/sets/0017add_after_flush_0 b/tests/shell/testcases/sets/0017add_after_flush_0 new file mode 100755 index 00000000..0390b035 --- /dev/null +++ b/tests/shell/testcases/sets/0017add_after_flush_0 @@ -0,0 +1,12 @@ +#!/bin/bash + +# This tests for a bug where elements can't be added after flushing a +# full set with the flag NFTNL_SET_DESC_SIZE set + +set -e +$NFT add table x +$NFT add set x s {type ipv4_addr\; size 2\;} +$NFT add element x s {1.1.1.1} +$NFT add element x s {1.1.1.2} +$NFT flush set x s +$NFT add element x s {1.1.1.1} -- cgit v1.2.3