1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/makefiles/tests/feature_resolution/test-complex-failure.mk
Marian Buschsieweke ed2ae85985
tests/feature_resolution: add build system unit tests
This test "application" contains a set of unit tests for the feature resolution
of RIOT's build system.
2021-02-10 21:05:38 +01:00

16 lines
375 B
Makefile

# inputs
FEATURES_OPTIONAL := a b
FEATURES_REQUIRED := c d
FEATURES_REQUIRED_ANY := e|f|d a|h|i
FEATURES_PROVIDED := a b c d e f g
FEATURES_BLACKLIST := a
FEATURES_CONFLICT := f:e c:d
# expected results
EXPECTED_FEATURES_USED := a|h|i b c d
EXPECTED_FEATURES_MISSING := a|h|i
EXPECTED_FEATURES_USED_BLACKLISTED :=
EXPECTED_FEATURES_CONFLICTING := c d
include Makefile.test