Fix OpenBSD make in tests. (#2388)

This commit is contained in:
Michael Killough 2020-05-31 14:03:51 +01:00 committed by GitHub
parent 6318a08056
commit 047852eb08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 20 additions and 18 deletions

View File

@ -35,6 +35,7 @@ Maarten De Braekeleer
Maciej Sobkowski Maciej Sobkowski
Marco Widmer Marco Widmer
Matthew Ballance Matthew Ballance
Michael Killough
Mike Popoloski Mike Popoloski
Nathan Kohagen Nathan Kohagen
Nathan Myers Nathan Myers

View File

@ -9,6 +9,7 @@ BEGIN {
if (!$ENV{VERILATOR_ROOT} && -x "../bin/verilator") { if (!$ENV{VERILATOR_ROOT} && -x "../bin/verilator") {
$ENV{VERILATOR_ROOT} = Cwd::getcwd()."/.."; $ENV{VERILATOR_ROOT} = Cwd::getcwd()."/..";
} }
$ENV{MAKE} ||= "make"
} }
use Getopt::Long; use Getopt::Long;
@ -373,7 +374,7 @@ sub one_test {
} else { } else {
$test->oprint("FAILED: $test->{errors}\n"); $test->oprint("FAILED: $test->{errors}\n");
my $j = ($opt_jobs>1?" -j":""); my $j = ($opt_jobs>1?" -j":"");
my $makecmd = $ENV{VERILATOR_MAKE} || "make$j &&"; my $makecmd = $ENV{VERILATOR_MAKE} || "$ENV{MAKE}$j &&";
my $upperdir = (Cwd::getcwd() =~ /test_regress/ my $upperdir = (Cwd::getcwd() =~ /test_regress/
? 'test_regress/' : ''); ? 'test_regress/' : '');
push @{$self->{fail_msgs}}, push @{$self->{fail_msgs}},
@ -1127,7 +1128,7 @@ sub compile {
$self->oprint("Running make (gmake)\n") if $self->{verbose}; $self->oprint("Running make (gmake)\n") if $self->{verbose};
$self->_run(logfile => "$self->{obj_dir}/vlt_gcc.log", $self->_run(logfile => "$self->{obj_dir}/vlt_gcc.log",
entering => "$self->{obj_dir}", entering => "$self->{obj_dir}",
cmd => ["make", cmd => [$ENV{MAKE},
"-C ".$self->{obj_dir}, "-C ".$self->{obj_dir},
"-f ".$::RealBin."/Makefile_obj", "-f ".$::RealBin."/Makefile_obj",
($self->{verbose} ? "" : "--no-print-directory"), ($self->{verbose} ? "" : "--no-print-directory"),
@ -1425,7 +1426,7 @@ sub have_sc {
} }
sub make_version { sub make_version {
my $ver = `make --version`; my $ver = `$ENV{MAKE} --version`;
if ($ver =~ /make ([0-9]+\.[0-9]+)/i) { if ($ver =~ /make ([0-9]+\.[0-9]+)/i) {
return $1; return $1;
} else { } else {
@ -2231,13 +2232,13 @@ sub _vcd_read {
our $_Cxx_Version; our $_Cxx_Version;
sub cxx_version { sub cxx_version {
$_Cxx_Version ||= `make -C $ENV{VERILATOR_ROOT}/test_regress -f Makefile print-cxx-version`; $_Cxx_Version ||= `$ENV{MAKE} -C $ENV{VERILATOR_ROOT}/test_regress -f Makefile print-cxx-version`;
return $_Cxx_Version; return $_Cxx_Version;
} }
our $_Cfg_With_Threaded; our $_Cfg_With_Threaded;
sub cfg_with_threaded { sub cfg_with_threaded {
$_Cfg_With_Threaded ||= `make -C $ENV{VERILATOR_ROOT} -f Makefile print-cfg-with-threaded`; $_Cfg_With_Threaded ||= `$ENV{MAKE} -C $ENV{VERILATOR_ROOT} -f Makefile print-cfg-with-threaded`;
return ($_Cfg_With_Threaded =~ /yes/i) ? 1:0; return ($_Cfg_With_Threaded =~ /yes/i) ? 1:0;
} }

View File

@ -14,7 +14,7 @@ $Self->{clean_command} = 'rm -rf ../examples/*/build ../examples/*/obj*';
my @examples = sort(glob("../examples/*")); my @examples = sort(glob("../examples/*"));
for my $example (@examples) { for my $example (@examples) {
run(cmd=>["make -C $example"]); run(cmd=>["$ENV{MAKE} -C $example"]);
} }
ok(1); ok(1);

View File

@ -25,7 +25,7 @@ if (!-r "$root/.git") {
check_finished => 0); check_finished => 0);
# Install into temp area # Install into temp area
print "Install...\n"; print "Install...\n";
run(cmd => ["cd $root && make DESTDIR=$destdir install-all"], run(cmd => ["cd $root && $ENV{MAKE} DESTDIR=$destdir install-all"],
check_finished => 0); check_finished => 0);
# Check we can run a test # Check we can run a test
@ -35,7 +35,7 @@ if (!-r "$root/.git") {
# Uninstall # Uninstall
print "Uninstall...\n"; print "Uninstall...\n";
run(cmd => ["cd $root && make DESTDIR=$destdir uninstall"], run(cmd => ["cd $root && $ENV{MAKE} DESTDIR=$destdir uninstall"],
check_finished => 0); check_finished => 0);
# Check empty # Check empty

View File

@ -83,8 +83,8 @@ ok(1);
sub get_manifest_files { sub get_manifest_files {
my $root = shift; my $root = shift;
`cd $root && make dist-file-list`; `cd $root && $ENV{MAKE} dist-file-list`;
my $manifest_files = `cd $root && make dist-file-list`; my $manifest_files = `cd $root && $ENV{MAKE} dist-file-list`;
$manifest_files =~ s!.*begin-dist-file-list:!!sg; $manifest_files =~ s!.*begin-dist-file-list:!!sg;
$manifest_files =~ s!end-dist-file-list:.*$!!sg; $manifest_files =~ s!end-dist-file-list:.*$!!sg;
print "MF $manifest_files\n" if $Self->{verbose}; print "MF $manifest_files\n" if $Self->{verbose};

View File

@ -80,8 +80,8 @@ ok(1);
sub get_manifest_files { sub get_manifest_files {
my $root = shift; my $root = shift;
`cd $root && make dist-file-list`; `cd $root && $ENV{MAKE} dist-file-list`;
my $manifest_files = `cd $root && make dist-file-list`; my $manifest_files = `cd $root && $ENV{MAKE} dist-file-list`;
$manifest_files =~ s!.*begin-dist-file-list:!!sg; $manifest_files =~ s!.*begin-dist-file-list:!!sg;
$manifest_files =~ s!end-dist-file-list:.*$!!sg; $manifest_files =~ s!end-dist-file-list:.*$!!sg;
print "MF $manifest_files\n" if $Self->{verbose}; print "MF $manifest_files\n" if $Self->{verbose};

View File

@ -29,7 +29,7 @@ mkdir $child_dir;
run(logfile => "${child_dir}/vlt_gcc.log", run(logfile => "${child_dir}/vlt_gcc.log",
cmd => ["cd ${child_dir} && ", cmd => ["cd ${child_dir} && ",
"make", "-f".getcwd()."/Makefile_obj", $ENV{MAKE}, "-f".getcwd()."/Makefile_obj",
"CPPFLAGS_DRIVER=-D".uc($self->{name}), "CPPFLAGS_DRIVER=-D".uc($self->{name}),
($opt_verbose ? "CPPFLAGS_DRIVER2=-DTEST_VERBOSE=1":""), ($opt_verbose ? "CPPFLAGS_DRIVER2=-DTEST_VERBOSE=1":""),
"VM_PREFIX=$self->{VM_PREFIX}_child", "VM_PREFIX=$self->{VM_PREFIX}_child",

View File

@ -28,7 +28,7 @@ while (1) {
# properly build # properly build
run(logfile => "$Self->{obj_dir}/vlt_gcc.log", run(logfile => "$Self->{obj_dir}/vlt_gcc.log",
tee => $self->{verbose}, tee => $self->{verbose},
cmd=>["make", cmd=>[$ENV{MAKE},
"-C ".$Self->{obj_dir}, "-C ".$Self->{obj_dir},
"-f $Self->{VM_PREFIX}.mk", "-f $Self->{VM_PREFIX}.mk",
"-j 4", "-j 4",

View File

@ -30,7 +30,7 @@ while (1) {
# properly build # properly build
run(logfile => "$Self->{obj_dir}/vlt_gcc.log", run(logfile => "$Self->{obj_dir}/vlt_gcc.log",
tee => $self->{verbose}, tee => $self->{verbose},
cmd=>["make", cmd=>[$ENV{MAKE},
"-C ".$Self->{obj_dir}, "-C ".$Self->{obj_dir},
"-f $Self->{VM_PREFIX}.mk", "-f $Self->{VM_PREFIX}.mk",
"-j 4", "-j 4",

View File

@ -41,7 +41,7 @@ while (1) {
last if $Self->{errors}; last if $Self->{errors};
run(logfile => "$secret_dir/secret_gcc.log", run(logfile => "$secret_dir/secret_gcc.log",
cmd=>["make", cmd=>[$ENV{MAKE},
"-C", "-C",
$secret_dir, $secret_dir,
"-f", "-f",

View File

@ -43,7 +43,7 @@ while (1) {
last if $Self->{errors}; last if $Self->{errors};
run(logfile => "$secret_dir/secret_gcc.log", run(logfile => "$secret_dir/secret_gcc.log",
cmd=>["make", cmd=>[$ENV{MAKE},
"-C", "-C",
$secret_dir, $secret_dir,
"-f", "-f",

View File

@ -21,7 +21,7 @@ compile (
make_top_shell => 0, make_top_shell => 0,
); );
run(cmd=>["make", run(cmd=>[$ENV{MAKE},
"-C", "-C",
"$Self->{obj_dir}", "$Self->{obj_dir}",
"-f", "-f",