summaryrefslogtreecommitdiff
path: root/test/test.h
diff options
context:
space:
mode:
authoranonymous <local@localhost>2010-06-27 17:13:07 +0000
committeranonymous <local@localhost>2010-06-27 17:13:07 +0000
commit7ca18cb7c08bf92db5946a66e312678c480eb819 (patch)
tree22dfcc5cf05ecad955cd15d9feb952f204a4b32b /test/test.h
downloadlibcxxrt-7ca18cb7c08bf92db5946a66e312678c480eb819.tar.gz
libcxxrt-7ca18cb7c08bf92db5946a66e312678c480eb819.tar.bz2
libcxxrt-7ca18cb7c08bf92db5946a66e312678c480eb819.tar.xz
Initial import.
Diffstat (limited to 'test/test.h')
-rw-r--r--test/test.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test.h b/test/test.h
new file mode 100644
index 0000000..6972b62
--- /dev/null
+++ b/test/test.h
@@ -0,0 +1,4 @@
+
+void log_test(bool predicate, const char *file, int line, const char *message);
+
+#define TEST(p, m) log_test(p, __FILE__, __LINE__, m)