Module Name:    src
Committed By:   christos
Date:           Tue Jan  8 00:21:19 UTC 2019

Modified Files:
        src/tests/usr.bin/c++: t_call_once.sh

Log Message:
this now works...


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/usr.bin/c++/t_call_once.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/usr.bin/c++/t_call_once.sh
diff -u src/tests/usr.bin/c++/t_call_once.sh:1.1 src/tests/usr.bin/c++/t_call_once.sh:1.2
--- src/tests/usr.bin/c++/t_call_once.sh:1.1	Fri Mar 23 20:26:51 2018
+++ src/tests/usr.bin/c++/t_call_once.sh	Mon Jan  7 19:21:19 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: t_call_once.sh,v 1.1 2018/03/24 00:26:51 kamil Exp $
+#	$NetBSD: t_call_once.sh,v 1.2 2019/01/08 00:21:19 christos Exp $
 #
 # Copyright (c) 2018 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -101,7 +101,6 @@ EOF
 }
 
 call_once_profile_body() {
-	atf_expect_fail "profiling option doesn't work now"
 	cat > test.cpp << EOF
 #include <cstdio>
 #include <thread>
@@ -117,7 +116,6 @@ EOF
 }
 
 call_once_profile_32_body() {
-	atf_expect_fail "profiling option doesn't work now"
 	# check whether this arch is 64bit
 	if ! c++ -dM -E - < /dev/null | fgrep -q _LP64; then
 		atf_skip "this is not a 64 bit architecture"
@@ -142,7 +140,6 @@ int main(void) {
 EOF
 	atf_check -s exit:0 -o ignore -e ignore c++ -m32 -pg -o call_once test.cpp -pthread
 	atf_check -s exit:0 -o inline:"hello, world!\n" ./call_once
-	atf_expect_fail "The combination of 32-bit and profiling should be fail"
 }
 
 call_once_pic_body() {
@@ -210,7 +207,6 @@ EOF
 }
 
 call_once_pic_profile_body() {
-	atf_expect_fail "profiling option doesn't work now"
 	cat > test.cpp << EOF
 #include <stdlib.h>
 int callpic(void);
@@ -237,7 +233,6 @@ EOF
 }
 
 call_once_pic_profile_32_body() {
-	atf_expect_fail "profiling option doesn't work now"
 	# check whether this arch is 64bit
 	if ! c++ -dM -E - < /dev/null | fgrep -q _LP64; then
 		atf_skip "this is not a 64 bit architecture"

Reply via email to