diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 4 | ||||
-rwxr-xr-x | tools/valgrind/valgrind.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index a21e0ec..2c024c1 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -92,8 +92,8 @@ 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, "chrome", "Hammer") - dir_module = os.path.join(module_dir, "Hammer") + dir_chrome = os.path.join(self._source_dir, "sconsbuild", "Debug") + dir_module = os.path.join(module_dir, "Debug") if exe: exe_chrome = os.path.join(dir_chrome, exe) exe_module = os.path.join(dir_module, exe) diff --git a/tools/valgrind/valgrind.sh b/tools/valgrind/valgrind.sh index 08bc480..0170038 100755 --- a/tools/valgrind/valgrind.sh +++ b/tools/valgrind/valgrind.sh @@ -6,7 +6,7 @@ # This is a small script for manually launching valgrind, along with passing # it the suppression file, and some helpful arguments (automatically attaching # the debugger on failures, etc). Run it from your repo root, something like: -# $ sh ./tools/valgrind/valgrind.sh ./chrome/Hammer/chrome +# $ sh ./tools/valgrind/valgrind.sh ./sconsbuild/Debug/chrome # # This is mostly intended for running the chrome browser interactively. # To run unit tests, you probably want to run chrome_tests.sh instead. |