summaryrefslogtreecommitdiffstats
path: root/tests/data_plane/vpp_lite_topo/utils/scripts/attach.sh
blob: 0b87085d5b276150c530ed665d5b5a82ddd3b1fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

# Help script for attaching running vpp
#
# Currently his sctipt waits for second vpp pid

pid=""

cd ${VPP_LITE_DIR}

while [ "$pid" == "" ] ; do
  pid=$(pidof vpp | awk '{print $2}')
done

echo "attached to $pid"
gdb attach $pid -ex cont