From: Chris Hofstaedtler Date: Tue, 18 Jul 2023 21:34:51 +0000 (+0200) Subject: fincore: (tests) fix double log output X-Git-Tag: v2.40-rc1~318^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dc8464208c573e8b4509d423eb33d5a9020ae0a9;p=thirdparty%2Futil-linux.git fincore: (tests) fix double log output The fincore tests call ts_log_both inside an output redirection of both stdout and stderr, leading to the ts_log_both output ending up twice in both stdout and stderr. Call ts_log_both before setting up the output redirection. Signed-off-by: Chris Hofstaedtler --- diff --git a/tests/ts/fincore/count b/tests/ts/fincore/count index ba5f6cd590..c89ad9f89f 100755 --- a/tests/ts/fincore/count +++ b/tests/ts/fincore/count @@ -119,11 +119,11 @@ check_dd_fs_feat INPUT= input= +ts_log_both "[ NO EXCITING FILE ]" { input=no_such_file INPUT="${INPUT} ${input}" - ts_log_both "[ NO EXCITING FILE ]" $TS_CMD_FINCORE --output $OUT_COLUMNS --bytes --noheadings $input footer "$?" } >> $TS_OUTPUT 2>> $TS_ERRLOG @@ -220,8 +220,8 @@ input= "oflag=append seek=$hole_count" } >> $TS_OUTPUT 2>> $TS_ERRLOG +ts_log_both "[ MULTIPLE FILES ]" { - ts_log_both "[ MULTIPLE FILES ]" $TS_CMD_FINCORE --output $OUT_COLUMNS --bytes $INPUT footer "$?" } >> $TS_OUTPUT 2>> $TS_ERRLOG