toaruos/userspace/lib/testing.h

16 lines
400 B
C
Raw Normal View History

2014-04-03 09:50:32 +04:00
#ifndef _TESTING_H
#define _TESTING_H
#include <stdarg.h>
#define INFO(...) notice("INFO", __VA_ARGS__)
#define WARN(...) notice("WARN", __VA_ARGS__)
#define DONE(...) notice("DONE", __VA_ARGS__)
#define PASS(...) notice("PASS", __VA_ARGS__)
#define FAIL(...) notice("FAIL", __VA_ARGS__)
#define FATAL(...) notice("FATAL", __VA_ARGS__)
void notice(char * type, char * fmt, ...);
#endif