set -e

echo 'Hello, world' > "$AUTOPKGTEST_TMP/content"

res=$(wdf-dump -t "$AUTOPKGTEST_TMP/content")

if echo "$res" | grep -q "WOULD dump WDF  $AUTOPKGTEST_TMP/content"; then
 exit 0
else
 exit 1
fi
