aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-12-28 23:47:01 +0100
committerChristian Grothoff <christian@grothoff.org>2020-12-28 23:47:01 +0100
commit38b2445cbe48df349438c50670cf194544897de6 (patch)
treea54fcfe21efecb31a5f6cb2ddfea8a217b594c70 /src/scalarproduct
parente30fd985fd765ad25505c3d73d35e8535512ed2e (diff)
downloadgnunet-38b2445cbe48df349438c50670cf194544897de6.tar.gz
gnunet-38b2445cbe48df349438c50670cf194544897de6.zip
fix some linting issues
Diffstat (limited to 'src/scalarproduct')
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct.sh4
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct_negative.sh4
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct_negativezero.sh4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/scalarproduct/test_scalarproduct.sh b/src/scalarproduct/test_scalarproduct.sh
index c0401beb7..ed91cd5c4 100755
--- a/src/scalarproduct/test_scalarproduct.sh
+++ b/src/scalarproduct/test_scalarproduct.sh
@@ -25,7 +25,7 @@ echo "Waiting for peers to start..."
25sleep 5 25sleep 5
26echo "Running test..." 26echo "Running test..."
27 27
28which timeout &> /dev/null && DO_TIMEOUT="timeout 15" 28which timeout >/dev/null 2>&1 && DO_TIMEOUT="timeout 15"
29 29
30# get bob's peer ID, necessary for alice 30# get bob's peer ID, necessary for alice
31PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB` 31PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB`
@@ -38,7 +38,7 @@ RESULT=`${DO_TIMEOUT} gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
38# terminate the testbed 38# terminate the testbed
39kill $PID 39kill $PID
40 40
41if [ "$RESULT" == "$EXPECTED" ] 41if [ "$RESULT" = "$EXPECTED" ]
42then 42then
43 echo "OK" 43 echo "OK"
44 exit 0 44 exit 0
diff --git a/src/scalarproduct/test_scalarproduct_negative.sh b/src/scalarproduct/test_scalarproduct_negative.sh
index cbeb1b9fd..b08e4527f 100755
--- a/src/scalarproduct/test_scalarproduct_negative.sh
+++ b/src/scalarproduct/test_scalarproduct_negative.sh
@@ -11,7 +11,7 @@ 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" 14which timeout >/dev/null 2>&1 && DO_TIMEOUT="timeout 15"
15 15
16# launch two peers in line topology non-interactively 16# launch two peers in line topology non-interactively
17# 17#
@@ -36,7 +36,7 @@ RESULT=`${DO_TIMEOUT} gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
36kill $PID 36kill $PID
37 37
38EXPECTED="-0CCC" 38EXPECTED="-0CCC"
39if [ "$RESULT" == "$EXPECTED" ] 39if [ "$RESULT" = "$EXPECTED" ]
40then 40then
41 echo "OK" 41 echo "OK"
42 exit 0 42 exit 0
diff --git a/src/scalarproduct/test_scalarproduct_negativezero.sh b/src/scalarproduct/test_scalarproduct_negativezero.sh
index 1ab7157af..6f80b2ea2 100755
--- a/src/scalarproduct/test_scalarproduct_negativezero.sh
+++ b/src/scalarproduct/test_scalarproduct_negativezero.sh
@@ -22,7 +22,7 @@ PID=$!
22# 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
23sleep 5 23sleep 5
24 24
25which timeout &> /dev/null && DO_TIMEOUT="timeout 15" 25which timeout >/dev/null 2>&1 && DO_TIMEOUT="timeout 15"
26 26
27# get bob's peer ID, necessary for alice 27# get bob's peer ID, necessary for alice
28PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB` 28PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB`
@@ -36,7 +36,7 @@ RESULT=`${DO_TIMEOUT} gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
36kill $PID 36kill $PID
37 37
38EXPECTED="00" 38EXPECTED="00"
39if [ "$RESULT" == "$EXPECTED" ] 39if [ "$RESULT" = "$EXPECTED" ]
40then 40then
41 echo "OK" 41 echo "OK"
42 exit 0 42 exit 0