diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/shell/testcases/sets/0031set_timeout_size_0 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/shell/testcases/sets/0031set_timeout_size_0 b/tests/shell/testcases/sets/0031set_timeout_size_0 new file mode 100755 index 00000000..ef65972a --- /dev/null +++ b/tests/shell/testcases/sets/0031set_timeout_size_0 @@ -0,0 +1,15 @@ +#!/bin/bash + +tmpfile=$(mktemp) +if [ ! -w $tmpfile ] ; then + echo "Failed to create tmp file" >&2 + exit 0 +fi + +trap "rm -rf $tmpfile" EXIT # cleanup if aborted + +echo "add table x +add set x y { type ipv4_addr; size 128; timeout 30s; }" + +set -e +$NFT -f $tmpfile |