Print unit test failures to dstream

This commit is contained in:
kwolekr 2014-12-29 02:30:03 -05:00
parent 9eb492229b
commit 5038b9aaec
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define UTEST(x, fmt, ...)\
{\
if(!(x)){\
LOGLINEF(LMT_ERROR, "Test (%s) failed: " fmt, #x, ##__VA_ARGS__);\
dstream << "Test (" #x ") failed: " fmt << std::endl; \
test_failed = true;\
}\
}