From 0eda4230eb9f7cce737a82122b14c7f917ed9ba0 Mon Sep 17 00:00:00 2001 From: William Chen Date: Thu, 8 Apr 2021 09:42:12 -0700 Subject: [PATCH] Restore commented out lines in sanity test cc_param3.c --- .../SANITY0022-cc_param3/cc_param3.c | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/testsuite/c_test/sanity_test/SANITY0022-cc_param3/cc_param3.c b/testsuite/c_test/sanity_test/SANITY0022-cc_param3/cc_param3.c index 7a8cafb6d7..9caad4774d 100644 --- a/testsuite/c_test/sanity_test/SANITY0022-cc_param3/cc_param3.c +++ b/testsuite/c_test/sanity_test/SANITY0022-cc_param3/cc_param3.c @@ -53,20 +53,20 @@ void foo6( int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int main() { - S1 s1 = { 1, 2 }; - foo0(1,2,3,4,5,6,7,8, s1); -// foo1(1,2,3,4,5,6,7, s1); + S1 s1 = { 1, 2 }; + foo0(1,2,3,4,5,6,7,8, s1); + foo1(1,2,3,4,5,6,7, s1); - S2 s2 = { 3, 4 }; - foo2(1,2,3,4,5,6,7,8, s2); -// foo3(0,0,0,0,0,0,0,0, s2); + S2 s2 = { 3, 4 }; + foo2(1,2,3,4,5,6,7,8, s2); + foo3(0,0,0,0,0,0,0,0, s2); - S4 s4 = { 5, 6 }; - foo4(0,0,0,0,0,0,0,0, s4); + S4 s4 = { 5, 6 }; + foo4(0,0,0,0,0,0,0,0, s4); - S5 s5 = { 7.0f, 8 }; -// foo5( 1,2,3,4,5,6,7, 10,20,30,40,50,60,70,80, s5 ); -// foo6( 1,2,3,4,5,6,7,8, 10,20,30,40,50,60,70, s5 ); + S5 s5 = { 7.0f, 8 }; + foo5( 1,2,3,4,5,6,7, 10,20,30,40,50,60,70,80, s5 ); + foo6( 1,2,3,4,5,6,7,8, 10,20,30,40,50,60,70, s5 ); - return 0; + return 0; } -- Gitee