Module Name: src
Committed By: pooka
Date: Sat Dec 18 08:35:54 UTC 2010
Modified Files:
src/tests/net/icmp: t_ping2.sh
Log Message:
atf-check => atf_check
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/net/icmp/t_ping2.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/net/icmp/t_ping2.sh
diff -u src/tests/net/icmp/t_ping2.sh:1.2 src/tests/net/icmp/t_ping2.sh:1.3
--- src/tests/net/icmp/t_ping2.sh:1.2 Tue Dec 14 19:08:22 2010
+++ src/tests/net/icmp/t_ping2.sh Sat Dec 18 08:35:53 2010
@@ -1,4 +1,4 @@
-# $NetBSD: t_ping2.sh,v 1.2 2010/12/14 19:08:22 pooka Exp $
+# $NetBSD: t_ping2.sh,v 1.3 2010/12/18 08:35:53 pooka Exp $
#
# Copyright (c) 2010 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -38,26 +38,26 @@
sock=${1}
addr=${2}
- atf-check -s exit:0 \
+ atf_check -s exit:0 \
env RUMP_SERVER=${sock} rump.ifconfig shmif0 create
- atf-check -s exit:0 \
+ atf_check -s exit:0 \
env RUMP_SERVER=${sock} rump.ifconfig shmif0 linkstr bus
- atf-check -s exit:0 \
+ atf_check -s exit:0 \
env RUMP_SERVER=${sock} rump.ifconfig shmif0 inet ${addr}
}
basic_body()
{
- atf-check -s exit:0 rump_allserver unix://commsock1
- atf-check -s exit:0 rump_allserver unix://commsock2
+ atf_check -s exit:0 rump_allserver unix://commsock1
+ atf_check -s exit:0 rump_allserver unix://commsock2
docfg unix://commsock1 1.2.3.4
docfg unix://commsock2 1.2.3.5
- atf-check -s exit:0 -o ignore \
+ atf_check -s exit:0 -o ignore \
env RUMP_SERVER=unix://commsock1 rump.ping -n -c 1 1.2.3.5
- atf-check -s exit:0 -o ignore \
+ atf_check -s exit:0 -o ignore \
env RUMP_SERVER=unix://commsock2 rump.ping -n -c 1 1.2.3.5
}