diff options
author | 2015-09-08 18:41:17 -0400 | |
---|---|---|
committer | 2015-09-08 18:41:17 -0400 | |
commit | 60e901aabaeab7d205da65030849056c05c8b73e (patch) | |
tree | 20883ed8ae63c326f3c042992e8dbe668656568e /scripts/automation/trex_control_plane/examples | |
parent | 9a524989d331f04abecd3faa72d98157a8651739 (diff) | |
parent | 463cb7c212e927a732fb5b702a288a06550c5eb8 (diff) |
Merge remote-tracking branch
Conflicts:
linux/b
linux/ws_main.py
linux_dpdk/ws_main.py
src/bp_sim.h
Diffstat (limited to 'scripts/automation/trex_control_plane/examples')
-rwxr-xr-x | scripts/automation/trex_control_plane/examples/client_interactive_example.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/scripts/automation/trex_control_plane/examples/client_interactive_example.py b/scripts/automation/trex_control_plane/examples/client_interactive_example.py index e8d358a9..10735221 100755 --- a/scripts/automation/trex_control_plane/examples/client_interactive_example.py +++ b/scripts/automation/trex_control_plane/examples/client_interactive_example.py @@ -4,7 +4,7 @@ import trex_root_path from client.trex_client import * from common.trex_exceptions import * import cmd -from python_lib.termstyle import termstyle +import termstyle import os from argparse import ArgumentParser from pprint import pprint @@ -23,14 +23,13 @@ class InteractiveTRexClient(cmd.Cmd): cmd.Cmd.__init__(self) self.verbose = verbose_mode self.trex = CTRexClient(trex_host, max_history_size, trex_daemon_port = trex_port, verbose = verbose_mode) - self.DEFAULT_RUN_PARAMS = dict(c = 4, - m = 1.5, + self.DEFAULT_RUN_PARAMS = dict( m = 1.5, nc = True, p = True, d = 100, f = 'avl/sfr_delay_10_1g.yaml', l = 1000) - self.run_params = self.DEFAULT_RUN_PARAMS + self.run_params = dict(self.DEFAULT_RUN_PARAMS) self.decoder = json.JSONDecoder() @@ -112,7 +111,7 @@ class InteractiveTRexClient(cmd.Cmd): def do_restore_run_default (self, line): """Restores original T-Rex running configuration""" - self.run_params = self.DEFAULT_RUN_PARAMS + self.run_params = dict(self.DEFAULT_RUN_PARAMS) print termstyle.green("*** End of restoring default run parameters ***") def do_run_until_finish (self, sample_rate): |