Skip to content
Snippets Groups Projects
Unverified Commit a7b83e92 authored by Gaëtan Harter's avatar Gaëtan Harter Committed by GitHub
Browse files

Merge pull request #9567 from kaspar030/unify_test_target

make: unify test target
parents 25868d1e 472bd0ae
No related branches found
No related tags found
No related merge requests found
Showing
with 9 additions and 63 deletions
......@@ -7,6 +7,3 @@ USEMODULE += evtimer
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -7,6 +7,3 @@ USEMODULE += evtimer
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -10,6 +10,3 @@ endif
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -5,6 +5,3 @@ USEMODULE += fmt
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -25,8 +25,6 @@ CFLAGS += -DGNRC_NETIF_IPV6_ADDRS_NUMOF=3
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
# Note: The test can check more things with ENABLE_DEBUG set to 1 in gnrc_ipv6.c
# The test can check more things with ENABLE_DEBUG set to 1 in gnrc_ipv6.c
test:
tests/01-run.py
include $(RIOTBASE)/Makefile.include
......@@ -18,6 +18,3 @@ CFLAGS += -DTEST_SUITES
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -21,6 +21,3 @@ CFLAGS += -DTEST_SUITES
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -17,6 +17,3 @@ CFLAGS += -DTEST_SUITES
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -37,6 +37,3 @@ CFLAGS += -DTEST_SUITES
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -22,6 +22,3 @@ USEMODULE += gnrc_pktdump
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -13,6 +13,3 @@ CFLAGS += -DTEST_SUITES
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
./tests/01-run.py
......@@ -14,6 +14,3 @@ CFLAGS += -DTEST_SUITES
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
./tests/01-run.py
......@@ -8,6 +8,3 @@ USEMODULE += xtimer
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -8,6 +8,3 @@ USEMODULE += xtimer
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
./tests/test.py
......@@ -41,7 +41,3 @@ test-newlib: $(ELFFILE)
fi
compile-test: $(COMPILE_TESTS)
test:
tests/01-run.py
......@@ -6,6 +6,3 @@ USEMODULE += libfixmath
TEST_ON_CI_WHITELIST += native
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -20,6 +20,3 @@ USEMODULE += printf_float
TEST_ON_CI_WHITELIST += native
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
......@@ -21,10 +21,13 @@ USEMODULE += ps
USEMODULE += od
USEMODULE += netdev_default
include $(RIOTBASE)/Makefile.include
ifeq ($(BOARD),native)
USEMODULE += lwip_ethernet
endif
# Test only implemented for native
ifeq ($(BOARD),native)
test:
./tests/01-run.py
ifneq ($(BOARD),native)
TESTS=
endif
include $(RIOTBASE)/Makefile.include
......@@ -41,6 +41,3 @@ CFLAGS += -DLWIP_SO_RCVTIMEO
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
./tests/01-run.py
......@@ -42,6 +42,3 @@ CFLAGS += -DLWIP_NETIF_LOOPBACK=1
CFLAGS += -DLWIP_HAVE_LOOPIF=1
include $(RIOTBASE)/Makefile.include
test:
./tests/01-run.py
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment