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

Unified Diff: testing/scripts/run_under_valgrind.py

Issue 2062813002: Remove some scripts that were used by the valgrind bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebsae Created 3 years, 6 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 | « no previous file | tools/valgrind/chrome_tests.bat » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/scripts/run_under_valgrind.py
diff --git a/testing/scripts/run_under_valgrind.py b/testing/scripts/run_under_valgrind.py
deleted file mode 100755
index 789aa556df27aa8ef685ef5049c3fa4f47f68239..0000000000000000000000000000000000000000
--- a/testing/scripts/run_under_valgrind.py
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import json
-import os
-import sys
-
-
-import common
-
-
-def main_run(args):
- rc = common.run_runtest(args, [
- os.path.join(common.SRC_DIR, 'tools', 'valgrind', 'chrome_tests.sh'),
- '--tool', 'memcheck',
- '--build-dir', os.path.join(common.SRC_DIR, 'out', args.build_config_fs),
- ] + args.args)
-
- json.dump({
- 'valid': True,
- 'failures': ['failed'] if rc else []
- }, args.output)
-
- return rc
-
-
-def main_compile_targets(args):
- json.dump(['$name'], args.output)
-
-
-if __name__ == '__main__':
- funcs = {
- 'run': main_run,
- 'compile_targets': main_compile_targets,
- }
- sys.exit(common.run_script(sys.argv[1:], funcs))
« no previous file with comments | « no previous file | tools/valgrind/chrome_tests.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698