Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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) |
| OLD | NEW |