set -e

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

res=$(wdf +CAT "$AUTOPKGTEST_TMP/content")

if [[ "$res" != "Hello, world" ]]; then
 exit 1
fi
