From: Karel Zak Date: Fri, 24 Mar 2017 12:13:28 +0000 (+0100) Subject: tests: remove status=none dd(1) from fincore X-Git-Tag: v2.30-rc1~158 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ea213781d7ad589c211501bac9aa67b8cb57875;p=thirdparty%2Futil-linux.git tests: remove status=none dd(1) from fincore seems dd(1) sucks on travis more than expected: dd: invalid status flag: `none' Try `dd --help' for more information. Signed-off-by: Karel Zak --- diff --git a/tests/ts/fincore/count b/tests/ts/fincore/count index 8513d5f300..8268973500 100755 --- a/tests/ts/fincore/count +++ b/tests/ts/fincore/count @@ -65,7 +65,10 @@ ts_init "$*" PAGE_SIZE=$($TS_HELPER_SYSINFO pagesize) WINDOW_SIZE=$(( 32 * 1024 * PAGE_SIZE )) -DD_FLAGS="status=none" +# seems unsupported by some dd(1) version +#DD_FLAGS="status=none" + +DD_FLAGS= DD="dd $DD_FLAGS"