From abee275d36c23f5d2f1f5b9e63578d6b166040a2 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Thu, 27 Jan 2005 21:32:56 +0000 Subject: [PATCH] * update to run make check along the way of testing the nightly This commit was SVN r4193. --- contrib/nightly/build_tarball.pl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contrib/nightly/build_tarball.pl b/contrib/nightly/build_tarball.pl index f942a1447d..80d1f99090 100755 --- a/contrib/nightly/build_tarball.pl +++ b/contrib/nightly/build_tarball.pl @@ -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) {