From: Pablo Neira Ayuso Date: Fri, 31 Aug 2018 16:12:10 +0000 (+0200) Subject: tests: shell: missing dump for 0017ct_timeout_obj_0 X-Git-Tag: v0.9.1~277 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41b94a1ed26cfc6a575687716cdc7847fd6349f0;p=thirdparty%2Fnftables.git tests: shell: missing dump for 0017ct_timeout_obj_0 So we compare input and output are the same. Signed-off-by: Pablo Neira Ayuso --- diff --git a/tests/shell/testcases/nft-f/dumps/0017ct_timeout_obj_0.nft b/tests/shell/testcases/nft-f/dumps/0017ct_timeout_obj_0.nft new file mode 100755 index 00000000..af0c627b --- /dev/null +++ b/tests/shell/testcases/nft-f/dumps/0017ct_timeout_obj_0.nft @@ -0,0 +1,11 @@ +table ip filter { + ct timeout cttime { + protocol tcp; + l3proto ip + policy = {established: 123, close: 12} + } + + chain c { + ct timeout set "cttime" + } +}