summaryrefslogtreecommitdiff
path: root/dmake/tests/function_macros-7
diff options
context:
space:
mode:
Diffstat (limited to 'dmake/tests/function_macros-7')
-rwxr-xr-xdmake/tests/function_macros-739
1 files changed, 0 insertions, 39 deletions
diff --git a/dmake/tests/function_macros-7 b/dmake/tests/function_macros-7
deleted file mode 100755
index e6fc03a3d..000000000
--- a/dmake/tests/function_macros-7
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/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