Skip to content
Snippets Groups Projects
Commit bfbc00c0 authored by ben.franksen's avatar ben.franksen
Browse files

test/compiler: found a simpler and more reliable way to re-build tests

parent 12ae452b
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ if ($host_arch =~ /64/) { ...@@ -33,7 +33,7 @@ if ($host_arch =~ /64/) {
sub make { sub make {
my ($test) = @_; my ($test) = @_;
$_ = `make -s TESTPROD=$test 2>&1`; $_ = `make -B -s TESTPROD=$test 2>&1`;
# uncomment this comment to find out what went wrong: # uncomment this comment to find out what went wrong:
#diag("$test result=$?, response=$_"); #diag("$test result=$?, response=$_");
} }
...@@ -58,8 +58,6 @@ my @alltests = ( ...@@ -58,8 +58,6 @@ my @alltests = (
plan tests => @success + @warning + @error; plan tests => @success + @warning + @error;
system("touch ../*.st");
foreach my $group (@alltests) { foreach my $group (@alltests) {
my ($check, $tests) = @$group; my ($check, $tests) = @$group;
foreach my $test (@$tests) { foreach my $test (@$tests) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment