]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
tests: remove status=none dd(1) from fincore
authorKarel Zak <kzak@redhat.com>
Fri, 24 Mar 2017 12:13:28 +0000 (13:13 +0100)
committerKarel Zak <kzak@redhat.com>
Fri, 24 Mar 2017 12:13:28 +0000 (13:13 +0100)
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 <kzak@redhat.com>
tests/ts/fincore/count

index 8513d5f3006ee4dfa0e122881cf79b6f6b281ebb..8268973500f746e0f925db563d1a4af7bafbbd5c 100755 (executable)
@@ -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"