]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/19_diagnostics/headers/system_error/errc_std_c++0x.cc
hosthooks.h: Fix GCC_HOST_HOOKS_H typo
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 19_diagnostics / headers / system_error / errc_std_c++0x.cc
CommitLineData
52066eae 1// { dg-do compile { target c++11 } }
92010a79 2
a945c346 3// Copyright (C) 2007-2024 Free Software Foundation, Inc.
92010a79
CF
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
92010a79
CF
9// any later version.
10
11// This library 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 along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
92010a79
CF
19
20#include <system_error>
21
22#define TEST_ERRC(x) errc x(errc::x); (void)x
23
24void test01()
25{
26 using std::errc;
27
28 TEST_ERRC(address_family_not_supported);
29 TEST_ERRC(address_in_use);
30 TEST_ERRC(address_not_available);
31 TEST_ERRC(already_connected);
32 TEST_ERRC(argument_list_too_long);
33 TEST_ERRC(argument_out_of_domain);
34 TEST_ERRC(bad_address);
35 TEST_ERRC(bad_file_descriptor);
36
a2c2eec1 37#ifdef EBADMSG
92010a79
CF
38 TEST_ERRC(bad_message);
39#endif
40
41 TEST_ERRC(broken_pipe);
42 TEST_ERRC(connection_aborted);
43 TEST_ERRC(connection_already_in_progress);
44 TEST_ERRC(connection_refused);
45 TEST_ERRC(connection_reset);
46 TEST_ERRC(cross_device_link);
47 TEST_ERRC(destination_address_required);
48 TEST_ERRC(device_or_resource_busy);
49 TEST_ERRC(directory_not_empty);
50 TEST_ERRC(executable_format_error);
51 TEST_ERRC(file_exists);
52 TEST_ERRC(file_too_large);
53 TEST_ERRC(filename_too_long);
54 TEST_ERRC(function_not_supported);
55 TEST_ERRC(host_unreachable);
56
a2c2eec1 57#ifdef EIDRM
92010a79
CF
58 TEST_ERRC(identifier_removed);
59#endif
60
61 TEST_ERRC(illegal_byte_sequence);
62 TEST_ERRC(inappropriate_io_control_operation);
63 TEST_ERRC(interrupted);
64 TEST_ERRC(invalid_argument);
65 TEST_ERRC(invalid_seek);
66 TEST_ERRC(io_error);
67 TEST_ERRC(is_a_directory);
68 TEST_ERRC(message_size);
69 TEST_ERRC(network_down);
70 TEST_ERRC(network_reset);
71 TEST_ERRC(network_unreachable);
72 TEST_ERRC(no_buffer_space);
9149a5b7
EB
73
74#ifdef ECHILD
92010a79 75 TEST_ERRC(no_child_process);
9149a5b7 76#endif
92010a79 77
a2c2eec1 78#ifdef ENOLINK
92010a79
CF
79 TEST_ERRC(no_link);
80#endif
81
82 TEST_ERRC(no_lock_available);
83
a2c2eec1 84#ifdef ENODATA
92010a79
CF
85 TEST_ERRC(no_message_available);
86#endif
87
a2c2eec1 88#ifdef ENOMSG
92010a79 89 TEST_ERRC(no_message);
e76d3098 90#endif
92010a79 91 TEST_ERRC(no_protocol_option);
9149a5b7
EB
92
93#ifdef ENOSPC
92010a79 94 TEST_ERRC(no_space_on_device);
9149a5b7 95#endif
92010a79 96
a2c2eec1 97#ifdef ENOSR
92010a79
CF
98 TEST_ERRC(no_stream_resources);
99#endif
100
101 TEST_ERRC(no_such_device_or_address);
102 TEST_ERRC(no_such_device);
103 TEST_ERRC(no_such_file_or_directory);
104 TEST_ERRC(no_such_process);
105 TEST_ERRC(not_a_directory);
106 TEST_ERRC(not_a_socket);
107
a2c2eec1 108#ifdef ENOSTR
92010a79
CF
109 TEST_ERRC(not_a_stream);
110#endif
111
a2c2eec1 112 TEST_ERRC(not_connected);
92010a79 113 TEST_ERRC(not_enough_memory);
9149a5b7
EB
114
115#ifdef ENOTSUP
92010a79 116 TEST_ERRC(not_supported);
9149a5b7 117#endif
92010a79 118
a2c2eec1 119#ifdef ECANCELED
92010a79
CF
120 TEST_ERRC(operation_canceled);
121#endif
122
123 TEST_ERRC(operation_in_progress);
9149a5b7
EB
124
125#ifdef EPERM
92010a79 126 TEST_ERRC(operation_not_permitted);
9149a5b7
EB
127#endif
128
92010a79 129 TEST_ERRC(operation_not_supported);
9149a5b7
EB
130
131#ifdef EWOULDBLOCK
92010a79 132 TEST_ERRC(operation_would_block);
9149a5b7 133#endif
92010a79 134
a2c2eec1 135#ifdef EOWNERDEAD
92010a79
CF
136 TEST_ERRC(owner_dead);
137#endif
138
139 TEST_ERRC(permission_denied);
140
a2c2eec1 141#ifdef EPROTO
92010a79
CF
142 TEST_ERRC(protocol_error);
143#endif
144
145 TEST_ERRC(protocol_not_supported);
146 TEST_ERRC(read_only_file_system);
147 TEST_ERRC(resource_deadlock_would_occur);
a2c2eec1 148 TEST_ERRC(resource_unavailable_try_again);
92010a79
CF
149 TEST_ERRC(result_out_of_range);
150
a2c2eec1 151#ifdef ENOTRECOVERABLE
92010a79
CF
152 TEST_ERRC(state_not_recoverable);
153#endif
154
a2c2eec1 155#ifdef ETIME
92010a79
CF
156 TEST_ERRC(stream_timeout);
157#endif
158
a2c2eec1 159#ifdef ETXTBSY
92010a79
CF
160 TEST_ERRC(text_file_busy);
161#endif
162
9149a5b7 163#ifdef ETIMEDOUT
92010a79 164 TEST_ERRC(timed_out);
9149a5b7
EB
165#endif
166
92010a79
CF
167 TEST_ERRC(too_many_files_open_in_system);
168 TEST_ERRC(too_many_files_open);
169 TEST_ERRC(too_many_links);
170 TEST_ERRC(too_many_symbolic_link_levels);
171
a2c2eec1 172#ifdef EOVERFLOW
92010a79
CF
173 TEST_ERRC(value_too_large);
174#endif
175
176 TEST_ERRC(wrong_protocol_type);
177}