2 * Test basic features of coloredstderr.
4 * Copyright (C) 2013 Simon Ruderich
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.
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.
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/>.
27 #include "../src/compiler.h"
30 int main(int argc, char **argv unused) {
31 fprintf(stderr, "write to stderr: %d\n", argc);
32 printf("write to stdout\n");
38 write(STDERR_FILENO, "write to stderr 2", 17);
39 write(STDOUT_FILENO, "write to stdout 2", 17);
41 fprintf(stderr, "\n");
42 fprintf(stdout, "\n");
45 /* Check usage of tracked_fds_list (at least in parts). No error checking
47 dup2(STDERR_FILENO, 471);
49 write(471, "more on stderr\n", 15);
51 dup2(STDOUT_FILENO, 471);
52 write(42, "stderr ...\n", 11);
53 write(471, "more on stdout\n", 15);
55 /* Glibc uses __overflow() for this ... */
56 putc_unlocked('x', stderr);
57 putc_unlocked('\n', stdout);