diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2007-04-25 22:21:35 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2007-04-25 22:21:35 (GMT) |
commit | b9b27ab2552b5a236b4b422ad686388d8b31c54b (patch) | |
tree | 8484564e5117e9c441ea25a6b19aa0dd5237903a /tools | |
parent | d47be7a9e48242a25e356e2509f6fb774ae0be10 (diff) | |
download | monitoring-plugins-b9b27ab2552b5a236b4b422ad686388d8b31c54b.tar.gz |
Test installs into temporary directories
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1701 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/tinderbox_build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/tinderbox_build b/tools/tinderbox_build index 44e3dfe..1ace2b0 100755 --- a/tools/tinderbox_build +++ b/tools/tinderbox_build | |||
@@ -266,13 +266,15 @@ sub make { | |||
266 | sub maketest { | 266 | sub maketest { |
267 | # Tests | 267 | # Tests |
268 | print LOG "LANG=C make test 2>&1\n"; | 268 | print LOG "LANG=C make test 2>&1\n"; |
269 | open( MAKE, "LANG=C make test 2>&1 |"); | 269 | open( MAKE, "LANG=C make test && make install DESTDIR=/tmp/tinderbox_build.$$ && make install-strip DESTDIR=/tmp/tinderbox_build2.$$ 2>&1 |"); |
270 | while ( <MAKE> ) { | 270 | while ( <MAKE> ) { |
271 | print $_; | 271 | print $_; |
272 | print LOG $_; | 272 | print LOG $_; |
273 | } | 273 | } |
274 | close( MAKE); | 274 | close( MAKE); |
275 | return ! $?; | 275 | my $rc = $?; |
276 | system("rm -fr /tmp/tinderbox_build.$$ /tmp/tinderbox_build2.$$"); | ||
277 | return ! $rc; | ||
276 | } | 278 | } |
277 | 279 | ||
278 | # Main function | 280 | # Main function |