123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- /*++
- Copyright (c) 2013 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- testc.h
- Abstract:
- This header contains definitions for the C library test
- Author:
- Evan Green 9-Jul-2013
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include "../libcp.h"
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
- ULONG
- TestRegularExpressions (
- VOID
- );
- /*++
- Routine Description:
- This routine implements the entry point for the regular expression tests.
- Arguments:
- None.
- Return Value:
- Returns the count of test failures.
- --*/
- ULONG
- TestQuickSort (
- VOID
- );
- /*++
- Routine Description:
- This routine implements the entry point for the quicksort test.
- Arguments:
- None.
- Return Value:
- Returns the count of test failures.
- --*/
- ULONG
- TestBinarySearch (
- VOID
- );
- /*++
- Routine Description:
- This routine implements the entry point for the binary search test.
- Arguments:
- None.
- Return Value:
- Returns the count of test failures.
- --*/
- ULONG
- TestMath (
- VOID
- );
- /*++
- Routine Description:
- This routine implements the entry point for the C library math test.
- Arguments:
- None.
- Return Value:
- Returns the count of test failures.
- --*/
- ULONG
- TestMathFloat (
- VOID
- );
- /*++
- Routine Description:
- This routine implements the entry point for the C library single-precision
- floating point math test.
- Arguments:
- None.
- Return Value:
- Returns the count of test failures.
- --*/
- ULONG
- TestGetopt (
- VOID
- );
- /*++
- Routine Description:
- This routine tests the getopt functions.
- Arguments:
- None.
- Return Value:
- Returns the count of test failures.
- --*/
|