hs-test: fix gdb attach 74/39474/2
authorFilip Tehlar <ftehlar@cisco.com>
Sat, 2 Sep 2023 06:39:25 +0000 (08:39 +0200)
committerFlorin Coras <florin.coras@gmail.com>
Mon, 4 Sep 2023 20:55:56 +0000 (20:55 +0000)
Type: test

Change-Id: Ic48ca7a3aab47df50d4e38e6123c90140c944172
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
extras/hs-test/vppinstance.go

index bed084c..c20c5e2 100644 (file)
@@ -137,10 +137,9 @@ func (vpp *VppInstance) start() error {
                        cont <- true
                }()
 
-               // Start VPP in GDB and wait for user to attach it
-               vpp.container.execServer("su -c \"gdb -ex run --args vpp -c " + startupFileName + " &> /proc/1/fd/1\"")
+               vpp.container.execServer("su -c \"vpp -c " + startupFileName + " &> /proc/1/fd/1\"")
                fmt.Println("run following command in different terminal:")
-               fmt.Println("docker exec -it " + vpp.container.name + " gdb -ex \"attach $(docker exec " + vpp.container.name + " pidof gdb)\"")
+               fmt.Println("docker exec -it " + vpp.container.name + " gdb -ex \"attach $(docker exec " + vpp.container.name + " pidof vpp)\"")
                fmt.Println("Afterwards press CTRL+C to continue")
                <-cont
                fmt.Println("continuing...")