add em scheme & exc sys
[sddekit.git] / sk_test.h
blob00bfdd612ed35a98578c1de7533b764c64c92bd3
1 /* Apache 2.0 INS-AMU 2015 */
3 #ifndef SK_TEST_H
4 #define SK_TEST_H
6 void sk_test_true_(int cond, char *scond, char *fname, int lineno);
8 int sk_test_report();
10 #define sk_test_true(cond) sk_test_true_(cond, #cond, __FILE__, __LINE__)
12 #define sk_test_tol(l, r, tol)\
13 sk_test_true((((l)-(r))*((l)-(r)))<tol)
15 #endif