From 408ae8c4451b49277e8b97bbb7cedd2fb905bcdb Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Wed, 6 Jun 2018 17:30:28 +0200 Subject: MPPA - Forgot to initialize variables in the tests Warning : the division and modulo currently do not pass the tests --- test/mppa/general/framework.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/mppa/general/framework.h') diff --git a/test/mppa/general/framework.h b/test/mppa/general/framework.h index 8321a9a9..78f2617e 100644 --- a/test/mppa/general/framework.h +++ b/test/mppa/general/framework.h @@ -7,7 +7,9 @@ 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 */ -- cgit