forked from XS-MLVP/UnityChipForXiangShan
78 lines
3.1 KiB
Python
78 lines
3.1 KiB
Python
#coding=utf8
|
|
#***************************************************************************************
|
|
# This project is licensed under Mulan PSL v2.
|
|
# You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
# You may obtain a copy of Mulan PSL v2 at:
|
|
# http://license.coscl.org.cn/MulanPSL2
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
#
|
|
# See the Mulan PSL v2 for more details.
|
|
#**************************************************************************************/
|
|
|
|
|
|
import os
|
|
import argparse
|
|
import pytest
|
|
from comm import init_cfg, cfg_as_str, get_rtl_lnk_version, error, build_dut
|
|
from comm import download_rtl, get_rtl_dir, init_log, init, new_report_name, process_doc_result
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser(description="Run pytest")
|
|
parser.add_argument("--config", type=str, help="config file", default=None)
|
|
parser.add_argument("-b", "--build", type=str, help="duts to buld, eg: -b dut1,dut2; -b dut*", default="")
|
|
parser.add_argument("--download-rtl", action="store_true", help="only download rtl")
|
|
args, append_args = parser.parse_known_args()
|
|
cfg_value = []
|
|
for a in append_args.copy():
|
|
key = append_args.pop(0)
|
|
if "=" in key:
|
|
cfg_value.append(key)
|
|
if a.startswith("--"):
|
|
break
|
|
if args.config:
|
|
if not os.path.exists(args.config):
|
|
error("config file not found: %s", args.config)
|
|
return
|
|
cfg = init_cfg(args.config, cfg_value)
|
|
init(cfg)
|
|
if args.download_rtl:
|
|
init_log(cfg)
|
|
download_rtl(cfg.rtl.base_url, get_rtl_dir(cfg=cfg), cfg.rtl.version)
|
|
return
|
|
cfg.unfreeze()
|
|
link_verison = get_rtl_lnk_version(cfg)
|
|
if cfg.rtl.version != "latest":
|
|
assert link_verison == cfg.rtl.version, f"RTL link version ({link_verison}) not equal to config version ({cfg.rtl.version})"
|
|
else:
|
|
cfg.rtl.version = link_verison # set current rtl version
|
|
report_dir, report_name = new_report_name(cfg)
|
|
cfg.report.report_name = report_name
|
|
cfg.freeze()
|
|
cfg_value = cfg_as_str(cfg)
|
|
if args.build:
|
|
init_log(cfg)
|
|
build_dut(args.build, cfg)
|
|
return
|
|
# set report args
|
|
append_args.extend(["--report-dir", report_dir, "--report-name", report_name, "--report-dump-json"])
|
|
# cache global config in pytest
|
|
pytest.global_unitychip_cfg = cfg_value
|
|
# set toffee config
|
|
pytest.toffee_tags_current_version = cfg.rtl.version
|
|
pytest.toffee_tags_skip_tags = cfg.test.skip_tags
|
|
pytest.toffee_tags_run_tags = cfg.test.run_tags
|
|
pytest.toffee_tags_skip_cases = cfg.test.skip_cases
|
|
pytest.toffee_tags_run_cases = cfg.test.run_cases
|
|
pytest.toffee_ignore_exceptions = cfg.test.skip_exceptions
|
|
pytest.toffee_report_information = cfg.report.information.as_dict()
|
|
pytest.main(append_args, plugins=[__import__(__name__)])
|
|
process_doc_result(report_dir, report_name, cfg)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|