Kaydet (Commit) 3a7bdf69 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS dmake46 (1.1.2); FILE ADDED

2006/07/24 22:13:38 vq 1.1.2.1: #i64583# Add testcase for $(mktmp ...) function macro and group recipe.
üst 332ab1ba
#!/bin/sh
# 24.07.2006 Volker Quetschke
# Checks that $(mktmp ...) works.
# (issue 64583)
: ${DMAKEPROG:=dmake}
file1="makefile.mk"
tmpfiles="$file1"
trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15
trap 'rm -rf $tmpfiles' 1 2 3 15
# Remember to quote variables in generated makefiles( $ -> \$ ).
cat > $file1 <<EOT
# Testing mktmp function macro
SHELL*:=/bin/sh
SHELLFLAGS*:=-ce
all :
@+cat \$(mktmp WRITTENTODISK)
EOT
output1=`eval ${DMAKEPROG} -rf $file1 2>&1 `
result1=$?
if test $output1 = "WRITTENTODISK" ; then
dummy=1
# OK
else
echo "Wrong result: $output1"
result1=1
fi
test $result1 -eq 0 && echo "Success - Cleaning up" && rm -f ${tmpfiles}
test $result1 -ne 0 && echo "Failure!"
exit $result1
#!/bin/sh
# 24.07.2006 Volker Quetschke
# Simple tests for group recipes.
# (issue 64583)
: ${DMAKEPROG:=dmake}
file1="mymakefile.mk"
tmpfiles="$file1"
trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15
trap 'rm -rf $tmpfiles' 1 2 3 15
# Remember to quote variables in generated makefiles( $ -> \$ ).
cat > $file1 <<EOT
# Test group recipes
SHELL:=/bin/sh
SHELLFLAGS:=-ce
GROUPSHELL:=/bin/sh
GROUPSUFFIX:=.sh
all :
@[
printf "line1"
printf "line2"
]
EOT
output=`eval ${DMAKEPROG} -r -f $file1`
result=$?
if test "$output" != "line1line2"; then
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment