Module Name: src
Committed By: kamil
Date: Wed Apr 4 15:53:04 UTC 2018
Modified Files:
src/tests/usr.bin/c++: Makefile
Log Message:
Correct a small regression typo in usr.bin/c++ ATF tests
TESTS_SH= changed to TESTS_SH+=
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/usr.bin/c++/Makefile
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++/Makefile
diff -u src/tests/usr.bin/c++/Makefile:1.5 src/tests/usr.bin/c++/Makefile:1.6
--- src/tests/usr.bin/c++/Makefile:1.5 Wed Apr 4 15:08:59 2018
+++ src/tests/usr.bin/c++/Makefile Wed Apr 4 15:53:04 2018
@@ -1,12 +1,13 @@
-# $NetBSD: Makefile,v 1.5 2018/04/04 15:08:59 kamil Exp $
+# $NetBSD: Makefile,v 1.6 2018/04/04 15:53:04 kamil Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/usr.bin/c++
+TESTS_SH= #
TESTS_SH+= t_call_once
TESTS_SH+= t_call_once2
-TESTS_SH= t_cxxruntime
+TESTS_SH+= t_cxxruntime
TESTS_SH+= t_hello
TESTS_SH+= t_pthread_once
TESTS_SH+= t_static_destructor