diff options
author | qyearsley@chromium.org <qyearsley@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-30 08:00:42 +0000 |
---|---|---|
committer | qyearsley@chromium.org <qyearsley@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-30 08:00:42 +0000 |
commit | 5dcad27e9ad91ad1c76f6d8afe066f13d77fbcb6 (patch) | |
tree | e8b2ee28ba0c7afaf76a83c582948280bdbfc1a4 /tools/run-bisect-perf-regression.py | |
parent | f1d228e18ed98c9eab8d1e10a99c4f266819cd78 (diff) | |
download | chromium_src-5dcad27e9ad91ad1c76f6d8afe066f13d77fbcb6.zip chromium_src-5dcad27e9ad91ad1c76f6d8afe066f13d77fbcb6.tar.gz chromium_src-5dcad27e9ad91ad1c76f6d8afe066f13d77fbcb6.tar.bz2 |
Use Welch's t-test to calculate confidence scores in the bisect script.
BUG=383864
Review URL: https://codereview.chromium.org/413393002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/run-bisect-perf-regression.py')
-rwxr-xr-x | tools/run-bisect-perf-regression.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/run-bisect-perf-regression.py b/tools/run-bisect-perf-regression.py index b5076bb..e5621cb 100755 --- a/tools/run-bisect-perf-regression.py +++ b/tools/run-bisect-perf-regression.py @@ -91,10 +91,9 @@ class Goma(object): subprocess.call([self._abs_path_to_goma_file, 'stop']) -def _LoadConfigFile(config_file_path): - """Loads the given file as a python module and returns the config dictionary. - - The config file is loaded as a Python module. +def _LoadConfigFile(path_to_file): + """Attempts to load the specified config file as a module + and grab the global config dict. Args: config_file_path: Path to the config file. |