summaryrefslogtreecommitdiffstats
path: root/tools/valgrind/chrome_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/valgrind/chrome_tests.py')
-rwxr-xr-xtools/valgrind/chrome_tests.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index f0e4e3f..de1dda4 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -94,7 +94,11 @@ class ChromeTests:
self._data_dirs.append(os.path.join(module_dir, "data", "valgrind"))
if not self._options.build_dir:
- dir_chrome = os.path.join(self._source_dir, "sconsbuild", "Debug")
+ builddir = {
+ 'darwin': 'xcodebuild',
+ 'linux2': 'sconsbuild'
+ }[sys.platform]
+ dir_chrome = os.path.join(self._source_dir, builddir, "Debug")
dir_module = os.path.join(module_dir, "Debug")
if exe:
exe_chrome = os.path.join(dir_chrome, exe)