Skip to content
Snippets Groups Projects
Commit 01bedbdb authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

compare: make a note of suite-specific leakage

This is not actually too bad since it doesn't really affect anything aside
from the hg tests.
We should probably formalize VCS identifiers in a general way at some point.
parent a5eda479
No related branches found
No related tags found
2 merge requests!45Cleanups,!40clone git too
......@@ -143,6 +143,7 @@
for r in results:
key = get_value(compare_key, r)
if compare_key[-1] == "node":
# XXX leak of suite-specific logic
key = key[:12]
times = r["result"]["time"]
if key == reference_key and value_type in times:
......@@ -158,6 +159,7 @@
if key is not None:
used_compare_key = True
if compare_key[-1] == "node":
# XXX leak of suite-specific logic
key = key[:12]
times = r["result"]["time"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment