From 9ed0f85d50987f6aff5629a4cc7aac685101f748 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 13 Aug 2007 12:51:00 +0000 Subject: [PATCH] Allow the use of valgrind --- test/test_http.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/test/test_http.sh b/test/test_http.sh index 75f82c7..42fdd49 100755 --- a/test/test_http.sh +++ b/test/test_http.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: test_http.sh,v 1.9 2007-07-30 23:06:01 quinn Exp $ +# $Id: test_http.sh,v 1.10 2007-08-13 12:51:00 adam Exp $ # # Regression test using pazpar2 against z3950.indexdata.com/marc # Reads Pazpar2 URLs from test_http_urls @@ -22,11 +22,18 @@ fi # Fire up pazpar2 rm -f pazpar2.log -../src/pazpar2 -X -l pazpar2.log -f ${srcdir}/test_http.cfg -t ${srcdir}/test_http.xml >extra_pazpar2.log 2>&1 & + +if test "$usevalgrind"; then + valgrind --log-file=valgrind ../src/pazpar2 -X -l pazpar2.log -f ${srcdir}/test_http.cfg -t ${srcdir}/test_http.xml >extra_pazpar2.log 2>&1 & +else + ../src/pazpar2 -X -l pazpar2.log -f ${srcdir}/test_http.cfg -t ${srcdir}/test_http.xml >extra_pazpar2.log 2>&1 & +fi + + PP2PID=$! # Give it a chance to start properly.. -sleep 1 +sleep 3 # Set to success by default.. Will be set to non-zero in case of failure code=0 -- 1.7.10.4