From: Christian Goeschel Ndjomouo Date: Thu, 22 Jan 2026 03:02:30 +0000 (-0500) Subject: tests: (ionice) use long options to improve test coverage report X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b83d6c262f9a1392f5a8ab43088cca130894994;p=thirdparty%2Futil-linux.git tests: (ionice) use long options to improve test coverage report Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/tests/ts/misc/ionice b/tests/ts/misc/ionice index 011497949..96d88a01a 100755 --- a/tests/ts/misc/ionice +++ b/tests/ts/misc/ionice @@ -20,11 +20,11 @@ ts_init "$*" ts_check_test_command "$TS_CMD_IONICE" -$TS_CMD_IONICE -p $$ -n 0 -c 0 >> $TS_OUTPUT 2>> $TS_ERRLOG -$TS_CMD_IONICE -p $$ -n 3 -c 7 >> $TS_OUTPUT 2>> $TS_ERRLOG -$TS_CMD_IONICE -p $$ -n 4 -c 7 >> $TS_OUTPUT 2>> $TS_ERRLOG -$TS_CMD_IONICE -p $$ -n 1 -c 8 >> $TS_OUTPUT 2>> $TS_ERRLOG -$TS_CMD_IONICE -n 3 ls /etc/passwd >> $TS_OUTPUT 2>> $TS_ERRLOG -$TS_CMD_IONICE -p $$ >> $TS_OUTPUT 2>> $TS_ERRLOG +$TS_CMD_IONICE --pid $$ --classdata 0 --class 0 >> $TS_OUTPUT 2>> $TS_ERRLOG +$TS_CMD_IONICE --pid $$ --classdata 3 --class 7 >> $TS_OUTPUT 2>> $TS_ERRLOG +$TS_CMD_IONICE --pid $$ --classdata 4 --class 7 >> $TS_OUTPUT 2>> $TS_ERRLOG +$TS_CMD_IONICE --pid $$ --classdata 1 --class 8 >> $TS_OUTPUT 2>> $TS_ERRLOG +$TS_CMD_IONICE --classdata 3 ls /etc/passwd >> $TS_OUTPUT 2>> $TS_ERRLOG +$TS_CMD_IONICE --pid $$ >> $TS_OUTPUT 2>> $TS_ERRLOG ts_finalize