diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-06 17:51:20 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-12-12 02:25:33 -0500 |
commit | e6e1ec08e79950c8cadd1f7a2e01292d6142fbfc (patch) | |
tree | db0a38bf73677de29b0c36a084ff15b4b4728a80 /testsuite/driver/my_typing.py | |
parent | 4dde485eddacc7a38c47ff1054234e2896c214d8 (diff) | |
download | haskell-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.py | 4 |
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) |