summaryrefslogtreecommitdiff
path: root/testsuite/driver/my_typing.py
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-12-06 17:51:20 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-12-12 02:25:33 -0500
commite6e1ec08e79950c8cadd1f7a2e01292d6142fbfc (patch)
treedb0a38bf73677de29b0c36a084ff15b4b4728a80 /testsuite/driver/my_typing.py
parent4dde485eddacc7a38c47ff1054234e2896c214d8 (diff)
downloadhaskell-e6e1ec08e79950c8cadd1f7a2e01292d6142fbfc.tar.gz
testsuite: Simplify and clarify performance test baseline search
The previous implementation was extremely complicated, seemingly to allow the local and CI namespaces to be searched incrementally. However, it's quite unclear why this is needed and moreover the implementation seems to have had quadratic runtime cost in the search depth(!).
Diffstat (limited to 'testsuite/driver/my_typing.py')
-rw-r--r--testsuite/driver/my_typing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/driver/my_typing.py b/testsuite/driver/my_typing.py
index c3f3e02fe7..d3ca415f85 100644
--- a/testsuite/driver/my_typing.py
+++ b/testsuite/driver/my_typing.py
@@ -42,7 +42,7 @@ OutputNormalizer = Callable[[str], str]
IssueNumber = NewType("IssueNumber", int)
# Used by perf_notes
-GitHash = NewType("GitHash", str)
+GitHash = NewType("GitHash", str) # a Git commit hash
GitRef = NewType("GitRef", str)
TestEnv = NewType("TestEnv", str)
-MetricName = NewType("MetricName", str) \ No newline at end of file
+MetricName = NewType("MetricName", str)