run_cases.py --option gen_case doesn't work
by Moreno, Orlando
I'm trying to kick off each module as shown in Appendix 6.1 and run into an issue when trying to generate test cases for the benchmark.
As documented, I run:
cd benchmarking; python run_cases.py --option gen_case
And I get the following error:
Traceback (most recent call last):
File "run_cases.py", line 108, in <module>
main(sys.argv[1:])
File "run_cases.py", line 39, in main
benchmark_engine_config = benchmark.generate_benchmark_cases()
TypeError: generate_benchmark_cases() takes exactly 2 arguments (1 given)
Looking into run_cases.py, I see that the benchmark.generate_benchmark_cases() method is called with no arguments. Was there supposed to be a default testcase list passed into it or is this option not work yet?
Thanks
4 years, 12 months