When I use chiselMainTest with --test option, I get None.get from below code because Driver.backendVar doesn't set.
This PR is to fix that bug as following code modifications.
change variable accessibility in Driver.
Driver.backendVar can't access from outside Driver object, so add [iotesters].
add code to set Driver.backendVar in chiselMain.apply method.
When I use
chiselMainTest
with--test
option, I get None.get from below code because Driver.backendVar doesn't set. This PR is to fix that bug as following code modifications.Driver.backendVar
can't access from outside Driver object, so add[iotesters]
.Driver.backendVar
inchiselMain.apply
method.chiselMainTest
.