#!/bin/sh
set -e
tmp=$(mktemp)
trap "rm -f '$tmp'" EXIT
./test_debug | sed -e 's/[1-9]/0/g; s/ $//g' >"$tmp"
diff "$tmp" "$srcdir/test.out"
