Hash :
926d1cea
Author :
Date :
2021-02-01T11:21:23
testing: Add dEQP test merge script. This script will allow ANGLE to process custom logic when we complete a suite of dEQP tests on the bots. The first customization step we can do is merge the myriad batch QPA files into one master QPA file. This script is currently a no-op and will let us set up the merge step so we can test the logic pre-commit. Bug: angleproject:5236 Change-Id: I38d0e359ff7fc6f6f91b5193387c13ff0fc77aa6 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2664247 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Yuly Novikov <ynovikov@chromium.org>
#!/usr/bin/env python
#
# Copyright 2021 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.
""" Merges dEQP sharded test results in the ANGLE testing infrastucture."""
import os
import sys
d = os.path.dirname
THIS_DIR = d(os.path.abspath(__file__))
ANGLE_SRC_DIR = d(THIS_DIR)
sys.path.insert(0, os.path.join(ANGLE_SRC_DIR, 'testing', 'merge_scripts'))
CHROMIUM_SRC_DIR = d(d(ANGLE_SRC_DIR))
sys.path.insert(0, os.path.join(CHROMIUM_SRC_DIR, 'testing', 'merge_scripts'))
import merge_api
import standard_isolated_script_merge
def main(raw_args):
parser = merge_api.ArgumentParser()
args = parser.parse_args(raw_args)
# TODO(jmadill): Merge QPA files into one. http://anglebug.com/5236
return standard_isolated_script_merge.StandardIsolatedScriptMerge(
args.output_json, args.summary_json, args.jsons_to_merge)
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))