summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/resulttool/regression.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/lib/resulttool/regression.py b/scripts/lib/resulttool/regression.py
index ad377c596b..d7f0b16ca9 100644
--- a/scripts/lib/resulttool/regression.py
+++ b/scripts/lib/resulttool/regression.py
@@ -219,6 +219,12 @@ def fixup_ptest_names(results, logger):
219 new = test.split("_-_")[0] 219 new = test.split("_-_")[0]
220 elif test.startswith(("ptestresult.curl.")) and "__" in test: 220 elif test.startswith(("ptestresult.curl.")) and "__" in test:
221 new = test.split("__")[0] 221 new = test.split("__")[0]
222 elif test.startswith(("ptestresult.dbus.")) and "__" in test:
223 new = test.split("__")[0]
224 elif test.startswith("ptestresult.binutils") and "build-st-" in test:
225 new = test.split(" ")[0]
226 elif test.startswith("ptestresult.gcc") and "/tmp/runtest." in test:
227 new = ".".join(test.split(".")[:2])
222 if new: 228 if new:
223 results[r][i]['result'][new] = results[r][i]['result'][test] 229 results[r][i]['result'][new] = results[r][i]['result'][test]
224 del results[r][i]['result'][test] 230 del results[r][i]['result'][test]