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

Merge pull request #10948 from PeterKietzmann/pr_tests_tcp_del_tap

tests/gnrc_tcp_*: remove default PORT for native
This commit is contained in:
Martine Lenders 2019-02-05 17:15:25 +01:00 committed by GitHub
commit a73deacdb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -2,7 +2,10 @@ include ../Makefile.tests_common
# If no BOARD is found in the environment, use this default:
BOARD ?= native
PORT ?= tap1
ifeq (native,$(BOARD))
PORT ?= tap1
endif
TCP_TARGET_ADDR ?= fe80::affe%5
TCP_TARGET_PORT ?= 80

View File

@ -2,7 +2,10 @@ include ../Makefile.tests_common
# If no BOARD is found in the environment, use this default:
BOARD ?= native
PORT ?= tap0
ifeq (native,$(BOARD))
PORT ?= tap0
endif
TCP_LOCAL_ADDR ?= fe80::affe
TCP_LOCAL_PORT ?= 80