blob: 99749790ddc05d2e0467a620f590ad1b86432382 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2025 The Dawn & Tint Authors
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""Runs the Tint fuzzer corpus tests.
This script is necessary in order to support running tests on Swarming, but it
is effectively a thin wrapper around the underlying tool in //tools/.
"""
import argparse
import json
import os
import subprocess
import sys
THIS_DIR = os.path.realpath(os.path.dirname(__file__))
DAWN_ROOT = os.path.realpath(os.path.join(THIS_DIR, '..'))
TOOLS_DIR = os.path.join(DAWN_ROOT, 'tools')
def run_fuzzer_corpus_tests(
args_to_forward: list[str],
append_cwd_as_build: bool) -> subprocess.CompletedProcess:
cmd = [
sys.executable,
os.path.join(TOOLS_DIR, 'run.py'),
'fuzz',
]
cmd.extend(args_to_forward)
if append_cwd_as_build:
cmd.extend([
'-build',
os.getcwd(),
])
return subprocess.run(cmd, check=False)
def generate_results_for_resultdb_ingestion(success: bool,
output_file: str) -> None:
# This is a very crude pass/fail result since the fuzz command does not
# have an option to output more complete information in a machine-readable
# format. If the information is ever provided, this should be changed to
# convert the information instead of generating it from scratch. If more
# than a pass/fail for a single test is needed, this should be replaced with
# native ResultDB integration instead of relying on result_adapter.
generated_test_results = {
'failures': [],
'valid': True,
}
if not success:
generated_test_results['failures'].append('tint_fuzzer_corpus_tests')
with open(output_file, 'w', encoding='utf-8') as outfile:
json.dump(generated_test_results, outfile)
def main() -> None:
parser = argparse.ArgumentParser(
description='Runs the Tint fuzzer corpus tests')
# Doing the opposite (passing in . for build and making other paths relative
# to it) doesn't work properly for the "fuzz" command. When checking IR,
# the .tirb files are not correctly generated due to the -input value not
# matching the default WGSL corpus directory.
parser.add_argument(
'--append-cwd-as-build',
action='store_true',
help=('Automatically appends the current directory as a -build '
'argument. Meant for use on bots.'))
parser.add_argument('--isolated-script-test-output',
help='Path to the location to output JSON results.')
parser.add_argument('--isolated-script-test-perf-output',
help='Currently unused, needed for bot support.')
parser.add_argument('--isolated-script-test-launcher-retry-limit',
help='Currently unused, needed for bot support.')
parser.add_argument('--isolated-script-test-repeat',
help='Currently unused, needed for bot support.')
parser.add_argument('--isolated-script-test-filter',
help='Currently unused, needed for bot support.')
args, unknown_args = parser.parse_known_args()
proc = run_fuzzer_corpus_tests(unknown_args, args.append_cwd_as_build)
if args.isolated_script_test_output:
generate_results_for_resultdb_ingestion(
not proc.returncode, args.isolated_script_test_output)
proc.check_returncode()
if __name__ == '__main__':
main()