diff options
Diffstat (limited to 'test/SharedLibrary.py')
-rw-r--r-- | test/SharedLibrary.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/test/SharedLibrary.py b/test/SharedLibrary.py index 185cf9f..72f8770 100644 --- a/test/SharedLibrary.py +++ b/test/SharedLibrary.py @@ -68,7 +68,7 @@ test.write('foo.c', r""" void f1(void) { - printf("foo.c\n"); + printf("foo.c\n"); fflush(stdout); } """) @@ -80,7 +80,7 @@ test.write('f1.c', r""" void f1(void) { - printf("f1.c\n"); + printf("f1.c\n"); fflush(stdout); } """) @@ -97,7 +97,7 @@ test.write('f2a.c', r""" void f2a(void) { - printf("f2a.c\n"); + printf("f2a.c\n"); } """) @@ -105,7 +105,7 @@ test.write('f2b.c', r""" void f2b(void) { - printf("f2b.c\n"); + printf("f2b.c\n"); } """) @@ -115,7 +115,7 @@ test.write('f2c.c', r""" void f2c(void) { - printf("f2c.c\n"); + printf("f2c.c\n"); fflush(stdout); } """) @@ -134,7 +134,7 @@ test.write('f3a.c', r""" void f3a(void) { - printf("f3a.c\n"); + printf("f3a.c\n"); } """) @@ -142,7 +142,7 @@ test.write('f3b.c', r""" void f3b(void) { - printf("f3b.c\n"); + printf("f3b.c\n"); } """) @@ -152,7 +152,7 @@ test.write('f3c.c', r""" void f3c(void) { - printf("f3c.c\n"); + printf("f3c.c\n"); fflush(stdout); } """) @@ -178,15 +178,15 @@ void f3c(void); int main(int argc, char *argv[]) { - argv[argc++] = "--"; - f1(); - f2a(); - f2b(); - f2c(); - f3a(); - f3b(); - f3c(); - printf("prog.c\n"); + argv[argc++] = "--"; + f1(); + f2a(); + f2b(); + f2c(); + f3a(); + f3b(); + f3c(); + printf("prog.c\n"); return 0; } """) |