1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/cpp_ctors/Makefile
Gaëtan Harter 5638881e5b
tests/cpp_ctors: move tests-cpp_ctors out of unittests
This moves 'unittests/tests-cpp_ctors' to its own test.
It prevents requiring 'cpp' in the 'unittests' that forced almost all
architectures to link the unittests with `g++`.
It also removes the need to have disabled tests for architectures.

Some boards were actually not big enough to compile unittests.
But were hidden by the 'cpp' missing feature.

Blacklist boards that were disabled for cpp test even though they
provide the 'cpp' feature.
2019-08-22 12:39:47 +02:00

14 lines
275 B
Makefile

include ../Makefile.tests_common
# HACK were disabled for `armv7` in unittests and fail to pass the test
BOARD_BLACKLIST += avsextrem
BOARD_BLACKLIST += msba2
USEMODULE += embunit
FEATURES_REQUIRED += cpp
DISABLE_MODULE += auto_init
include $(RIOTBASE)/Makefile.include