dfregress - An automated test driver and framework
[dragonfly.git] / test / dfregress / testcases / sample / test3 / test3.c
1 #include <stdio.h>
2
3 int main(void)
4 {
5         printf("Hi <string>!\n");
6
7         fprintf(stderr, "Ho, I'll fail miserably with exit code 33!\n");
8         return 33;
9 }