Fix Travis oddity
This commit is contained in:
parent
8afcd67a1f
commit
fe708f045a
|
|
@ -10,8 +10,12 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||||
|
|
||||||
scenarios(simulator => 1);
|
scenarios(simulator => 1);
|
||||||
|
|
||||||
|
# Travis environment offers 2 VCPUs, 2 thread setting causes the following warning.
|
||||||
|
# %Warning-UNOPTTHREADS: Thread scheduler is unable to provide requested parallelism; consider asking for fewer threads.
|
||||||
|
# Strangely, asking for more threads makes it go away.
|
||||||
compile(
|
compile(
|
||||||
verilator_flags2 => ['--cc --trace --trace-params -Wno-LITENDIAN'],
|
verilator_flags2 => ['--cc --trace --trace-params -Wno-LITENDIAN',
|
||||||
|
($Self->{vltmt} ? '--threads 6' : '')],
|
||||||
);
|
);
|
||||||
|
|
||||||
execute(
|
execute(
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,12 @@ scenarios(simulator => 1);
|
||||||
|
|
||||||
top_filename("t/t_trace_litendian.v");
|
top_filename("t/t_trace_litendian.v");
|
||||||
|
|
||||||
|
# Travis environment offers 2 VCPUs, 2 thread setting causes the following warning.
|
||||||
|
# %Warning-UNOPTTHREADS: Thread scheduler is unable to provide requested parallelism; consider asking for fewer threads.
|
||||||
|
# Strangely, asking for more threads makes it go away.
|
||||||
compile(
|
compile(
|
||||||
verilator_flags2 => ['--cc --trace-fst --trace-params -Wno-LITENDIAN'],
|
verilator_flags2 => ['--cc --trace-fst --trace-params -Wno-LITENDIAN',
|
||||||
|
($Self->{vltmt} ? '--threads 6' : '')],
|
||||||
);
|
);
|
||||||
|
|
||||||
execute(
|
execute(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue