diff options
Diffstat (limited to 'GPL')
-rw-r--r-- | GPL/tools/trex/trex_astf_profile.py | 5 | ||||
-rw-r--r-- | GPL/tools/trex/trex_astf_stop.py | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/GPL/tools/trex/trex_astf_profile.py b/GPL/tools/trex/trex_astf_profile.py index 936a8df436..a4f03bee3a 100644 --- a/GPL/tools/trex/trex_astf_profile.py +++ b/GPL/tools/trex/trex_astf_profile.py @@ -220,8 +220,7 @@ def simple_burst( for warning in client.get_warnings(): print(warning) - # Now finish the complete reset. - client.reset() + # No profile cleanup here, reset will be done in the finally block. print(u"##### Statistics #####") print(json.dumps(stats, indent=4, separators=(u",", u": "))) @@ -385,7 +384,7 @@ def simple_burst( if async_start: client.disconnect(stop_traffic=False, release_ports=True) else: - client.clear_profile() + client.reset() client.disconnect() print( f"multiplier={multiplier!r}; " diff --git a/GPL/tools/trex/trex_astf_stop.py b/GPL/tools/trex/trex_astf_stop.py index 7291552631..9185478a55 100644 --- a/GPL/tools/trex/trex_astf_stop.py +++ b/GPL/tools/trex/trex_astf_stop.py @@ -84,7 +84,7 @@ def main(): # If TRexError happens, let the script fail with stack trace. finally: - client.clear_profile() + client.reset() client.disconnect() # TODO: check xstats format |