Module Name: src
Committed By: christos
Date: Wed May 15 13:43:45 UTC 2019
Modified Files:
src/tests/usr.bin/c++: t_call_once2.sh
Log Message:
Add explanatory text
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/usr.bin/c++/t_call_once2.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_once2.sh
diff -u src/tests/usr.bin/c++/t_call_once2.sh:1.1 src/tests/usr.bin/c++/t_call_once2.sh:1.2
--- src/tests/usr.bin/c++/t_call_once2.sh:1.1 Fri Mar 23 20:26:51 2018
+++ src/tests/usr.bin/c++/t_call_once2.sh Wed May 15 09:43:45 2019
@@ -1,4 +1,4 @@
-# $NetBSD: t_call_once2.sh,v 1.1 2018/03/24 00:26:51 kamil Exp $
+# $NetBSD: t_call_once2.sh,v 1.2 2019/05/15 13:43:45 christos Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -117,7 +117,7 @@ EOF
}
call_once2_profile_body() {
- atf_expect_fail "profiling option doesn't work now"
+ atf_expect_fail "profiling option doesn't work with shared libraries"
cat > test.cpp << EOF
#include <mutex>
#include <thread>
@@ -290,7 +290,7 @@ EOF
}
call_once2_pic_profile_body() {
- atf_expect_fail "profiling option doesn't work now"
+ atf_expect_fail "profiling option doesn't work with pic"
cat > test.cpp << EOF
#include <stdlib.h>
int callpic(void);
@@ -333,7 +333,7 @@ EOF
}
call_once2_pic_profile_32_body() {
- atf_expect_fail "profiling option doesn't work now"
+ atf_expect_fail "profiling option doesn't work with shared libraries"
# 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"