summaryrefslogtreecommitdiffstats
path: root/make/make-3.81/tests/scripts/test_template
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 04:13:19 +0100
committerLukc <lukc@upyum.com>2010-12-12 04:13:19 +0100
commit9769d39d792c1e912234e23e663ba8bd21a6386e (patch)
tree76bf5a6a6c756cf78c73a847b2ff3ec97f048ee7 /make/make-3.81/tests/scripts/test_template
parentabb6804a2c95065cbc228c3726781d44ed04e6cd (diff)
downloadbase-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.gz
base-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.bz2
base-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.xz
base-9769d39d792c1e912234e23e663ba8bd21a6386e.zip
Recette de make retir?e.
Diffstat (limited to 'make/make-3.81/tests/scripts/test_template')
-rw-r--r--make/make-3.81/tests/scripts/test_template29
1 files changed, 0 insertions, 29 deletions
diff --git a/make/make-3.81/tests/scripts/test_template b/make/make-3.81/tests/scripts/test_template
deleted file mode 100644
index 3fd3f95..0000000
--- a/make/make-3.81/tests/scripts/test_template
+++ /dev/null
@@ -1,29 +0,0 @@
-# -*-perl-*-
-
-$description = "<FILL IN SHORT DESCRIPTION HERE>";
-$details = "<FILL IN DETAILS OF HOW YOU TEST WHAT YOU SAY YOU ARE TESTING>";
-
-# Run a make test. See the documentation of run_make_test() in
-# run_make_tests.pl, but briefly the first argument is a string with the
-# contents of a makefile to be tested, the second is a string containing the
-# arguments to be passed to the make invocation, the third is a string
-# containing the expected output. The fourth is the expected exit code for
-# make. If not specified, it's assumed that the make program should succeed
-# (exit with 0).
-
-run_make_test('Your test makefile goes here',
- 'Arguments to pass to make go here',
- 'Expected output from the invocation goes here');
-
-# There are various special tokens, options, etc. See the full documentation
-# in run_make_tests.pl.
-
-
-# This tells the test driver that the perl test script executed properly.
-1;
-
-
-
-
-
-