Module Name: src
Committed By: uebayasi
Date: Fri Nov 14 13:30:48 UTC 2014
Modified Files:
src/distrib/sets/lists/tests: mi
src/tests/usr.bin/ld: Makefile
Added Files:
src/tests/usr.bin/ld: t_section.sh
Log Message:
Test __start_xxx/__stop_xxx symbol generation.
To generate a diff of this commit:
cvs rdiff -u -r1.597 -r1.598 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.1 -r1.2 src/tests/usr.bin/ld/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/usr.bin/ld/t_section.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/sets/lists/tests/mi
diff -u src/distrib/sets/lists/tests/mi:1.597 src/distrib/sets/lists/tests/mi:1.598
--- src/distrib/sets/lists/tests/mi:1.597 Fri Nov 14 09:03:39 2014
+++ src/distrib/sets/lists/tests/mi Fri Nov 14 13:30:48 2014
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.597 2014/11/14 09:03:39 uebayasi Exp $
+# $NetBSD: mi,v 1.598 2014/11/14 13:30:48 uebayasi Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@@ -3467,6 +3467,7 @@
./usr/tests/usr.bin/ld/Atffile tests-usr.bin-tests atf
./usr/tests/usr.bin/ld/Kyuafile tests-usr.bin-tests atf,kyua
./usr/tests/usr.bin/ld/t_script tests-usr.bin-tests atf
+./usr/tests/usr.bin/ld/t_section tests-usr.bin-tests atf
./usr/tests/usr.bin/m4 tests-usr.bin-tests
./usr/tests/usr.bin/m4/Atffile tests-usr.bin-tests atf
./usr/tests/usr.bin/m4/Kyuafile tests-usr.bin-tests atf,kyua
Index: src/tests/usr.bin/ld/Makefile
diff -u src/tests/usr.bin/ld/Makefile:1.1 src/tests/usr.bin/ld/Makefile:1.2
--- src/tests/usr.bin/ld/Makefile:1.1 Fri Nov 14 09:03:39 2014
+++ src/tests/usr.bin/ld/Makefile Fri Nov 14 13:30:48 2014
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.1 2014/11/14 09:03:39 uebayasi Exp $
+# $NetBSD: Makefile,v 1.2 2014/11/14 13:30:48 uebayasi Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/usr.bin/ld
-TESTS_SH= t_script
+TESTS_SH= t_script \
+ t_section
.include <bsd.test.mk>
Added files:
Index: src/tests/usr.bin/ld/t_section.sh
diff -u /dev/null src/tests/usr.bin/ld/t_section.sh:1.1
--- /dev/null Fri Nov 14 13:30:48 2014
+++ src/tests/usr.bin/ld/t_section.sh Fri Nov 14 13:30:48 2014
@@ -0,0 +1,48 @@
+# $NetBSD: t_section.sh,v 1.1 2014/11/14 13:30:48 uebayasi Exp $
+#
+# Copyright (c) 2014 The NetBSD Foundation, Inc.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+atf_test_case startstop
+startstop_head() {
+ atf_set "descr" "check if __start_*/__stop_* symbols are generated"
+ atf_set "require.progs" "cc"
+}
+
+startstop_body() {
+ cat > test.c << EOF
+#include <sys/cdefs.h>
+int i __section("hoge");
+extern int __start_hoge[], __stop_hoge[];
+int main = __start_hoge[0] + __stop_hoge[0];
+EOF
+ atf_check -s exit:0 -o ignore -e ignore cc -o test test.c
+}
+
+atf_init_test_cases()
+{
+
+ atf_add_test_case startstop
+}