/* $Id$ */ /* Release $Name$ */ /* 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 char const abcde[] = "abcde"; char const abcdx[] = "abcdx"; #define BEGIN_TESTS unsigned int rc = 0 #define TESTCASE( x ) if ( x ) {} \ else { rc += 1; printf( "Testcase failed: " __FILE__ ", line %d - " #x "\n", __LINE__ ); } #define TEST_RESULTS rc