diff options
author | 2016-02-04 10:30:24 +0200 | |
---|---|---|
committer | 2016-02-04 10:30:24 +0200 | |
commit | d95c37b1d2b3c9d7c2e1942b4b8ee18f22464f72 (patch) | |
tree | f369f3372be21e58910990912224d184b069007b /scripts/automation/trex_control_plane/client | |
parent | 2bb3178d1c121a23f8a62a17c2c8e719ccb4928f (diff) |
fix simulation trim instruction
Diffstat (limited to 'scripts/automation/trex_control_plane/client')
-rw-r--r-- | scripts/automation/trex_control_plane/client/trex_stateless_sim.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/client/trex_stateless_sim.py b/scripts/automation/trex_control_plane/client/trex_stateless_sim.py index d8f6ed92..bfc3a932 100644 --- a/scripts/automation/trex_control_plane/client/trex_stateless_sim.py +++ b/scripts/automation/trex_control_plane/client/trex_stateless_sim.py @@ -260,7 +260,7 @@ class STLSim(object): cmd = ['valgrind', '--leak-check=full', '--error-exitcode=1'] + cmd elif self.mode == 'gdb': - cmd = ['gdb', '--args'] + cmd + cmd = ['/bin/gdb', '--args'] + cmd print "executing command: '{0}'".format(" ".join(cmd)) rc = subprocess.call(cmd) |