diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-10-15 14:49:59 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-10-15 14:49:59 +0000 |
commit | 7b9f7e736666ebc966ff0386ea7d9ba56b173b11 (patch) | |
tree | fcc2447ee5de411fd830406e74da2af38ea80da3 /dmake/tests | |
parent | da9dc9687652b08f376d042e8f62dbd19f82a0f9 (diff) |
INTEGRATION: CWS dmake411 (1.1.2); FILE ADDED
2007/10/13 22:21:23 vq 1.1.2.1: #i81252# Add testcase.
Diffstat (limited to 'dmake/tests')
-rwxr-xr-x | dmake/tests/misc-21 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dmake/tests/misc-21 b/dmake/tests/misc-21 new file mode 100755 index 000000000000..9dea6cc234a2 --- /dev/null +++ b/dmake/tests/misc-21 @@ -0,0 +1,41 @@ +#!/bin/sh + +# 13.10.2007 Volker Quetschke +# Check that SHELLCMDQUOTE adds the characters to the command. +# issue 81252 + +: ${DMAKEPROG:=dmake} +file1="mfile1.mk" +tmpfiles="$file1" + +trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15 + +# Remove files from prior failed run +rm -rf $tmpfiles + +# Remember to quote variables in generated makefiles ( $ -> \$ ). +cat > $file1 <<EOT +SHELL!:=printf +SHELLFLAGS!:= + +SHELLCMDQUOTE=X + +all : + @+testtest + +EOT + +output=`eval ${DMAKEPROG} -rf $file1` +result=$? + +if test "$result" = "0" && test "$output" = "XtesttestX" ; then + # OK + dummy=1 +else + echo "Wrong result: ${output}" + result=1 +fi + +test $result -eq 0 && echo "Success - Cleaning up" && rm -f ${tmpfiles} +test $result -ne 0 && echo "Failure!" +exit $result |