3 # 13.10.2007 Volker Quetschke
4 # Check that SHELLCMDQUOTE adds the characters to the command.
11 trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15
13 # Remove files from prior failed run
16 # Remember to quote variables in generated makefiles ( $ -> \$ ).
28 output
=`eval ${DMAKEPROG} -rf $file1`
31 if test "$result" = "0" && test "$output" = "XtesttestX" ; then
35 echo "Wrong result: ${output}"
39 test $result -eq 0 && echo "Success - Cleaning up" && rm -f ${tmpfiles}
40 test $result -ne 0 && echo "Failure!"