Merge pull request #162 from antmicro/jboc/benchmark

Benchmarks: fix with_uart parameter
This commit is contained in:
enjoy-digital 2020-03-13 18:09:28 +01:00 committed by GitHub
commit 4cfbc71fc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -235,6 +235,8 @@ def main():
sim_config.add_module("serial2console", "serial")
# Configuration --------------------------------------------------------------------------------
soc_kwargs["with_uart"] = False
soc_kwargs["sdram_module"] = args.sdram_module
soc_kwargs["sdram_data_width"] = int(args.sdram_data_width)
soc_kwargs["sdram_verbosity"] = int(args.sdram_verbosity)

View File

@ -664,6 +664,10 @@ def main(argv=None):
transparent=args.plot_transparent,
)
# exit with error when there is no single benchmark that succeeded
succeeded = sum(1 if d.result is not None else 0 for d in run_data)
if succeeded == 0:
sys.exit(1)
if __name__ == "__main__":
main()