automated: linux: ltp: don't duplicate LTP output
Commit aac60d98ed35b6630f6076aff2c747a1f4576566 ("automated: linux: ltp:
publish log files for kirk runs") made the test-specific output to be
printed again so the start and end lines can be captured by LAVA. That
has the side effect of nearly doubling log sizes, and also introduces
redundancy.
By dropping the --verbose flag from the kirk call, we bring log sizes
down, while still having their output published in the LAVA test
results.
Signed-off-by: Antonio Terceiro <antonio.terceiro@linaro.org>
diff --git a/automated/linux/ltp/ltp.sh b/automated/linux/ltp/ltp.sh
index 3becdd4..9a4a433 100755
--- a/automated/linux/ltp/ltp.sh
+++ b/automated/linux/ltp/ltp.sh
@@ -193,8 +193,8 @@
pipe0_status "${RUNNER} --framework ltp --run-suite shardfile \
-d ${LTP_TMPDIR} --env LTP_COLORIZE_OUTPUT=0 \
${SKIPFILE_PATH:+--skip-file} ${SKIPFILE_PATH} \
- --json-report /tmp/kirk-report.json \
- --verbose" "tee ${OUTPUT}/LTP_${LOG_FILE}.out"
+ --json-report /tmp/kirk-report.json" \
+ "tee ${OUTPUT}/LTP_${LOG_FILE}.out"
parse_ltp_json_results "/tmp/kirk-report.json"
rm "/tmp/kirk-report.json"
else