summaryrefslogtreecommitdiffstats
path: root/Tests/TestDriver/test1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestDriver/test1.cxx')
-rw-r--r--Tests/TestDriver/test1.cxx17
1 files changed, 17 insertions, 0 deletions
diff --git a/Tests/TestDriver/test1.cxx b/Tests/TestDriver/test1.cxx
index 40aa8d7..1ee7e99 100644
--- a/Tests/TestDriver/test1.cxx
+++ b/Tests/TestDriver/test1.cxx
@@ -1,6 +1,23 @@
#include <stdio.h>
+int testExtraStuff3();
+int testExtraStuff();
+int testExtraStuff2();
+
int test1(int ac, char** av)
{
+ if(!testExtraStuff2())
+ {
+ return -1;
+ }
+ if(!testExtraStuff())
+ {
+ return -1;
+ }
+ if(!testExtraStuff3())
+ {
+ return -1;
+ }
+
printf("test1\n");
for(int i =0; i < ac; i++)
printf("arg %d is %s\n", ac, av[i]);