From 57a0e3acc81628f9b17b184316fe1e8c6474e24f Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Fri, 6 Mar 2020 15:15:38 +0100 Subject: [PATCH 1/2] tests/irq: remove USEMODULE += auto_init auto_init is a default module, no need to select it manually. --- tests/irq/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/irq/Makefile b/tests/irq/Makefile index 6efe7b5847..8bff23ceea 100644 --- a/tests/irq/Makefile +++ b/tests/irq/Makefile @@ -1,6 +1,5 @@ include ../Makefile.tests_common -USEMODULE += auto_init USEMODULE += xtimer include $(RIOTBASE)/Makefile.include From d31eedb8316edd7aa10cdf54a7527292a869bd7f Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Fri, 6 Mar 2020 15:16:18 +0100 Subject: [PATCH 2/2] tests/c11_atomics_cpp_compat: don't disable auto_init There is no reason to disable auto_init for this test. Since the test only uses stdout, nothing would get initialized anyway. --- tests/c11_atomics_cpp_compat/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/c11_atomics_cpp_compat/Makefile b/tests/c11_atomics_cpp_compat/Makefile index c13a51dabb..986490ca6a 100644 --- a/tests/c11_atomics_cpp_compat/Makefile +++ b/tests/c11_atomics_cpp_compat/Makefile @@ -1,9 +1,6 @@ include ../Makefile.tests_common # As it is a simple compilation test, only the basic modules are needed -DISABLE_MODULE := \ - auto_init \ - core_msg \ - # +DISABLE_MODULE := core_msg include $(RIOTBASE)/Makefile.include