From 8859f3b1b81bf2a980a319551300b127be9a0f45 Mon Sep 17 00:00:00 2001 From: Dino Simeon Madarang Date: Fri, 19 Jun 2015 19:45:08 +0100 Subject: Port RFC2544.BackToBackFrames test to vsperf Add RFC2544.BackToBackFrames test and fix pylint errors. Remove irrelevant values of back to back test results. JIRA: VSPERF-46 Change-Id: I7a0dfd9494b509c3be7bffc0678228838d3059a1 Signed-off-by: Dino Simeon Madarang Reviewed-by: Billy O Mahony Reviewed-by: Meghan Halton Reviewed-by: Maryam Tahhan Reviewed-by: Radek Zetik Reviewed-by: Martin Klozik Reviewed-by: Eugene Snider Reviewed-by: Gurpreet Singh Reviewed-by: Tv Rao --- core/traffic_controller_rfc2544.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'core/traffic_controller_rfc2544.py') diff --git a/core/traffic_controller_rfc2544.py b/core/traffic_controller_rfc2544.py index 003307bf..bcea9568 100644 --- a/core/traffic_controller_rfc2544.py +++ b/core/traffic_controller_rfc2544.py @@ -82,10 +82,15 @@ class TrafficControllerRFC2544(ITrafficController, IResults): for packet_size in self._packet_sizes: traffic['l2'] = {'framesize': packet_size} - result = self._traffic_gen_class.send_rfc2544_throughput( - traffic, - trials=int(self._trials), - duration=int(get_test_param('rfc2544_duration', 20))) + if traffic['traffic_type'] == 'back2back': + result = self._traffic_gen_class.send_rfc2544_back2back( + traffic, trials=int(self._trials), + duration=int(get_test_param('rfc2544_duration', 20))) + else: + result = self._traffic_gen_class.send_rfc2544_throughput( + traffic, trials=int(self._trials), + duration=int(get_test_param('rfc2544_duration', 20))) + result = TrafficControllerRFC2544._append_results(result, packet_size) self._results.append(result) -- cgit 1.2.3-korg