STYLE: Nightly Version update
[cmake.git] / Tests / TestDriver / test1.cxx
blobac82f8ae9a1c0bc4bb35d54de0e226ff3c34259a
1 #include <stdio.h>
2 int testExtraStuff3();
3 int testExtraStuff();
4 int testExtraStuff2();
6 int test1(int ac, char* av[])
8 if(!testExtraStuff2())
10 return -1;
12 if(!testExtraStuff())
14 return -1;
16 if(!testExtraStuff3())
18 return -1;
21 printf("test1\n");
22 for(int i =0; i < ac; i++)
23 printf("arg %d is %s\n", ac, av[i]);
24 return 0;