annotate tests/test-stdio.c @ 17363:5a51fb7777a9

sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin Problem reported by Marco Atzeri in <http://lists.gnu.org/archive/html/bug-gnulib/2013-03/msg00000.html>. * lib/sys_select.in.h [HAVE_SYS_SELECT_H && _CYGWIN_SYS_TIME_H]: Simply delegate to the system <sys/select.h> in this case too. Also, pay attention to _GL_SYS_SELECT_H_REDIRECT_FROM_SYS_TIME_H only if OSF/1, since otherwise Cygwin breaks, and it doesn't seem to be needed on Solaris either. * lib/sys_time.in.h [_CYGWIN_SYS_TIME_H]: Simply delgate to the system <sys/time.h> in this case.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 19 Mar 2013 09:08:47 -0700
parents e542fd46ad6f
children 344018b6e5d7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8212
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Test of <stdio.h> substitute.
17249
e542fd46ad6f maint: update all copyright year number ranges
Eric Blake <eblake@redhat.com>
parents: 16201
diff changeset
2 Copyright (C) 2007, 2009-2013 Free Software Foundation, Inc.
8212
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8706
diff changeset
4 This program is free software: you can redistribute it and/or modify
8212
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8706
diff changeset
6 the Free Software Foundation; either version 3 of the License, or
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8706
diff changeset
7 (at your option) any later version.
8212
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 GNU General Public License for more details.
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8706
diff changeset
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
8212
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 #include <config.h>
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 #include <stdio.h>
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
11658
8b1dcb465dff tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents: 9309
diff changeset
23 #include "verify.h"
8b1dcb465dff tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents: 9309
diff changeset
24
8706
6241ddf70c2e Ensure that <unistd.h> and <fcntl.h> define SEEK_CUR etc.
Bruno Haible <bruno@clisp.org>
parents: 8212
diff changeset
25 /* Check that the various SEEK_* macros are defined. */
6241ddf70c2e Ensure that <unistd.h> and <fcntl.h> define SEEK_CUR etc.
Bruno Haible <bruno@clisp.org>
parents: 8212
diff changeset
26 int sk[] = { SEEK_CUR, SEEK_END, SEEK_SET };
6241ddf70c2e Ensure that <unistd.h> and <fcntl.h> define SEEK_CUR etc.
Bruno Haible <bruno@clisp.org>
parents: 8212
diff changeset
27
11658
8b1dcb465dff tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents: 9309
diff changeset
28 /* Check that NULL can be passed through varargs as a pointer type,
8b1dcb465dff tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents: 9309
diff changeset
29 per POSIX 2008. */
11831
60a86ea77948 Revert "Avoid compilation error on NetBSD 5.0."
Eric Blake <ebb9@byu.net>
parents: 11806
diff changeset
30 verify (sizeof NULL == sizeof (void *));
11658
8b1dcb465dff tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents: 9309
diff changeset
31
12600
742a202062e7 stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
32 /* Check that the types are all defined. */
742a202062e7 stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
33 fpos_t t1;
742a202062e7 stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
34 off_t t2;
742a202062e7 stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
35 size_t t3;
742a202062e7 stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
36 ssize_t t4;
742a202062e7 stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
37 va_list t5;
742a202062e7 stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
38
8212
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 int
12197
e45d9bb2233e tests: avoid several compiler warnings
Eric Blake <ebb9@byu.net>
parents: 11831
diff changeset
40 main (void)
8212
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 {
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42 return 0;
44f4eff95921 Tests for module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43 }