rhubarb-lip-sync/lib/sphinxbase-rev13216/test/unit/test_util/test_macros.h

11 lines
351 B
C
Raw Normal View History

2015-10-19 19:45:08 +00:00
#include <stdio.h>
#include <math.h>
#include "logmath.h"
#define TEST_ASSERT(x) if (!(x)) { fprintf(stderr, "FAIL: %s\n", #x); exit(1); }
#define TEST_EQUAL(a,b) TEST_ASSERT((a) == (b))
#define TEST_EQUAL_FLOAT(a,b) TEST_ASSERT(fabs((a) - (b)) < EPSILON)
#define LOG_EPSILON 20
#define TEST_EQUAL_LOG(a,b) TEST_ASSERT(abs((a) - (b)) < LOG_EPSILON)