You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To interface to an existing test-system, I would like to launch a test from the command line hundreds of times by passing different test-input vector files on the command line.
E.g. given the input data in the "test.txt" file, I'd like to execute a test given:
$ sbt "test:runMain testmain test.txt"
The code below skips Verilator compilation(which is slow), but still performs design elaboration:
Driver.run(() => new system(),
"Vsystem")(c =>
new system_Tests(c, args(0)))
The text was updated successfully, but these errors were encountered:
To interface to an existing test-system, I would like to launch a test from the command line hundreds of times by passing different test-input vector files on the command line.
E.g. given the input data in the "test.txt" file, I'd like to execute a test given:
$ sbt "test:runMain testmain test.txt"
The code below skips Verilator compilation(which is slow), but still performs design elaboration:
The text was updated successfully, but these errors were encountered: