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

Unified Diff: tools/valgrind/scan-build.py

Issue 2193923002: Update the remaining chromium references to memory.fyi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Created 4 years, 5 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/regrind.sh ('k') | tools/valgrind/waterfall.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/scan-build.py
diff --git a/tools/valgrind/scan-build.py b/tools/valgrind/scan-build.py
index b117d1ea58a8fa863dc5d297429aa70bedf9ec87..379416e57b391818a1291def1e72b27609064ee6 100755
--- a/tools/valgrind/scan-build.py
+++ b/tools/valgrind/scan-build.py
@@ -13,7 +13,7 @@ import urllib
import urllib2
# Where all the data lives.
-ROOT_URL = "http://build.chromium.org/p/chromium.memory.fyi/builders"
+ROOT_URL = "http://build.chromium.org/p/chromium.memory.full/builders"
# TODO(groby) - support multi-line search from the command line. Useful when
# scanning for classes of failures, see below.
@@ -199,22 +199,22 @@ def main(argv):
path = os.path.abspath(os.path.dirname(argv[0]))
cache_path = os.path.join(path, CACHE_DIR)
- fyi = Waterfall(ROOT_URL, cache_path)
+ full = Waterfall(ROOT_URL, cache_path)
if args.update:
- fyi.Update()
- for builder in fyi.Builders():
+ full.Update()
+ for builder in full.Builders():
print "Updating", builder.Name()
builder.ScanLogs(lambda x:False)
if args.find:
result = []
tester = MultiLineChange(args.find.splitlines())
- fyi.FetchInfo()
+ full.FetchInfo()
if not args.json:
print "SCANNING FOR ", args.find
- for builder in fyi.Builders():
+ for builder in full.Builders():
if not args.json:
print "Scanning", builder.Name()
occurrences = builder.ScanLogs(tester)
@@ -243,4 +243,3 @@ def main(argv):
if __name__ == "__main__":
sys.exit(main(sys.argv))
-
« no previous file with comments | « tools/valgrind/regrind.sh ('k') | tools/valgrind/waterfall.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698