]> git.ipfire.org Git - thirdparty/glibc.git/blame - support/README-testing.c
Update install.texi latest GCC version known to work.
[thirdparty/glibc.git] / support / README-testing.c
CommitLineData
c23de0aa
FW
1/* This file contains an example test case which shows minimal use of
2 the test framework. Additional testing hooks are described in
3 <support/test-driver.c>. */
4
5/* This function will be called from the test driver. */
6static int
7do_test (void)
8{
9 if (3 == 5)
10 /* Indicate failure. */
11 return 1;
12 else
13 /* Indicate success. */
14 return 0;
15}
16
17/* This file references do_test above and contains the definition of
18 the main function. */
19#include <support/test-driver.c>