Skip to content
Snippets Groups Projects
Commit 3ff2edfe authored by Martine Lenders's avatar Martine Lenders
Browse files

tests/gnrc_rpl_srh: output unittests as text

parent 1d5184a9
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,8 @@ BOARD_BLACKLIST := chronos mips-malta ruuvitag
export TAP ?= tap0
CFLAGS += -DOUTPUT=TEXT
# use Ethernet as link-layer protocol
ifeq (native,$(BOARD))
USEMODULE += netdev_tap
......
......@@ -331,7 +331,7 @@ def testfunc(child):
tap = get_bridge(os.environ["TAP"])
child.expect(r"OK \((\d+) tests\)") # wait for and check result of unittests
print(".", end="", flush=True)
print("." * int(child.match.group(1)), end="", flush=True)
lladdr_src = get_host_lladdr(tap)
child.sendline("ifconfig")
child.expect("HWaddr: (?P<hwaddr>[A-Fa-f:0-9]+)")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment