toaruos/userspace/lib/testing.h
2014-04-02 22:50:32 -07:00

16 lines
400 B
C

#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