1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
/* PDCLib testing suite <_PDCLIB_test.h>
This file is part of the Public Domain C Library (PDCLib).
Permission is granted to use, modify, and / or redistribute at will.
*/
/* -------------------------------------------------------------------------- */
/* Helper macros for test drivers */
/* -------------------------------------------------------------------------- */
#include <stdio.h>
#include <limits.h>
#include <string.h>
#include <assert.h>
/* Some strings used for <string.h> and <stdlib.h> testing. */
static const char abcde[] = "abcde";
static const char abcdx[] = "abcdx";
static const char teststring[] = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n";
/* Temporary file names */
static const char testfile[] = "test_support/testfile";
static const char testfile1[] = "test_support/testfile1";
static const char testfile2[] = "test_support/testfile2";
#ifndef NO_TESTDRIVER
#define NO_TESTDRIVER 0
#endif
static int TEST_RESULTS = 0;
/* TESTCASE() - generic test */
#define TESTCASE( x ) \
if ( x ) \
{ \
/* EMPTY */ \
} \
else \
{ \
TEST_RESULTS += 1; \
printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); \
}
/* TESTCASE_NOREG() - PDCLib-only test */
#ifndef REGTEST
#define TESTCASE_NOREG( x ) TESTCASE( x )
#else
#define TESTCASE_NOREG( x )
#endif
/* Include printf() / scanf() test macros if required */
#if defined( _PDCLIB_FILEIO ) || defined( _PDCLIB_STRINGIO )
#include "_PDCLIB_iotest.h"
#endif
/* Helper macro to fill a struct tm */
#define MKTIME( tm, sec, min, hour, day, month, year, wday, yday ) tm.tm_sec = sec; tm.tm_min = min; tm.tm_hour = hour; tm.tm_mday = day; tm.tm_mon = month; tm.tm_year = year; tm.tm_wday = wday; tm.tm_yday = yday; tm.tm_isdst = -1;
|