aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/andw.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/general/andw.c')
-rw-r--r--test/mppa/general/andw.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/mppa/general/andw.c b/test/mppa/general/andw.c
index a10f1203..99de0049 100644
--- a/test/mppa/general/andw.c
+++ b/test/mppa/general/andw.c
@@ -1,5 +1,5 @@
-int main(void){
- int a = 5;
- int b = -3;
- return a&b;
-}
+#include "framework.h"
+
+BEGIN_TEST(int)
+ c = a&b;
+END_TEST()