diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-01-09 04:27:52 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-01-09 04:27:52 +0000 |
commit | 34fdd021f91e2f715e2a321132e72fd8bfa472e5 (patch) | |
tree | 5821fd767f074ad8b28e2d16efc30a27a0c0a1bf /tools | |
parent | 7ef7071affd2d40def5b0737a7dec3e0982208a0 (diff) | |
download | monitoring-plugins-34fdd021f91e2f715e2a321132e72fd8bfa472e5.tar.gz |
make test-debug generate lots of false errors in tinderbox. Turning off until we find a solution (so al least we can watch the tinderbox for breakages again)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1904 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/tinderbox_build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tinderbox_build b/tools/tinderbox_build index 93c40631..70fb07a3 100755 --- a/tools/tinderbox_build +++ b/tools/tinderbox_build @@ -266,8 +266,8 @@ sub make { sub maketest { # Tests - print LOG "LANG=C make test-debug 2>&1\n"; - open( MAKE, "LANG=C make test-debug && make install DESTDIR=$TmpDir/tinderbox_build.$$ && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1 |"); + print LOG "LANG=C make test 2>&1\n"; + open( MAKE, "LANG=C make test && make install DESTDIR=$TmpDir/tinderbox_build.$$ && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1 |"); while ( <MAKE> ) { print $_; print LOG $_; |