From 00f7e52be64ffccef45ce858c1ce8f5fbf3b6647 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Thu, 3 Oct 2019 19:37:59 +0200 Subject: [PATCH] tests/gnrc_tcp: fix sudo error message --- tests/gnrc_tcp/tests/shared_func.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gnrc_tcp/tests/shared_func.py b/tests/gnrc_tcp/tests/shared_func.py index 7f6bfb484a..8347a2c939 100644 --- a/tests/gnrc_tcp/tests/shared_func.py +++ b/tests/gnrc_tcp/tests/shared_func.py @@ -105,6 +105,6 @@ def sudo_guard(): sudo_required = os.environ.get("BOARD", "") != "native" if sudo_required and os.geteuid() != 0: print("\x1b[1;31mThis test requires root privileges.\n" - "It's constructing and sending Ethernet frames.\x1b[0m\n", + "It uses `./dist/tools/ethos/start_networking.sh` as term\x1b[0m\n", file=sys.stderr) sys.exit(1)