• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env python3
2#
3# Copyright 2017, The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9#     http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# --run-test : To run run-test
18# --gtest : To run gtest
19# -j : Number of jobs
20# --host: for host tests
21# --target: for target tests
22# All the other arguments will be passed to the run-test testrunner.
23import sys
24import subprocess
25import os
26import argparse
27
28ANDROID_BUILD_TOP = os.environ.get('ANDROID_BUILD_TOP', os.getcwd())
29TEST_RUNNER = 'art/test/testrunner/testrunner.py'
30
31parser = argparse.ArgumentParser(
32    description='Test runner wrapper to run ART run tests. All unrecognised ' +
33    'arguments are passed on to ' + TEST_RUNNER + '.')
34parser.add_argument('-j', default='', dest='n_threads', help='specify number of concurrent tests')
35parser.add_argument('--run-test', '-r', action='store_true', dest='run_test', help='execute run tests')
36parser.add_argument('--gtest', '-g', action='store_true', dest='gtest', help='execute gtest tests')
37parser.add_argument('--target', action='store_true', dest='target', help='test on target system')
38parser.add_argument('--host', action='store_true', dest='host', help='test on build host system')
39parser.add_argument('--help-runner', action='store_true', dest='help_runner', help='show help for optional run test arguments')
40options, unknown = parser.parse_known_args()
41
42if options.run_test or options.help_runner or not options.gtest:
43  testrunner = os.path.join('./', ANDROID_BUILD_TOP, TEST_RUNNER)
44  run_test_args = []
45  for arg in sys.argv[1:]:
46    if arg == '--run-test' or arg == '--gtest' \
47    or arg == '-r' or arg == '-g':
48      continue
49    if arg == '--help-runner':
50      run_test_args = ['--help']
51      break
52    run_test_args.append(arg)
53
54  test_runner_cmd = [testrunner] + run_test_args
55  print(' '.join(test_runner_cmd))
56  if subprocess.call(test_runner_cmd) or options.help_runner:
57    sys.exit(1)
58
59if options.gtest or not options.run_test:
60  build_target = ''
61  if options.host or not options.target:
62    build_target += ' test-art-host-gtest'
63  if options.target or not options.host:
64    build_target += ' test-art-target-gtest'
65
66  build_command = ANDROID_BUILD_TOP + '/build/soong/soong_ui.bash --make-mode'
67  build_command += ' -j' + str(options.n_threads)
68  build_command += ' ' + build_target
69  print(build_command)
70  if subprocess.call(build_command.split(), cwd=ANDROID_BUILD_TOP):
71    sys.exit(1)
72
73sys.exit(0)
74