| #! /usr/bin/env vpython3 |
| # |
| # Copyright 2023 The ANGLE Project Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| # |
| # angle_android_test_runner.py: |
| # Runs (a subset of) ANGLE tests on Android using android_helper |
| # instead of chromium test_runner scripts. This script is integrated into |
| # gn builds via the android_test_runner_script var, which creates wrappers |
| # (out/<config>/angle_trace_tests) calling into this script |
| # with additional args like --output-directory=out/<config> etc |
| |
| import argparse |
| import json |
| import logging |
| import os |
| import pathlib |
| import sys |
| |
| PY_UTILS = str(pathlib.Path(__file__).resolve().parent / 'py_utils') |
| if PY_UTILS not in sys.path: |
| os.stat(PY_UTILS) and sys.path.insert(0, PY_UTILS) |
| import android_helper |
| import angle_test_util |
| |
| |
| def AddCommonParserArgs(parser): |
| parser.add_argument( |
| '--suite', |
| help='Test suite to run.', |
| required=True, |
| choices=['angle_end2end_tests', 'angle_perftests', 'angle_trace_tests']) |
| parser.add_argument('-l', '--log', help='Logging level.', default='info') |
| parser.add_argument('--list-tests', help='List tests.', action='store_true') |
| parser.add_argument( |
| '-f', |
| '--filter', |
| '--isolated-script-test-filter', |
| '--gtest_filter', |
| type=str, |
| help='Test filter.') |
| |
| |
| def RunAndroidTestSuite(args, extra_args): |
| angle_test_util.SetupLogging(args.log.upper()) |
| |
| android_helper.Initialize(args.suite) |
| assert android_helper.IsAndroid() |
| |
| rc, output, _ = android_helper.RunTests( |
| args.suite, ['--list-tests', '--verbose'] + extra_args, log_output=False) |
| if rc != 0: |
| logging.fatal('Could not find test list from test output:\n%s' % output) |
| return rc |
| |
| tests = angle_test_util.GetTestsFromOutput(output) |
| if args.filter: |
| tests = angle_test_util.FilterTests(tests, args.filter) |
| |
| if args.list_tests: |
| print('\n'.join(['Tests list:'] + tests + ['End tests list.'])) |
| return 0 |
| |
| if args.suite == 'angle_trace_tests': |
| traces = set(android_helper.GetTraceFromTestName(test) for test in tests) |
| android_helper.PrepareRestrictedTraces(traces) |
| |
| if args.prepare_only: |
| print('Prepared traces: %s' % traces) |
| return 0 |
| |
| flags = ['--gtest_filter=' + args.filter] if args.filter else [] |
| return android_helper.RunTests(args.suite, flags + extra_args)[0] |
| |
| |
| def main(): |
| parser = argparse.ArgumentParser() |
| parser.add_argument('test_type', choices=['gtest']) |
| parser.add_argument('--output-directory', required=True) |
| parser.add_argument('--wrapper-script-args') |
| parser.add_argument('--runtime-deps-path') |
| parser.add_argument('--prepare-only', action='store_true') |
| AddCommonParserArgs(parser) |
| |
| args, extra_args = parser.parse_known_args() |
| |
| os.chdir(args.output_directory) |
| |
| return RunAndroidTestSuite(args, extra_args) |
| |
| |
| if __name__ == "__main__": |
| sys.exit(main()) |