1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests: fix remaining broken paths to tests

This commit is contained in:
Alexandre Abadie 2023-05-13 19:01:43 +02:00
parent c735b958cc
commit 915f9b4f65
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ def testfunc(child):
dst = int(child.match.group(1).replace(':', ''), base=16)
# first send valid packet to check if communication is set up correctly
# generated with udp send <link-local> 61616 0 in tests/gnrc_udp
# generated with udp send <link-local> 61616 0 in tests/net/gnrc_udp
payload = b"\x7e\x33\xf3\x00"
payload = (
Dot15d4FCS(fcf_srcaddrmode=2, fcf_panidcompress=True,

View File

@ -2,7 +2,7 @@ Test description
==========
The testsuite tests the GNRC TCP integration into the SOCK TCP interface.
The tests offer only basic verification of the SOCK TCP interface since GNRC TCP aims
follow the SOCK TCP interface as close as possible, detailed tests are under tests/gnrc_tcp
follow the SOCK TCP interface as close as possible, detailed tests are under tests/net/gnrc_tcp
Setup
==========