tests: fix some shellcheck errors.

Execute "gnuradio-config-info --version" instead of
"gnuradio-companion --version"

Change-Id: Ia399324ae7a39e120e338c86d449d7c4d54bd866
This commit is contained in:
Vasil Velichkov 2019-09-12 02:09:40 +03:00 committed by Piotr Krysik
parent fa1bd24c1d
commit fc046c48cd
2 changed files with 8 additions and 10 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
TEST_DIR=`dirname "$0"`
TEST_DIR=$(dirname "$0")
# PYTHONPATH and LD_LIBRARY_PATH are needed on Fedora 26
#
@ -18,11 +18,10 @@ export RESULT_OBTAINED="grgsm_decode_test1_result"
export RUNLINE="$AP_DECODE -c $SHORTENED_CAPFILE -s $((100000000/174)) -m BCCH -t 0 -v --ppm -10"
echo "Testing with:"
echo " $RUNLINE"
#gnuradio 3.8 does not have --version parameter
#gnuradio-companion --version
gnuradio-config-info --version
cd $TEST_DIR
cat $CAPFILE | head -c 6000000 > $SHORTENED_CAPFILE
cd "$TEST_DIR" || exit 1
head -c 6000000 $CAPFILE > $SHORTENED_CAPFILE
$RUNLINE | grep -A 999999 "860933 1329237: 59 06 1a 8f 6d 18 10 80 00 00 00 00 00 00 00 00 00 00 00 78 b9 00 00" | tee $RESULT_OBTAINED
diff $RESULT_EXPECTED $RESULT_OBTAINED

View File

@ -1,6 +1,6 @@
#!/bin/bash
TEST_DIR=`dirname "$0"`
TEST_DIR=$(dirname "$0")
# PYTHONPATH and LD_LIBRARY_PATH are needed on Fedora 26
#
@ -18,11 +18,10 @@ export RESULT_OBTAINED="grgsm_decode_test1_result"
export RUNLINE="$AP_DECODE -c $SHORTENED_CAPFILE -s $((100000000/174)) -m SDCCH8 -t 1 -k 0x1E,0xF0,0x0B,0xAB,0x3B,0xAC,0x70,0x02 -v --ppm -10"
echo "Testing with:"
echo " $RUNLINE"
#gnuradio 3.8 does not have --version parameter
#gnuradio-companion --version
gnuradio-config-info --version
cd $TEST_DIR
cat $CAPFILE | head -c -37000000 | head -c 35800000 > $SHORTENED_CAPFILE
cd "$TEST_DIR" || exit 1
head -c -37000000 $CAPFILE | head -c 35800000 > $SHORTENED_CAPFILE
$RUNLINE | grep -A 999999 "862210 1331352: 03 03 01 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b 2b" | tee $RESULT_OBTAINED
diff -u $RESULT_EXPECTED $RESULT_OBTAINED