1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 16:45:20 +02:00

Print unit test failures to dstream

This commit is contained in:
kwolekr
2014-12-29 02:30:03 -05:00
parent 9eb492229b
commit 5038b9aaec

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;\
}\
}