aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/src/bin/test.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:29:19 +1000
committerDavid Walter Seikel2013-01-13 17:29:19 +1000
commit07274513e984f0b5544586c74508ccd16e7dcafa (patch)
treeb32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/elementary/src/bin/test.h
parentAdded Irrlicht 1.8, but without all the Windows binaries. (diff)
downloadSledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.zip
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.gz
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.bz2
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.xz
Remove EFL, since it's been released now.
Diffstat (limited to 'libraries/elementary/src/bin/test.h')
-rw-r--r--libraries/elementary/src/bin/test.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/libraries/elementary/src/bin/test.h b/libraries/elementary/src/bin/test.h
deleted file mode 100644
index 0f0e6fe..0000000
--- a/libraries/elementary/src/bin/test.h
+++ /dev/null
@@ -1,19 +0,0 @@
1#ifndef _TEST_H
2#define _TEST_H
3
4#define fail_if(expr) \
5 do { \
6 if ( expr ) \
7 { \
8 FILE *fp; \
9 char buf[1024]; \
10 sprintf(buf, "fail_%s.txt", elm_win_title_get(win)); \
11 if ((fp = fopen(buf, "a")) != NULL) \
12 { \
13 fprintf(fp, "Failed at %s:%d on <%s>\n", \
14 __FILE__, __LINE__, #expr); \
15 fclose(fp); \
16 } \
17 } \
18 } while(0)
19#endif