Module Name:    src
Committed By:   martin
Date:           Sun Apr 14 16:07:47 UTC 2013

Modified Files:
        src/tests/dev/sysmon: t_swsensor.sh

Log Message:
The sh api calls it atf_expect_fail, while the c api calls it
atf_tc_expect_fail - this is shell, so fix the names accordingly.
XXX Why do they differ?


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/dev/sysmon/t_swsensor.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/dev/sysmon/t_swsensor.sh
diff -u src/tests/dev/sysmon/t_swsensor.sh:1.6 src/tests/dev/sysmon/t_swsensor.sh:1.7
--- src/tests/dev/sysmon/t_swsensor.sh:1.6	Sun Mar 17 06:29:55 2013
+++ src/tests/dev/sysmon/t_swsensor.sh	Sun Apr 14 16:07:46 2013
@@ -1,4 +1,4 @@
-# $NetBSD: t_swsensor.sh,v 1.6 2013/03/17 06:29:55 jmmv Exp $
+# $NetBSD: t_swsensor.sh,v 1.7 2013/04/14 16:07:46 martin Exp $
 
 get_sensor_info() {
 	rump.envstat -x | \
@@ -290,14 +290,14 @@ common_body() {
 	sleep 5
 	new_rnd_bits=$( get_rnd_bits_count )
 	if [ $new_rnd_bits -le $rnd_bits ] ; then
-		atf_tc_expect_fail "PR kern/47661"
+		atf_expect_fail "PR kern/47661"
 		atf_fail "14a: entropy bits did not increase after polling"
 	fi
 	rnd_bits=$new_rnd_bits
 	sleep 5
 	new_rnd_bits=$( get_rnd_bits_count )
 	if [ $new_rnd_bits -gt $rnd_bits ] ; then
-		atf_tc_expect_fail "PR kern/47661"
+		atf_expect_fail "PR kern/47661"
 		atf_fail "14b: entropy bits increased after poll with no value change"
 	fi
 
@@ -311,14 +311,14 @@ common_body() {
 	get_sensor_key cur-value
 	new_rnd_bits=$( get_rnd_bits_count )
 	if [ $new_rnd_bits -le $rnd_bits ] ; then
-		atf_tc_expect_fail "PR kern/47661"
+		atf_expect_fail "PR kern/47661"
 		atf_fail "15a: entropy bits did not increase after interrogation"
 	fi
 	rnd_bits=$new_rnd_bits
 	get_sensor_key cur-value
 	new_rnd_bits=$( get_rnd_bits_count )
 	if [ $new_rnd_bits -gt $rnd_bits ] ; then
-		atf_tc_expect_fail "PR kern/47661"
+		atf_expect_fail "PR kern/47661"
 		atf_fail "15b: entropy bits increased after interrogation with no value change"
 	fi
 }

Reply via email to