From 0348749de6954023d77a52385ca505cd397be124 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 12 Feb 2019 16:24:07 +0100 Subject: [PATCH] tests: further simplifications --- common | 2 +- tests/integration/pipe-loopback-socket.sh | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/common b/common index 5d1a82c84..40ac360c5 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 5d1a82c84822881033c4dddb4dd3017a26ec544e +Subproject commit 40ac360c5f00a923c77cebf9b016565863e5bf3d diff --git a/tests/integration/pipe-loopback-socket.sh b/tests/integration/pipe-loopback-socket.sh index e155fde41..84a59aeb1 100755 --- a/tests/integration/pipe-loopback-socket.sh +++ b/tests/integration/pipe-loopback-socket.sh @@ -39,7 +39,6 @@ villas-signal -v ${NUM_VALUES} -l ${NUM_SAMPLES} -n random > ${INPUT_FILE} for FORMAT in villas.human gtnet.fake protobuf; do for LAYER in udp ip eth unix; do -for VERIFY_SOURCE in true false; do VECTORIZES="1" @@ -88,7 +87,6 @@ cat > ${CONFIG_FILE} << EOF }, "in" : { "address" : "${LOCAL}", - "verify_source" : ${VERIFY_SOURCE}, "signals" : { "count" : ${NUM_VALUES}, "type" : "float" @@ -111,7 +109,7 @@ villas-test-cmp ${CMPFLAGS} ${INPUT_FILE} ${OUTPUT_FILE} RC=$? if (( ${RC} != 0 )); then - echo "=========== Sub-test failed for: format=${FORMAT}, layer=${LAYER}, verify_source=${VERIFY_SOURCE}, vectorize=${VECTORIZE}" + echo "=========== Sub-test failed for: format=${FORMAT}, layer=${LAYER}, vectorize=${VECTORIZE}" echo "Config:" cat ${CONFIG_FILE} echo @@ -122,10 +120,10 @@ if (( ${RC} != 0 )); then cat ${OUTPUT_FILE} exit ${RC} else - echo "=========== Sub-test succeeded for: format=${FORMAT}, layer=${LAYER}, verify_source=${VERIFY_SOURCE}, vectorize=${VECTORIZE}" + echo "=========== Sub-test succeeded for: format=${FORMAT}, layer=${LAYER}, vectorize=${VECTORIZE}" fi -done; done; done; done +done; done; done rm ${OUTPUT_FILE} ${INPUT_FILE} ${CONFIG_FILE} ${THEORIES}