summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/dumps/0055tcpflags_0.nft
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2020-09-03 12:33:21 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2020-09-04 17:19:25 +0200
commit741a06ac15d2bd903b33e5032f5f6fcd54bebc4e (patch)
treefa2a9d76b894e37a76103b370f840719efa02335 /tests/shell/testcases/sets/dumps/0055tcpflags_0.nft
parentc3bb98cd10670226de02455f5e45c5a170eec685 (diff)
mergesort: find base value expression type via recursion
Sets that store flags might contain a mixture of values and binary operations. Find the base value type via recursion to compare the expressions. Make sure concatenations are listed in a deterministic way via concat_expr_msort_value() which builds a mpz value with the tuple. Adjust a few tests after this update since listing differs after this update. Fixes: 14ee0a979b62 ("src: sort set elements in netlink_get_setelems()") Fixes: 3926a3369bb5 ("mergesort: unbreak listing with binops") Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/shell/testcases/sets/dumps/0055tcpflags_0.nft')
-rw-r--r--tests/shell/testcases/sets/dumps/0055tcpflags_0.nft10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/shell/testcases/sets/dumps/0055tcpflags_0.nft b/tests/shell/testcases/sets/dumps/0055tcpflags_0.nft
new file mode 100644
index 00000000..ffed5426
--- /dev/null
+++ b/tests/shell/testcases/sets/dumps/0055tcpflags_0.nft
@@ -0,0 +1,10 @@
+table ip test {
+ set tcp_good_flags {
+ type tcp_flag
+ flags constant
+ elements = { fin | psh | ack | urg, fin | psh | ack, fin | ack | urg, fin | ack, syn | psh | ack | urg,
+ syn | psh | ack, syn | ack | urg, syn | ack, syn, rst | psh | ack | urg,
+ rst | psh | ack, rst | ack | urg, rst | ack, rst, psh | ack | urg,
+ psh | ack, ack | urg, ack }
+ }
+}