2004-09-22 04:36:17 +00:00
|
|
|
# -*-perl-*-
|
1999-09-14 02:03:19 +00:00
|
|
|
|
2004-09-22 04:36:17 +00:00
|
|
|
$description = "<FILL IN SHORT DESCRIPTION HERE>";
|
1999-09-14 02:03:19 +00:00
|
|
|
$details = "<FILL IN DETAILS OF HOW YOU TEST WHAT YOU SAY YOU ARE TESTING>";
|
|
|
|
|
2004-09-22 04:36:17 +00:00
|
|
|
# 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).
|
1999-09-14 02:03:19 +00:00
|
|
|
|
2004-09-22 04:36:17 +00:00
|
|
|
run_make_test('Your test makefile goes here',
|
|
|
|
'Arguments to pass to make go here',
|
|
|
|
'Expected output from the invocation goes here');
|
1999-09-14 02:03:19 +00:00
|
|
|
|
2004-09-22 04:36:17 +00:00
|
|
|
# There are various special tokens, options, etc. See the full documentation
|
|
|
|
# in run_make_tests.pl.
|
1999-09-14 02:03:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
# This tells the test driver that the perl test script executed properly.
|
|
|
|
1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|