aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/compw.geu.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/general/compw.geu.c')
-rw-r--r--test/mppa/general/compw.geu.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/mppa/general/compw.geu.c b/test/mppa/general/compw.geu.c
index 866f0b47..d72ca56c 100644
--- a/test/mppa/general/compw.geu.c
+++ b/test/mppa/general/compw.geu.c
@@ -1,4 +1,7 @@
-int main(void){
- unsigned int a = 5, b = -2;
- return (a >= b);
+#include "framework.h"
+
+BEGIN_TEST(unsigned int)
+{
+ c = (a >= b);
}
+END_TEST()