aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct/test_scalarproduct.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-12-17 19:44:08 +0000
committerChristian Grothoff <christian@grothoff.org>2013-12-17 19:44:08 +0000
commitab7e7921897864b39f7efba7b13f926bf9d705fd (patch)
tree4495f16372c29f95ea4647a50d171b7d3147e4f6 /src/scalarproduct/test_scalarproduct.sh
parente324e9dbec05a9b38e23776e1b93b2c268c2ba7e (diff)
downloadgnunet-ab7e7921897864b39f7efba7b13f926bf9d705fd.tar.gz
gnunet-ab7e7921897864b39f7efba7b13f926bf9d705fd.zip
-do not log at DEBUG in testcases (at least not in SVN), do not print random stuff to stdout
Diffstat (limited to 'src/scalarproduct/test_scalarproduct.sh')
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct.sh15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/scalarproduct/test_scalarproduct.sh b/src/scalarproduct/test_scalarproduct.sh
index 5ba94f641..4a3b77428 100755
--- a/src/scalarproduct/test_scalarproduct.sh
+++ b/src/scalarproduct/test_scalarproduct.sh
@@ -13,10 +13,11 @@ CFGBOB="-c $PREFIX/1/config"
13 13
14# launch two peers in line topology non-interactively 14# launch two peers in line topology non-interactively
15# 15#
16# interactive mode would terminate the test immediately 16# interactive mode would terminate the test immediately
17# because the rest of the script is already in stdin, 17# because the rest of the script is already in stdin,
18# thus redirecting stdin does not suffice) 18# thus redirecting stdin does not suffice)
19GNUNET_LOG='scalarproduct;;;;DEBUG' GNUNET_TESTING_PREFIX=$PREFIX ../testbed/gnunet-testbed-profiler -n -c test_scalarproduct.conf -p 2 & 19#GNUNET_LOG='scalarproduct;;;;DEBUG'
20GNUNET_TESTING_PREFIX=$PREFIX ../testbed/gnunet-testbed-profiler -n -c test_scalarproduct.conf -p 2 &
20PID=$! 21PID=$!
21# sleep 1 is too short on most systems, 2 works on most, 5 seems to be safe 22# sleep 1 is too short on most systems, 2 works on most, 5 seems to be safe
22sleep 5 23sleep 5
@@ -24,11 +25,13 @@ sleep 5
24# get bob's peer ID, necessary for alice 25# get bob's peer ID, necessary for alice
25PEERIDBOB=`gnunet-peerinfo -qs $CFGBOB` 26PEERIDBOB=`gnunet-peerinfo -qs $CFGBOB`
26 27
27GNUNET_LOG=';;;;DEBUG' gnunet-scalarproduct $CFGBOB $INPUTBOB & 28#GNUNET_LOG=';;;;DEBUG'
28RESULT=`GNUNET_LOG=';;;;DEBUG' gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB` 29gnunet-scalarproduct $CFGBOB $INPUTBOB &
30GNUNET_LOG=';;;;DEBUG'
31RESULT=`gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
29 32
30# terminate the testbed 33# terminate the testbed
31kill $PID 34kill $PID
32 35
33EXPECTED="0CCC" 36EXPECTED="0CCC"
34if [ "$RESULT" == "$EXPECTED" ] 37if [ "$RESULT" == "$EXPECTED" ]