aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--resources/tools/presentation/input_data_parser.py8
-rw-r--r--tests/__init__.robot4
2 files changed, 8 insertions, 4 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py
index 340b7dc372..a35a454aa2 100644
--- a/resources/tools/presentation/input_data_parser.py
+++ b/resources/tools/presentation/input_data_parser.py
@@ -765,8 +765,12 @@ class ExecutionChecker(ResultVisitor):
items_str = groups.group(1)
items_float = [float(item.strip()) for item
in items_str.split(",")]
- test_result["result"]["receive-rate"] = \
- AvgStdevMetadataFactory.from_data(items_float)
+ metadata = AvgStdevMetadataFactory.from_data(items_float)
+ # Next two lines have been introduced in CSIT-1179,
+ # to be removed in CSIT-1180.
+ metadata.size = 1
+ metadata.stdev = 0.0
+ test_result["result"]["receive-rate"] = metadata
else:
groups = re.search(self.REGEX_MRR, test.message)
test_result["result"]["receive-rate"] = \
diff --git a/tests/__init__.robot b/tests/__init__.robot
index 106270f478..61301b4ec2 100644
--- a/tests/__init__.robot
+++ b/tests/__init__.robot
@@ -27,5 +27,5 @@
| | ... | perf_trial_multiplicity - Number of trials to execute in MRR test.
| | ... | perf_trial_duration - Duration of one trial in MRR test.
| | ...
-| | Ensure Global Variable | perf_trial_multiplicity | 1
-| | Ensure Global Variable | perf_trial_duration | 10
+| | Ensure Global Variable | perf_trial_multiplicity | 10
+| | Ensure Global Variable | perf_trial_duration | 1