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

Unified Diff: list_test_cases.py

Issue 19917006: Move all googletest related scripts into googletest/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/swarm_client
Patch Set: Remove unnecessary pylint warning disable Created 7 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 | « isolate_test_cases.py ('k') | run_test_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: list_test_cases.py
diff --git a/list_test_cases.py b/list_test_cases.py
deleted file mode 100755
index c00c46a2e5b82cd4b301a21d8f82d640b0adf275..0000000000000000000000000000000000000000
--- a/list_test_cases.py
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2012 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.
-
-"""List all the test cases for a google test.
-
-See more info at http://code.google.com/p/googletest/.
-"""
-
-import os
-import sys
-
-import run_test_cases
-
-
-def main():
- """CLI frontend to validate arguments."""
- run_test_cases.run_isolated.disable_buffering()
- parser = run_test_cases.OptionParserWithTestShardingAndFiltering(
- usage='%prog <options> [gtest]')
- options, args = parser.parse_args()
- if not args:
- parser.error('Please provide the executable to run')
-
- cmd = run_test_cases.fix_python_path(args)
- try:
- tests = run_test_cases.list_test_cases(
- cmd,
- os.getcwd(),
- index=options.index,
- shards=options.shards,
- disabled=options.disabled,
- fails=options.fails,
- flaky=options.flaky,
- pre=False,
- manual=options.manual,
- seed=0)
- for test in tests:
- print test
- except run_test_cases.Failure, e:
- print e.args[0]
- return e.args[1]
- return 0
-
-
-if __name__ == '__main__':
- sys.exit(main())
« no previous file with comments | « isolate_test_cases.py ('k') | run_test_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698