]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blob - tests/example.c
tests/example.c: Use errno = ENOMEM.
[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
29
30 int main(int argc, char **argv unused) {
31     fprintf(stderr, "write to stderr: %d\n", argc);
32     printf("write to stdout\n");
33     fflush(stdout);
34
35     errno = ENOMEM;
36     perror("error!");
37
38     write(STDERR_FILENO, "write to stderr 2", 17);
39     write(STDOUT_FILENO, "write to stdout 2", 17);
40
41     fprintf(stderr, "\n");
42     fprintf(stdout, "\n");
43     fflush(stdout);
44
45     /* Check usage of tracked_fds_list (at least in parts). No error checking
46      * here! */
47     dup2(STDERR_FILENO, 471);
48     dup2(471, 42);
49     write(471, "more on stderr\n", 15);
50     close(471);
51     dup2(STDOUT_FILENO, 471);
52     write(42, "stderr ...\n", 11);
53     write(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     close(-42);
61     close(-4711);
62     /* Can't test this, results in a segfault with the "normal" fclose(). */
63     /*fclose(NULL);*/
64     dup(-12);
65     dup2(12, -42);
66
67     return EXIT_SUCCESS;
68 }