mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
5638881e5b
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.
14 lines
275 B
Makefile
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
|