Fix Travis oddity

This commit is contained in:
Geza Lore 2020-05-04 00:20:08 +01:00
parent 8afcd67a1f
commit fe708f045a
2 changed files with 10 additions and 2 deletions

View File

@ -10,8 +10,12 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
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(
verilator_flags2 => ['--cc --trace --trace-params -Wno-LITENDIAN'],
verilator_flags2 => ['--cc --trace --trace-params -Wno-LITENDIAN',
($Self->{vltmt} ? '--threads 6' : '')],
);
execute(

View File

@ -12,8 +12,12 @@ scenarios(simulator => 1);
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(
verilator_flags2 => ['--cc --trace-fst --trace-params -Wno-LITENDIAN'],
verilator_flags2 => ['--cc --trace-fst --trace-params -Wno-LITENDIAN',
($Self->{vltmt} ? '--threads 6' : '')],
);
execute(