Linux Netfilter development
 help / color / mirror / Atom feed
* [nft PATCH 1/3] tests: shell: testcase for adding many set elements
@ 2016-11-16 12:53 Arturo Borrero Gonzalez
  2016-11-16 12:53 ` [nft PATCH 2/3] tests: shell: testcase for deleting " Arturo Borrero Gonzalez
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Arturo Borrero Gonzalez @ 2016-11-16 12:53 UTC (permalink / raw)
  To: netfilter-devel

From: Arturo Borrero Gonzalez <arturo@debian.org>

This testcase adds many elements in a set.
We add 65.356 elements.

Signed-off-by: Arturo Borrero Gonzalez <arturo@debian.org>
---
 tests/shell/testcases/sets/0011add_many_elements_0 |   32 ++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100755 tests/shell/testcases/sets/0011add_many_elements_0

diff --git a/tests/shell/testcases/sets/0011add_many_elements_0 b/tests/shell/testcases/sets/0011add_many_elements_0
new file mode 100755
index 0000000..ba23f90
--- /dev/null
+++ b/tests/shell/testcases/sets/0011add_many_elements_0
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+# test adding many sets elements
+
+HOWMANY=255
+
+tmpfile=$(mktemp)
+if [ ! -w $tmpfile ] ; then
+	echo "Failed to create tmp file" >&2
+	exit 0
+fi
+
+trap "rm -rf $tmpfile" EXIT # cleanup if aborted
+
+generate() {
+	echo -n "{"
+	for ((i=1; i<=HOWMANY; i++)) ; do
+		for ((j=1; j<=HOWMANY; j++)) ; do
+			echo -n "10.0.${i}.${j}"
+			[ "$i" == "$HOWMANY" ] && [ "$j" == "$HOWMANY" ] && break
+			echo -n ", "
+		done
+	done
+	echo -n "}"
+}
+
+echo "add table x
+add set x y { type ipv4_addr; }
+add element x y $(generate)" > $tmpfile
+
+set -e
+$NFT -f $tmpfile


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-11-24 12:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-16 12:53 [nft PATCH 1/3] tests: shell: testcase for adding many set elements Arturo Borrero Gonzalez
2016-11-16 12:53 ` [nft PATCH 2/3] tests: shell: testcase for deleting " Arturo Borrero Gonzalez
2016-11-16 12:53 ` [nft PATCH 3/3] tests: shell: another " Arturo Borrero Gonzalez
2016-11-24 12:02 ` [nft PATCH 1/3] tests: shell: testcase for adding " Pablo Neira Ayuso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox