aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct/test_scalarproduct_negative.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-27 14:00:15 +0000
committerChristian Grothoff <christian@grothoff.org>2016-06-27 14:00:15 +0000
commitb0990df82b0e8ff831cbb01ed9fd1d6b4e592b8e (patch)
treecb99ed260752778cb0703edb141a732357b9dd25 /src/scalarproduct/test_scalarproduct_negative.sh
parent7ee0ec4b90a2096226f4dc23f9129fdda1c71488 (diff)
downloadgnunet-b0990df82b0e8ff831cbb01ed9fd1d6b4e592b8e.tar.gz
gnunet-b0990df82b0e8ff831cbb01ed9fd1d6b4e592b8e.zip
add timeouts to test
Diffstat (limited to 'src/scalarproduct/test_scalarproduct_negative.sh')
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct_negative.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/scalarproduct/test_scalarproduct_negative.sh b/src/scalarproduct/test_scalarproduct_negative.sh
index eb9ead4bf..cbeb1b9fd 100755
--- a/src/scalarproduct/test_scalarproduct_negative.sh
+++ b/src/scalarproduct/test_scalarproduct_negative.sh
@@ -11,6 +11,8 @@ PREFIX=/tmp/test-scalarproduct`date +%H%M%S`
11CFGALICE="-c $PREFIX/0/config" 11CFGALICE="-c $PREFIX/0/config"
12CFGBOB="-c $PREFIX/1/config" 12CFGBOB="-c $PREFIX/1/config"
13 13
14which timeout &> /dev/null && DO_TIMEOUT="timeout 15"
15
14# launch two peers in line topology non-interactively 16# launch two peers in line topology non-interactively
15# 17#
16# interactive mode would terminate the test immediately 18# interactive mode would terminate the test immediately
@@ -23,12 +25,12 @@ PID=$!
23sleep 5 25sleep 5
24 26
25# get bob's peer ID, necessary for alice 27# get bob's peer ID, necessary for alice
26PEERIDBOB=`gnunet-peerinfo -qs $CFGBOB` 28PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB`
27 29
28#GNUNET_LOG=';;;;DEBUG' 30#GNUNET_LOG=';;;;DEBUG'
29gnunet-scalarproduct $CFGBOB $INPUTBOB & 31${DO_TIMEOUT} gnunet-scalarproduct $CFGBOB $INPUTBOB &
30#RESULT=`GNUNET_LOG=';;;;DEBUG' 32#RESULT=`GNUNET_LOG=';;;;DEBUG'
31RESULT=`gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB` 33RESULT=`${DO_TIMEOUT} gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
32 34
33# terminate the testbed 35# terminate the testbed
34kill $PID 36kill $PID