]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blob - tests/example_err.c
update copyright year
[coloredstderr/coloredstderr.git] / tests / example_err.c
1 /*
2  * Test err(), verr(), ... Non-standard, BSD only.
3  *
4  * Copyright (C) 2013-2015  Simon Ruderich
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <config.h>
21
22 #include <err.h>
23 #include <errno.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
28 #include <unistd.h>
29
30 #include "../src/compiler.h"
31 #include "example.h"
32
33
34 int main(int argc unused, char **argv unused) {
35     pid_t pid;
36
37     FORKED_TEST(pid) { errno = ENOMEM; err(0, "error: %s", "message"); }
38     FORKED_TEST(pid) { errno = ENOMEM; err(1, "error: %s", "message"); }
39
40     FORKED_TEST(pid) { errx(0, "error: %s", "message"); }
41     FORKED_TEST(pid) { errx(1, "error: %s", "message"); }
42
43     errno = ENOMEM;
44     warn("warning: %s", "message");
45     warnx("warning: %s", "message");
46
47     /* v*() functions are implicitly tested - the implementation uses them. */
48
49     printf("\n");
50     return EXIT_SUCCESS;
51 }