Tests: Add VERILATOR_MAKE override variable.
This commit is contained in:
parent
14b48140bd
commit
d3e1dfd3f5
|
|
@ -187,8 +187,9 @@ sub one_test {
|
||||||
} else {
|
} else {
|
||||||
$test->oprint("FAILED: ","*"x60,"\n");
|
$test->oprint("FAILED: ","*"x60,"\n");
|
||||||
my $j = ($opt_jobs>1?" -j":"");
|
my $j = ($opt_jobs>1?" -j":"");
|
||||||
push @fails, ("\t#".$test->soprint("%Error: $test->{errors}\n")
|
my $makecmd = $ENV{VERILATOR_MAKE} || "make$j &&";
|
||||||
."\t\tmake$j && test_regress/"
|
push @fails, ("\t#".$test->soprint("%Error: $test->{errors}\n")
|
||||||
|
."\t\t$makecmd test_regress/"
|
||||||
.$test->{pl_filename}
|
.$test->{pl_filename}
|
||||||
." ".join(' ', _args_scenario())
|
." ".join(' ', _args_scenario())
|
||||||
." --".$test->{scenario}."\n");
|
." --".$test->{scenario}."\n");
|
||||||
|
|
@ -2143,6 +2144,10 @@ Command to use to invoke GHDL.
|
||||||
|
|
||||||
Command to use to invoke Icarus Verilog.
|
Command to use to invoke Icarus Verilog.
|
||||||
|
|
||||||
|
=item VERILATOR_MAKE
|
||||||
|
|
||||||
|
Command to use to rebuild Verilator and run single test. Defaults to "make &&".
|
||||||
|
|
||||||
=item VERILATOR_MODELSIM
|
=item VERILATOR_MODELSIM
|
||||||
|
|
||||||
Command to use to invoke ModelSim.
|
Command to use to invoke ModelSim.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue