3 # 04.06.2005 Volker Quetschke
4 # Test for a bug that dmake complained about a continuation char followed
5 # by a newline. This could happen if \<nl> was used in an imported
6 # environment variable.
7 # This bug was <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=310107?>
13 trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15
15 trap 'rm -rf $tmpfiles' 1 2 3 15
17 # Remember to quote variables in generated makefiles ( $ -> \$ ).
18 # Also quote line continuations ( \<nl> -> \\<nl> ).
20 # Testing continuation char in recipes
29 MYMACRO
=`echo 'aa\\\\\naa'` ;export MYMACRO
; ${DMAKEPROG} -r -f $file1
32 test $result -eq 0 && echo "Success - Cleaning up" && rm -f ${tmpfiles}
33 test $result -ne 0 && echo "Failure!"