| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2016 The Chromium Authors. All rights reserved. | 2 # Copyright 2016 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 """This script runs unit tests of the code in the perf directory. | 6 """This script runs unit tests of the code in the perf directory. |
| 7 | 7 |
| 8 This script DOES NOT run benchmarks. run_benchmark does that. | 8 This script DOES NOT run benchmarks. run_benchmark does that. |
| 9 """ | 9 """ |
| 10 | 10 |
| 11 import os | 11 import os |
| 12 import subprocess | 12 import subprocess |
| 13 import sys | 13 import sys |
| 14 | 14 |
| 15 from chrome_telemetry_build import chromium_config | 15 from chrome_telemetry_build import chromium_config |
| 16 from core import path_util |
| 17 path_util.AddTelemetryToPath() |
| 16 | 18 |
| 17 | |
| 18 sys.path.append(chromium_config.GetTelemetryDir()) | |
| 19 from telemetry.testing import unittest_runner | 19 from telemetry.testing import unittest_runner |
| 20 | 20 |
| 21 | 21 |
| 22 def main(): | 22 def main(): |
| 23 telemetry_test_config = os.path.join( | 23 telemetry_test_config = os.path.join( |
| 24 chromium_config.GetTelemetryDir(), 'telemetry', | 24 path_util.GetTelemetryDir(), 'telemetry', |
| 25 'telemetry_unittest_deps.json') | 25 'telemetry_unittest_deps.json') |
| 26 project_config = chromium_config.ChromiumConfig( | 26 project_config = chromium_config.ChromiumConfig( |
| 27 top_level_dir=chromium_config.GetTelemetryDir(), | 27 top_level_dir=path_util.GetTelemetryDir(), |
| 28 client_configs=[chromium_config.CLIENT_CONFIG_PATH, telemetry_test_config] | 28 client_configs=[chromium_config.CLIENT_CONFIG_PATH, telemetry_test_config] |
| 29 ) | 29 ) |
| 30 return unittest_runner.Run( | 30 return unittest_runner.Run( |
| 31 project_config, disable_cloud_storage_io_during_test=True) | 31 project_config, disable_cloud_storage_io_during_test=True) |
| 32 | 32 |
| 33 if __name__ == '__main__': | 33 if __name__ == '__main__': |
| 34 sys.exit(main()) | 34 sys.exit(main()) |
| OLD | NEW |