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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
//*************************************************************************
//
// Copyright 2013-2025 by Wilson Snyder. This program is free software; you can
// redistribute it and/or modify it under the terms of either the GNU
// Lesser General Public License Version 3 or the Perl Artistic License
// Version 2.0.
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
//
//*************************************************************************
#ifndef TEST_CHECK_H_
#define TEST_CHECK_H_
#include <iostream>
extern int errors;
#ifdef TEST_VERBOSE
static const bool verbose = true;
#else
static const bool verbose = false;
#endif
//======================================================================
// Use cout to avoid issues with %d/%lx etc
#define TEST_CHECK(got, exp, test) \
do { \
if (!(test)) { \
std::cout << std::dec << "%Error: " << __FILE__ << ":" << __LINE__ \
<< ": GOT = " << (got) << " EXP = " << (exp) << std::endl; \
++errors; \
} \
} while (0)
#define TEST_CHECK_EQ(got, exp) TEST_CHECK(got, exp, ((got) == (exp)));
#define TEST_CHECK_NE(got, exp) TEST_CHECK(got, exp, ((got) != (exp)));
#define TEST_CHECK_CSTR(got, exp) TEST_CHECK(got, exp, 0 == std::strcmp((got), (exp)));
#define TEST_CHECK_HEX_EQ(got, exp) \
do { \
if ((got) != (exp)) { \
std::cout << std::dec << "%Error: " << __FILE__ << ":" << __LINE__ << std::hex \
<< ": GOT=" << (got) << " EXP=" << (exp) << std::endl; \
++errors; \
} \
} while (0)
#define TEST_CHECK_HEX_NE(got, exp) \
do { \
if ((got) == (exp)) { \
std::cout << std::dec << "%Error: " << __FILE__ << ":" << __LINE__ << std::hex \
<< ": GOT=" << (got) << " EXP!=" << (exp) << std::endl; \
++errors; \
} \
} while (0)
#define TEST_CHECK_Z(got) \
do { \
if ((got)) { \
std::cout << std::dec << "%Error: " << __FILE__ << ":" << __LINE__ << std::hex \
<< ": GOT!= NULL EXP=NULL" << std::endl; \
++errors; \
} \
} while (0)
#define TEST_CHECK_NZ(got) \
do { \
if (!(got)) { \
std::cout << std::dec << "%Error: " << __FILE__ << ":" << __LINE__ << std::hex \
<< ": GOT= NULL EXP!=NULL" << std::endl; \
++errors; \
} \
} while (0)
#define TEST_CHECK_REAL_EQ(got, exp, delta) \
do { \
if (std::fabs(got - exp) > delta) { \
std::cout << std::dec << "%Error: " << __FILE__ << ":" << __LINE__ << std::showpoint \
<< ": GOT=" << (got) << " EXP=" << (exp) << " +/- " << (delta) \
<< std::endl; \
++errors; \
} \
} while (0)
//======================================================================
#define TEST_VERBOSE_PRINTF(format, ...) \
do { \
if (verbose) printf(format, ##__VA_ARGS__); \
} while (0)
#endif // Guard
|