aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct/test_scalarproduct_negative.sh
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/test_scalarproduct_negative.sh
parente30fd985fd765ad25505c3d73d35e8535512ed2e (diff)
downloadgnunet-38b2445cbe48df349438c50670cf194544897de6.tar.gz
gnunet-38b2445cbe48df349438c50670cf194544897de6.zip
fix some linting issues
Diffstat (limited to 'src/scalarproduct/test_scalarproduct_negative.sh')
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct_negative.sh4
1 files changed, 2 insertions, 2 deletions
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