-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
test-on-iotlab: several fixes to make it runnable again #18722
Conversation
Running tests on Murdock as well, since I am curious, if my change to |
59113e2
to
509d251
Compare
Murdock results✔️ PASSED 509d251 test-on-iotlab: add missing scapy dependency
ArtifactsThis only reflects a subset of all builds from https://ci-prod.riot-os.org. Please refer to https://ci.riot-os.org for a complete build for now. |
ifeq (native, $(BOARD)) | ||
USEMODULE += socket_zep | ||
USEMODULE += socket_zep_hello | ||
USEMODULE += netdev | ||
TERMFLAGS += -z 127.0.0.1:17754 # Murdock has no IPv6 support | ||
else | ||
USEMODULE += netdev_default | ||
# automated test only works on native | ||
TESTS= | ||
endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A bit out of scope but I'm wondering if that shouldn't go in a Makefile.board.dep
and if maybe it could also fix the initial issue ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably, yes. But there are other tests (e.g. tests/lwip
) that do this, so definitely out of scope, IMHO. Should I just move the TESTS assignment there for now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's do it this way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which way now? 😅 The way I do it here already or putting it into Makefile.board.dep
?
Is a backport needed? |
Yes, please :) |
Backport provided in #18757 |
Contribution description
Adds a few fixes, so that some of the tests currently failing in the test-on-iotlab action run again.
Testing procedure
I will start a manual run of the action.
Issues/PRs references
None