summaryrefslogtreecommitdiffstats
path: root/tests/hash:net,port.t
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2011-05-30 17:29:58 +0200
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2011-05-30 17:29:58 +0200
commit4e21d6b5ce623f7601a872b94f3b88105356e2d3 (patch)
tree0a8220c27c0b1924344edb296f3665c32683966a /tests/hash:net,port.t
parent596013c3a18f8901d356886a58b61d66e68afd47 (diff)
hash:* tests may seem to fail due to the too wide grep pattern, fix them
Diffstat (limited to 'tests/hash:net,port.t')
-rw-r--r--tests/hash:net,port.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hash:net,port.t b/tests/hash:net,port.t
index 519292c..b7bc8a3 100644
--- a/tests/hash:net,port.t
+++ b/tests/hash:net,port.t
@@ -59,7 +59,7 @@
# Add a range which forces a resizing
0 ipset add test 10.0.0.0/24,tcp:80-1105
# Check that correct number of elements are added
-0 n=`ipset list test|grep 10.0|wc -l` && test $n -eq 1026
+0 n=`ipset list test|grep '^10.0'|wc -l` && test $n -eq 1026
# Destroy set
0 ipset -X test
# Create set to add a range and with range notation in the network
@@ -67,7 +67,7 @@
# Add a range which forces a resizing
0 ipset add test 10.0.0.0-10.0.2.255,tcp:80-1105
# Check that correct number of elements are added
-0 n=`ipset list test|grep 10.0|wc -l` && test $n -eq 2052
+0 n=`ipset list test|grep '^10.0'|wc -l` && test $n -eq 2052
# Destroy set
0 ipset -X test
# eof