]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blob - tests/example.c
tests: Check return values of write() and dup2().
[coloredstderr/coloredstderr.git] / tests / example.c
1 /*
2  * Test basic features of coloredstderr.
3  *
4  * Copyright (C) 2013  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 <stdio.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <errno.h>
26
27 #include "../src/compiler.h"
28 #include "example.h"
29
30
31 int main(int argc, char **argv unused) {
32     fprintf(stderr, "write to stderr: %d\n", argc);
33     printf("write to stdout\n");
34     fflush(stdout);
35
36     errno = ENOMEM;
37     perror("error!");
38
39     xwrite(STDERR_FILENO, "write to stderr 2", 17);
40     xwrite(STDOUT_FILENO, "write to stdout 2", 17);
41
42     fprintf(stderr, "\n");
43     fprintf(stdout, "\n");
44     fflush(stdout);
45
46     /* Check usage of tracked_fds_list (at least in parts). */
47     xdup2(STDERR_FILENO, 471);
48     xdup2(471, 42);
49     xwrite(471, "more on stderr\n", 15);
50     close(471);
51     xdup2(STDOUT_FILENO, 471);
52     xwrite(42, "stderr ...\n", 11);
53     xwrite(471, "more on stdout\n", 15);
54
55     /* Glibc uses __overflow() for this ... */
56     putc_unlocked('x', stderr);
57     putc_unlocked('\n', stdout);
58
59     /* Test invalid stuff. */
60     write(-3, "foo", 3);
61     close(-42);
62     close(-4711);
63     /* Can't test this, results in a segfault with the "normal" fclose(). */
64     /*fclose(NULL);*/
65     dup(-12);
66     dup2(12, -42);
67
68     return EXIT_SUCCESS;
69 }