summaryrefslogtreecommitdiff
path: root/tests/usr.bin/c++
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2022-09-28 11:09:59 +0000
committerskrll <skrll@NetBSD.org>2022-09-28 11:09:59 +0000
commitf9830ea65849bcaa4bfcc36cd5a9f01466f20997 (patch)
treea659004e0081d3723767a5b06d34a65b857867ef /tests/usr.bin/c++
parent08ba965022ed7826c4673f3b0bf1bdb3619185bb (diff)
toolchain/57033: usr.bin/c++/t_call_once2:call_once2_profile test case fails
Revive a missing space.
Diffstat (limited to 'tests/usr.bin/c++')
-rw-r--r--tests/usr.bin/c++/t_call_once2.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/usr.bin/c++/t_call_once2.sh b/tests/usr.bin/c++/t_call_once2.sh
index bb248f308ab..26350d3e991 100644
--- a/tests/usr.bin/c++/t_call_once2.sh
+++ b/tests/usr.bin/c++/t_call_once2.sh
@@ -1,4 +1,4 @@
-# $NetBSD: t_call_once2.sh,v 1.6 2022/06/12 15:08:38 skrll Exp $
+# $NetBSD: t_call_once2.sh,v 1.7 2022/09/28 11:09:59 skrll Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -198,7 +198,7 @@ int main(void) {
return 0;
}
EOF
- atf_check -s exit:0 -o ignore -e ignore c++ -static-m32 -pg -o call_once2 test.cpp -pthread
+ atf_check -s exit:0 -o ignore -e ignore c++ -static -m32 -pg -o call_once2 test.cpp -pthread
atf_check -s exit:0 -o inline:"hello, world!\n" ./call_once2
atf_expect_fail "The combination of 32-bit and profiling should be fail"
}