From 3a9f11e6d93c9839c7bb0aaa62662299165123d8 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Tue, 18 Jun 2019 22:59:55 -0400 Subject: tests: add sudo to gdb commands Prepend sudo to the gdb command line. Type: test Change-Id: I09013c3ca512e26de0c46c02f643b21064ba499c Signed-off-by: Paul Vinciguerra --- test/framework.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/framework.py') diff --git a/test/framework.py b/test/framework.py index fd91d4c9d5e..26e93e4abd9 100644 --- a/test/framework.py +++ b/test/framework.py @@ -351,12 +351,13 @@ class VppTestCase(unittest.TestCase): print(single_line_delim) print("You can debug the VPP using e.g.:") if cls.debug_gdbserver: - print("gdb " + cls.vpp_bin + " -ex 'target remote localhost:7777'") + print("sudo gdb " + cls.vpp_bin + + " -ex 'target remote localhost:7777'") print("Now is the time to attach a gdb by running the above " "command, set up breakpoints etc. and then resume VPP from " "within gdb by issuing the 'continue' command") elif cls.debug_gdb: - print("gdb " + cls.vpp_bin + " -ex 'attach %s'" % cls.vpp.pid) + print("sudo gdb " + cls.vpp_bin + " -ex 'attach %s'" % cls.vpp.pid) print("Now is the time to attach a gdb by running the above " "command and set up breakpoints etc.") print(single_line_delim) -- cgit 1.2.3-korg