summaryrefslogtreecommitdiffstats
path: root/tools/run-bisect-perf-regression.py
diff options
context:
space:
mode:
authorqyearsley <qyearsley@chromium.org>2014-10-02 14:58:27 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-02 21:59:18 +0000
commit915e7279447abf3f0606fb8e5a3c05ea09b0c62c (patch)
treeb8e1b37779c9acc649d7731d1492470f906bd1ee /tools/run-bisect-perf-regression.py
parentc7a808cb0365ab7387206fd2fd44bf9681ca771a (diff)
downloadchromium_src-915e7279447abf3f0606fb8e5a3c05ea09b0c62c.zip
chromium_src-915e7279447abf3f0606fb8e5a3c05ea09b0c62c.tar.gz
chromium_src-915e7279447abf3f0606fb8e5a3c05ea09b0c62c.tar.bz2
Make config path an absolute path in run-bisect-perf-regression.py.
BUG=418979 Review URL: https://codereview.chromium.org/619333002 Cr-Commit-Position: refs/heads/master@{#297915}
Diffstat (limited to 'tools/run-bisect-perf-regression.py')
-rwxr-xr-xtools/run-bisect-perf-regression.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run-bisect-perf-regression.py b/tools/run-bisect-perf-regression.py
index d22842e..8525d2c 100755
--- a/tools/run-bisect-perf-regression.py
+++ b/tools/run-bisect-perf-regression.py
@@ -25,7 +25,7 @@ from auto_bisect import math_utils
CROS_BOARD_ENV = 'BISECT_CROS_BOARD'
CROS_IP_ENV = 'BISECT_CROS_IP'
-SCRIPT_DIR = os.path.dirname(__file__)
+SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
SRC_DIR = os.path.join(SCRIPT_DIR, os.path.pardir)
BISECT_CONFIG_PATH = os.path.join(SCRIPT_DIR, 'auto_bisect', 'bisect.cfg')
RUN_TEST_CONFIG_PATH = os.path.join(SCRIPT_DIR, 'run-perf-test.cfg')