diff options
Diffstat (limited to 'Tests/TestDriver/test1.cxx')
-rw-r--r-- | Tests/TestDriver/test1.cxx | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/Tests/TestDriver/test1.cxx b/Tests/TestDriver/test1.cxx index b998fda..59a6fce 100644 --- a/Tests/TestDriver/test1.cxx +++ b/Tests/TestDriver/test1.cxx @@ -5,21 +5,18 @@ int testExtraStuff2(); int test1(int ac, char* av[]) { - if(!testExtraStuff2()) - { + if (!testExtraStuff2()) { return -1; - } - if(!testExtraStuff()) - { + } + if (!testExtraStuff()) { return -1; - } - if(!testExtraStuff3()) - { + } + if (!testExtraStuff3()) { return -1; - } + } printf("test1\n"); - for(int i =0; i < ac; i++) + for (int i = 0; i < ac; i++) printf("arg %d is %s\n", ac, av[i]); return 0; } |