1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
#!/usr/bin/env python3
# Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
'''
GFXReconstruct test script
'''
import argparse
import collections
import copy
import importlib
import os
import platform
import subprocess
import sys
def is_windows():
'''
Check if the system is Windows
'''
return 'windows' == platform.system().lower()
# Repository root directory
REPO_ROOT = os.path.abspath(os.path.join(
os.path.split(os.path.abspath(__file__))[0], '..'))
# List of tests to run when no test executable is passed to script
ALL_TESTS = collections.OrderedDict({
'gfxrecon_application_test': [],
'gfxrecon_decode_test': [],
'gfxrecon_encode_test': [],
'gfxrecon_format_test': [],
'gfxrecon_util_test': [],
'VkLayer_gfxreconstruct_test': [],
})
class TestError(Exception):
'''
Raised on a test error
'''
def import_build_script():
'''
Import the build script - reuse build script constants
'''
sys.path.insert(0, os.path.join(REPO_ROOT, 'scripts'))
build_script = importlib.import_module('build')
return build_script
def parse_args(build_script):
'''
Parse command line arguments
'''
arg_parser = argparse.ArgumentParser(
description="gfxreconstruct test script")
arg_parser.add_argument('--version', action='version',
version=str(build_script.VERSION),
help='Print script version and exit')
arg_parser.add_argument(
'--test-exe', default=None,
help='the name of a single internal test to run (one of: {}), or a '
'path to an external test to run. If not specified, all internal '
'tests are run.'.format(', '.join(ALL_TESTS)))
arg_parser.add_argument(
'--test-args', nargs='+',
help='Test arguments passed to the test executable')
arg_parser.add_argument(
'--build-dir', dest='build_dir', metavar='BUILD_DIR',
action='store', default=None)
arg_parser.add_argument(
'-a', '--arch', dest='architecture',
metavar='ARCH', action='store', choices=build_script.ARCHITECTURES,
default=build_script.DEFAULT_ARCHITECTURE,
help='Build target architecture. Can be one of: {0}'.format(
', '.join(build_script.ARCHITECTURES)))
arg_parser.add_argument(
'-c', '--config', dest='configuration',
metavar='CONFIG', action='store', choices=build_script.CONFIGURATIONS,
default=build_script.DEFAULT_CONFIGURATION,
help='Build target configuration. Can be one of: {0}'.format(
', '.join(build_script.CONFIGURATIONS)))
return arg_parser.parse_args()
def run_test(test_exe, test_args):
'''
Run a single test
The test working directory is based on the test relative path.
If the test executable is not found or the test fails an error is thrown.
'''
run_test_args = [test_exe]
if args.test_args is not None:
run_test_args.extend(args.test_args)
run_test_work_dir = os.path.split(os.path.abspath(test_exe))[0]
if '' == run_test_work_dir:
run_test_work_dir = os.getcwd()
try:
test_result = subprocess.run(run_test_args, cwd=run_test_work_dir)
if 0 != test_result.returncode:
raise TestError('Running test', ' '.join(
run_test_args), 'failed', ', working_dir:', run_test_work_dir)
except Exception:
raise TestError('Failed to run test', test_exe, ' '.join(
test_args), ', working_dir:', run_test_work_dir)
# Main entry point
if '__main__' == __name__:
build_script = import_build_script()
args = parse_args(build_script)
tests = []
if args.test_exe is None:
for test in ALL_TESTS.items():
test_exe_dir = args.build_dir
if test_exe_dir is None:
test_exe_dir = os.path.join(
build_script.BUILD_CONFIGS[args.configuration],
platform.system().lower(),
args.architecture,
'output',
'bin')
test_exe = os.path.join(test_exe_dir, test[0])
test_args = copy.deepcopy(test[1])
if args.test_args is not None:
test_args.extend(args.test_args)
tests.append((test_exe, test_args))
else:
tests = [(args.test_exe, args.test_args)]
for test_exe, test_args in tests:
run_test(test_exe, test_args)
sys.exit(0)
|