Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/net/if Ignore case in deprecated/anycast



details:   https://anonhg.NetBSD.org/src/rev/27781fd8eb63
branches:  trunk
changeset: 347745:27781fd8eb63
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Sep 14 16:18:31 2016 +0000

description:
Ignore case in deprecated/anycast

diffstat:

 tests/net/if/t_ifconfig.sh |  15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

diffs (47 lines):

diff -r 9e39a56f6930 -r 27781fd8eb63 tests/net/if/t_ifconfig.sh
--- a/tests/net/if/t_ifconfig.sh        Wed Sep 14 16:17:17 2016 +0000
+++ b/tests/net/if/t_ifconfig.sh        Wed Sep 14 16:18:31 2016 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: t_ifconfig.sh,v 1.11 2016/08/10 22:30:02 kre Exp $
+# $NetBSD: t_ifconfig.sh,v 1.12 2016/09/14 16:18:31 christos Exp $
 #
 # Copyright (c) 2015 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -34,6 +34,9 @@
 
 TIMEOUT=3
 
+anycast="[Aa][Nn][Yy][Cc][Aa][Ss][Tt]"
+deprecated="[Dd][Ee][Pp][Rr][Ee][Cc][Aa][Tt][Ee][Dd]"
+
 atf_test_case ifconfig_create_destroy cleanup
 ifconfig_create_destroy_head()
 {
@@ -290,22 +293,22 @@
 
        # anycast
        atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::2 anycast
-       atf_check -s exit:0 -o match:'fc00::2.+anycast' rump.ifconfig shmif0 inet6
+       atf_check -s exit:0 -o match:"fc00::2.+$anycast" rump.ifconfig shmif0 inet6
 
        # deprecated
        atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::3 deprecated
        # Not deprecated immediately. Need to wait nd6_timer that does it is scheduled.
        interval=$(sysctl -n net.inet6.icmp6.nd6_prune)
        atf_check -s exit:0 sleep $((interval + 1))
-       atf_check -s exit:0 -o match:'fc00::3.+deprecated' rump.ifconfig shmif0 inet6
+       atf_check -s exit:0 -o match:"fc00::3.+$deprecated" rump.ifconfig shmif0 inet6
        atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::3 -deprecated
-       atf_check -s exit:0 -o not-match:'fc00::3.+deprecated' rump.ifconfig shmif0 inet6
+       atf_check -s exit:0 -o not-match:"fc00::3.+$deprecated" rump.ifconfig shmif0 inet6
 
        # pltime
        atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::3 pltime 3
-       atf_check -s exit:0 -o not-match:'fc00::3.+deprecated' rump.ifconfig shmif0 inet6
+       atf_check -s exit:0 -o not-match:"fc00::3.+$deprecated" rump.ifconfig shmif0 inet6
        atf_check -s exit:0 sleep 5
-       atf_check -s exit:0 -o match:'fc00::3.+deprecated' rump.ifconfig shmif0 inet6
+       atf_check -s exit:0 -o match:"fc00::3.+$deprecated" rump.ifconfig shmif0 inet6
 
        # eui64
        atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00:1::0 eui64



Home | Main Index | Thread Index | Old Index