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

Side by Side Diff: tracing/bin/run_py_tests

Issue 2725913002: [Catapult][Telemetry] Move trace_data from telemetry/ to tracing/ (Closed)
Patch Set: Move from common to tracing Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | tracing/tracing/trace_data/trace_data.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
charliea (OOO until 10-5) 2017/03/03 22:03:54 Were trace_data and the unittest deleted from Tele
rnephew (Reviews Here) 2017/03/03 22:06:49 No. I will have a follow up CL that moves telemetr
2 # Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import os 6 import os
7 import platform 7 import platform
8 import sys 8 import sys
9 9
10 _CATAPULT_PATH = os.path.abspath( 10 _CATAPULT_PATH = os.path.abspath(
11 os.path.join( 11 os.path.join(
(...skipping 19 matching lines...) Expand all
31 31
32 from hooks import install 32 from hooks import install
33 if '--no-install-hooks' in sys.argv: 33 if '--no-install-hooks' in sys.argv:
34 sys.argv.remove('--no-install-hooks') 34 sys.argv.remove('--no-install-hooks')
35 else: 35 else:
36 install.InstallHooks() 36 install.InstallHooks()
37 37
38 from catapult_build import run_with_typ 38 from catapult_build import run_with_typ
39 _RunTestsOrDie(os.path.join(_TRACING_PATH, 'tracing')) 39 _RunTestsOrDie(os.path.join(_TRACING_PATH, 'tracing'))
40 _RunTestsOrDie(os.path.join(_TRACING_PATH, 'tracing_build')) 40 _RunTestsOrDie(os.path.join(_TRACING_PATH, 'tracing_build'))
41 _RunTestsOrDie(os.path.join(_TRACING_PATH, 'tracing', 'trace_data'))
41 sys.exit(0) 42 sys.exit(0)
OLDNEW
« no previous file with comments | « no previous file | tracing/tracing/trace_data/trace_data.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698