Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Unified Diff: tools/valgrind/valgrind_test.py

Issue 1736026: Change PYTHONPATH handling in tools/valgrind so we can un-revert http://coder... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/valgrind/chrome_tests.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/valgrind_test.py
===================================================================
--- tools/valgrind/valgrind_test.py (revision 46040)
+++ tools/valgrind/valgrind_test.py (working copy)
@@ -26,7 +26,7 @@
import memcheck_analyze
import tsan_analyze
-import google.logging_utils
+import logging_utils
class ValgrindTool(object):
@@ -564,9 +564,9 @@
if __name__ == "__main__":
if sys.argv.count("-v") > 0 or sys.argv.count("--verbose") > 0:
- google.logging_utils.config_root(logging.DEBUG)
+ logging_utils.config_root(logging.DEBUG)
else:
- google.logging_utils.config_root()
+ logging_utils.config_root()
# TODO(timurrrr): valgrind tools may use -v/--verbose as well
ret = RunTool(sys.argv)
« no previous file with comments | « tools/valgrind/chrome_tests.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698