summaryrefslogtreecommitdiffstats
path: root/tests/ts/fincore
diff options
context:
space:
mode:
authorKarel Zak2017-03-24 13:13:28 +0100
committerKarel Zak2017-03-24 13:13:28 +0100
commit8ea213781d7ad589c211501bac9aa67b8cb57875 (patch)
tree3dbf705a32ddbc57e244c6e35169303c5380d4a6 /tests/ts/fincore
parenttests: redirect unwanted dd(1) advices to /dev/null (diff)
downloadkernel-qcow2-util-linux-8ea213781d7ad589c211501bac9aa67b8cb57875.tar.gz
kernel-qcow2-util-linux-8ea213781d7ad589c211501bac9aa67b8cb57875.tar.xz
kernel-qcow2-util-linux-8ea213781d7ad589c211501bac9aa67b8cb57875.zip
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 <kzak@redhat.com>
Diffstat (limited to 'tests/ts/fincore')
-rwxr-xr-xtests/ts/fincore/count5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/ts/fincore/count b/tests/ts/fincore/count
index 8513d5f30..826897350 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"