It seems that dd(1) on travis writes unwanted messages to stdout
dd: you probably want conv=notrunc with oflag=append
and we do not want conv=
Signed-off-by: Karel Zak <kzak@redhat.com>
if [ "$bs" = 0 ]; then
touch $input
else
- $DD if=/dev/zero of=$input count=1 bs=$bs $flags
+ $DD if=/dev/zero of=$input count=1 bs=$bs $flags &> /dev/null
fi
$TS_CMD_FINCORE --bytes --noheadings $input
input=$(make_input_name "$header")
INPUT="${INPUT} ${input}"
- $DD if=/dev/zero of=$input count=1 bs=$bs $flags0
- $DD if=/dev/zero of=$input count=1 bs=$bs $flags1
+ $DD if=/dev/zero of=$input count=1 bs=$bs $flags0 &> /dev/null
+ $DD if=/dev/zero of=$input count=1 bs=$bs $flags1 &> /dev/null
$TS_CMD_FINCORE --bytes --noheadings $input