diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/windows/check-output | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/windows/check-output b/tests/windows/check-output new file mode 100755 index 0000000..8516c07 --- /dev/null +++ b/tests/windows/check-output @@ -0,0 +1,17 @@ +#!/bin/sh + +TMPFILE=wine.$$.out + +wine $* >$TMPFILE + +grep -i "Unhandled exception" $TMPFILE +if test $? = 0;then + ret=1 +else + ret=0 +fi + +echo $TMPFILE +rm -f $TMPFILE + +exit $ret |