Blame tests/scripts/test_template

Packit 26a39e
#                                                                    -*-perl-*-
Packit 26a39e
Packit 26a39e
$description = "<FILL IN SHORT DESCRIPTION HERE>";
Packit 26a39e
$details = "<FILL IN DETAILS OF HOW YOU TEST WHAT YOU SAY YOU ARE TESTING>";
Packit 26a39e
Packit 26a39e
# Run a make test.  See the documentation of run_make_test() in
Packit 26a39e
# run_make_tests.pl, but briefly the first argument is a string with the
Packit 26a39e
# contents of a makefile to be tested, the second is a string containing the
Packit 26a39e
# arguments to be passed to the make invocation, the third is a string
Packit 26a39e
# containing the expected output.  The fourth is the expected exit code for
Packit 26a39e
# make.  If not specified, it's assumed that the make program should succeed
Packit 26a39e
# (exit with 0).
Packit 26a39e
Packit 26a39e
run_make_test('Your test makefile goes here',
Packit 26a39e
              'Arguments to pass to make go here',
Packit 26a39e
              'Expected output from the invocation goes here');
Packit 26a39e
Packit 26a39e
# There are various special tokens, options, etc.  See the full documentation
Packit 26a39e
# in run_make_tests.pl.
Packit 26a39e
Packit 26a39e
Packit 26a39e
# This tells the test driver that the perl test script executed properly.
Packit 26a39e
1;
Packit 26a39e
Packit 26a39e
Packit 26a39e
Packit 26a39e
Packit 26a39e
Packit 26a39e