1*0a6a1f1dSLionel Sambuc /*
2*0a6a1f1dSLionel Sambuc * Automated Testing Framework (atf)
3*0a6a1f1dSLionel Sambuc *
4*0a6a1f1dSLionel Sambuc * Copyright (c) 2008 The NetBSD Foundation, Inc.
5*0a6a1f1dSLionel Sambuc * All rights reserved.
6*0a6a1f1dSLionel Sambuc *
7*0a6a1f1dSLionel Sambuc * Redistribution and use in source and binary forms, with or without
8*0a6a1f1dSLionel Sambuc * modification, are permitted provided that the following conditions
9*0a6a1f1dSLionel Sambuc * are met:
10*0a6a1f1dSLionel Sambuc * 1. Redistributions of source code must retain the above copyright
11*0a6a1f1dSLionel Sambuc * notice, this list of conditions and the following disclaimer.
12*0a6a1f1dSLionel Sambuc * 2. Redistributions in binary form must reproduce the above copyright
13*0a6a1f1dSLionel Sambuc * notice, this list of conditions and the following disclaimer in the
14*0a6a1f1dSLionel Sambuc * documentation and/or other materials provided with the distribution.
15*0a6a1f1dSLionel Sambuc *
16*0a6a1f1dSLionel Sambuc * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17*0a6a1f1dSLionel Sambuc * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18*0a6a1f1dSLionel Sambuc * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19*0a6a1f1dSLionel Sambuc * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20*0a6a1f1dSLionel Sambuc * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21*0a6a1f1dSLionel Sambuc * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22*0a6a1f1dSLionel Sambuc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23*0a6a1f1dSLionel Sambuc * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24*0a6a1f1dSLionel Sambuc * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25*0a6a1f1dSLionel Sambuc * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26*0a6a1f1dSLionel Sambuc * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27*0a6a1f1dSLionel Sambuc * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*0a6a1f1dSLionel Sambuc */
29*0a6a1f1dSLionel Sambuc
30*0a6a1f1dSLionel Sambuc #include <sys/types.h>
31*0a6a1f1dSLionel Sambuc
32*0a6a1f1dSLionel Sambuc #include <assert.h> /* NO_CHECK_STYLE */
33*0a6a1f1dSLionel Sambuc #include <signal.h>
34*0a6a1f1dSLionel Sambuc #include <stdio.h>
35*0a6a1f1dSLionel Sambuc #include <stdlib.h>
36*0a6a1f1dSLionel Sambuc #include <string.h>
37*0a6a1f1dSLionel Sambuc #include <unistd.h>
38*0a6a1f1dSLionel Sambuc
39*0a6a1f1dSLionel Sambuc static
40*0a6a1f1dSLionel Sambuc int
h_echo(const char * msg)41*0a6a1f1dSLionel Sambuc h_echo(const char *msg)
42*0a6a1f1dSLionel Sambuc {
43*0a6a1f1dSLionel Sambuc printf("%s\n", msg);
44*0a6a1f1dSLionel Sambuc return EXIT_SUCCESS;
45*0a6a1f1dSLionel Sambuc }
46*0a6a1f1dSLionel Sambuc
47*0a6a1f1dSLionel Sambuc static
48*0a6a1f1dSLionel Sambuc int
h_exit_failure(void)49*0a6a1f1dSLionel Sambuc h_exit_failure(void)
50*0a6a1f1dSLionel Sambuc {
51*0a6a1f1dSLionel Sambuc return EXIT_FAILURE;
52*0a6a1f1dSLionel Sambuc }
53*0a6a1f1dSLionel Sambuc
54*0a6a1f1dSLionel Sambuc static
55*0a6a1f1dSLionel Sambuc int
h_exit_signal(void)56*0a6a1f1dSLionel Sambuc h_exit_signal(void)
57*0a6a1f1dSLionel Sambuc {
58*0a6a1f1dSLionel Sambuc kill(getpid(), SIGKILL);
59*0a6a1f1dSLionel Sambuc assert(0); /* NO_CHECK_STYLE */
60*0a6a1f1dSLionel Sambuc return EXIT_FAILURE;
61*0a6a1f1dSLionel Sambuc }
62*0a6a1f1dSLionel Sambuc
63*0a6a1f1dSLionel Sambuc static
64*0a6a1f1dSLionel Sambuc int
h_exit_success(void)65*0a6a1f1dSLionel Sambuc h_exit_success(void)
66*0a6a1f1dSLionel Sambuc {
67*0a6a1f1dSLionel Sambuc return EXIT_SUCCESS;
68*0a6a1f1dSLionel Sambuc }
69*0a6a1f1dSLionel Sambuc
70*0a6a1f1dSLionel Sambuc static
71*0a6a1f1dSLionel Sambuc int
h_stdout_stderr(const char * id)72*0a6a1f1dSLionel Sambuc h_stdout_stderr(const char *id)
73*0a6a1f1dSLionel Sambuc {
74*0a6a1f1dSLionel Sambuc fprintf(stdout, "Line 1 to stdout for %s\n", id);
75*0a6a1f1dSLionel Sambuc fprintf(stdout, "Line 2 to stdout for %s\n", id);
76*0a6a1f1dSLionel Sambuc fprintf(stderr, "Line 1 to stderr for %s\n", id);
77*0a6a1f1dSLionel Sambuc fprintf(stderr, "Line 2 to stderr for %s\n", id);
78*0a6a1f1dSLionel Sambuc
79*0a6a1f1dSLionel Sambuc return EXIT_SUCCESS;
80*0a6a1f1dSLionel Sambuc }
81*0a6a1f1dSLionel Sambuc
82*0a6a1f1dSLionel Sambuc static
83*0a6a1f1dSLionel Sambuc void
check_args(const int argc,const char * const argv[],const int required)84*0a6a1f1dSLionel Sambuc check_args(const int argc, const char *const argv[], const int required)
85*0a6a1f1dSLionel Sambuc {
86*0a6a1f1dSLionel Sambuc if (argc < required) {
87*0a6a1f1dSLionel Sambuc fprintf(stderr, "Usage: %s helper-name [args]\n", argv[0]);
88*0a6a1f1dSLionel Sambuc exit(EXIT_FAILURE);
89*0a6a1f1dSLionel Sambuc }
90*0a6a1f1dSLionel Sambuc }
91*0a6a1f1dSLionel Sambuc
92*0a6a1f1dSLionel Sambuc int
main(int argc,const char * const argv[])93*0a6a1f1dSLionel Sambuc main(int argc, const char *const argv[])
94*0a6a1f1dSLionel Sambuc {
95*0a6a1f1dSLionel Sambuc int exitcode;
96*0a6a1f1dSLionel Sambuc
97*0a6a1f1dSLionel Sambuc check_args(argc, argv, 2);
98*0a6a1f1dSLionel Sambuc
99*0a6a1f1dSLionel Sambuc if (strcmp(argv[1], "echo") == 0) {
100*0a6a1f1dSLionel Sambuc check_args(argc, argv, 3);
101*0a6a1f1dSLionel Sambuc exitcode = h_echo(argv[2]);
102*0a6a1f1dSLionel Sambuc } else if (strcmp(argv[1], "exit-failure") == 0)
103*0a6a1f1dSLionel Sambuc exitcode = h_exit_failure();
104*0a6a1f1dSLionel Sambuc else if (strcmp(argv[1], "exit-signal") == 0)
105*0a6a1f1dSLionel Sambuc exitcode = h_exit_signal();
106*0a6a1f1dSLionel Sambuc else if (strcmp(argv[1], "exit-success") == 0)
107*0a6a1f1dSLionel Sambuc exitcode = h_exit_success();
108*0a6a1f1dSLionel Sambuc else if (strcmp(argv[1], "stdout-stderr") == 0) {
109*0a6a1f1dSLionel Sambuc check_args(argc, argv, 3);
110*0a6a1f1dSLionel Sambuc exitcode = h_stdout_stderr(argv[2]);
111*0a6a1f1dSLionel Sambuc } else {
112*0a6a1f1dSLionel Sambuc fprintf(stderr, "%s: Unknown helper %s\n", argv[0], argv[1]);
113*0a6a1f1dSLionel Sambuc exitcode = EXIT_FAILURE;
114*0a6a1f1dSLionel Sambuc }
115*0a6a1f1dSLionel Sambuc
116*0a6a1f1dSLionel Sambuc return exitcode;
117*0a6a1f1dSLionel Sambuc }
118