NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

install/59927: `make sets` fails with MKRUMP=no



>Number:         59927
>Category:       install
>Synopsis:       `make sets` fails with MKRUMP=no
>Confidential:   no
>Severity:       serious
>Priority:       low
>Responsible:    install-manager
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Sat Jan 17 13:00:00 +0000 2026
>Originator:     Sotiris Lamprinidis
>Release:        netbsd-11 @ 20250105
>Organization:
>Environment:
NetBSD 11.0_BETA NetBSD 11.0_BETA amd64

>Description:
t_setjmp and setjmp_tester are incorrectly marked as depending on MKRUMP in distib/sets/lists/tests/module.mi. Looking at the Makefile, this is not true. They are guarded by ${MKKMOD != no} clauses. See attached patch for a suggested solution.
>How-To-Repeat:
Build netbsd and make the sets with MKATF=yes, MKRUMP=no
>Fix:
Index: distrib/sets/lists/tests/module.mi
===================================================================
RCS file: /export/cvsroot/netbsdsrc/distrib/sets/lists/tests/module.mi,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 module.mi
--- distrib/sets/lists/tests/module.mi  18 Oct 2025 13:45:01 -0000      1.1.1.1
+++ distrib/sets/lists/tests/module.mi  17 Jan 2026 12:53:42 -0000
@@ -2,9 +2,9 @@
 #
 # These are only made for ports doing modules.
 #
-./usr/tests/kernel/setjmp_tester               tests-sys-tests         atf,rump
-./usr/tests/kernel/setjmp_tester/setjmp_tester.kmod    tests-sys-tests         atf,rump
-./usr/tests/kernel/t_setjmp                    tests-sys-tests         atf,rump
+./usr/tests/kernel/setjmp_tester               tests-sys-tests         atf,kmod
+./usr/tests/kernel/setjmp_tester/setjmp_tester.kmod    tests-sys-tests         atf,kmod
+./usr/tests/kernel/t_setjmp                    tests-sys-tests         atf,kmod
 ./usr/tests/kernel/t_threadpool                        tests-obsolete          obsolete
 ./usr/tests/kernel/threadpool_tester           tests-obsolete          obsolete
 ./usr/tests/kernel/threadpool_tester/threadpool_tester.kmod tests-obsolete     obsolete



Home | Main Index | Thread Index | Old Index