summaryrefslogtreecommitdiff
path: root/testsuite/driver/runtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/driver/runtests.py')
-rw-r--r--testsuite/driver/runtests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py
index 219fb41001..6858715c7a 100644
--- a/testsuite/driver/runtests.py
+++ b/testsuite/driver/runtests.py
@@ -309,10 +309,11 @@ print('Compile ways: ' + ', '.join(config.compile_ways))
# Try get allowed performance changes from the git commit.
try:
- config.allowed_perf_changes = Perf.get_allowed_perf_changes()
+ config.allowed_perf_changes = Perf.get_allowed_changes(config.baseline_commit)
except subprocess.CalledProcessError:
print('Failed to get allowed metric changes from the HEAD git commit message.')
+
print('Allowing performance changes in: ' + ', '.join(config.allowed_perf_changes.keys()))
# -----------------------------------------------------------------------------