1
1

* update to run make check along the way of testing the nightly

This commit was SVN r4193.
Этот коммит содержится в:
Brian Barrett 2005-01-27 21:32:56 +00:00
родитель 85eda952b8
Коммит abee275d36

Просмотреть файл

@ -370,6 +370,14 @@ sub try_build {
# save the compile warnings
my $make_all_stderr = $ret->{stderr};
# build it
$ret = do_command($merge_output, "make check");
if ($ret->{status} != 0) {
$ret->{make_all_stderr} = $make_all_stderr;
$ret->{message} = "Failed to \"make check\"";
return $ret;
}
# install it
$ret = do_command(1, "make install");
if ($ret->{status} != 0) {