aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/framework.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/general/framework.h')
-rw-r--r--test/mppa/general/framework.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/mppa/general/framework.h b/test/mppa/general/framework.h
deleted file mode 100644
index 78f2617e..00000000
--- a/test/mppa/general/framework.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef __FRAMEWORK_H__
-#define __FRAMEWORK_H__
-
-#include "../lib/prng.c"
-
-#define BEGIN_TEST(type)\
- int main(void){\
- type a, b, c, i, S;\
- srand(0);\
- S = 0;\
- for (i = 0 ; i < 100 ; i++){\
- c = randlong();\
- a = randlong();\
- b = randlong();
- /* END BEGIN_TEST */
-
-/* In between BEGIN_TEST and END_TEST : definition of c */
-
-#define END_TEST()\
- S += c;\
- }\
- return S;\
- }
- /* END END_TEST */
-
-#endif