Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PoC] tests/lwip: port to RIOTCtrl #14874

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tests/lwip/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ ifneq (0, $(LWIP_IPV4))
USEMODULE += lwip_dhcp_auto
CFLAGS += -DETHARP_SUPPORT_STATIC_ENTRIES=1
LWIP_IPV6 ?= 0
# give RIOTCtrl a bit more time to start up terminal for DHCP
export RIOT_TERM_START_DELAY = 5
else
# use IPv6 as default IP protocol when IPv4 is not explicitly selected
LWIP_IPV6 ?= 1
Expand Down Expand Up @@ -44,7 +46,12 @@ endif

DISABLE_MODULE += test_utils_interactive_sync

DOCKER_ENV_VARS += PORT2

# test fails on murdock and on my machine due to the process exiting directly
TEST_ON_CI_BLACKLIST += all

include $(RIOTBASE)/Makefile.include

# expose PORT to test target
test: export PORT:=$(PORT)
Loading