mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-03-13 12:58:20 +03:00
test: add test for errno-list.[ch]
This commit is contained in:
parent
95d88436ea
commit
5bdeedb342
src/test
@ -574,6 +574,9 @@ tests += [
|
||||
[['src/test/test-arphrd-util.c',
|
||||
generated_gperf_headers]],
|
||||
|
||||
[['src/test/test-errno-list.c',
|
||||
generated_gperf_headers]],
|
||||
|
||||
[['src/test/test-ip-protocol-list.c',
|
||||
shared_generated_gperf_headers]],
|
||||
|
||||
|
33
src/test/test-errno-list.c
Normal file
33
src/test/test-errno-list.c
Normal file
@ -0,0 +1,33 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
|
||||
#include <errno.h>
|
||||
|
||||
#include "errno-list.h"
|
||||
#include "errno-to-name.h"
|
||||
#include "macro.h"
|
||||
#include "string-util.h"
|
||||
#include "tests.h"
|
||||
#include "util.h"
|
||||
|
||||
TEST(errno_list) {
|
||||
for (size_t i = 0; i < ELEMENTSOF(errno_names); i++) {
|
||||
if (errno_names[i]) {
|
||||
assert_se(streq(errno_to_name(i), errno_names[i]));
|
||||
assert_se(errno_from_name(errno_names[i]) == (int) i);
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef ECANCELLED
|
||||
/* ECANCELLED is an alias of ECANCELED. */
|
||||
assert_se(streq(errno_to_name(ECANCELLED), "ECANCELED"));
|
||||
#endif
|
||||
assert_se(streq(errno_to_name(ECANCELED), "ECANCELED"));
|
||||
|
||||
#ifdef EREFUSED
|
||||
/* EREFUSED is an alias of ECONNREFUSED. */
|
||||
assert_se(streq(errno_to_name(EREFUSED), "ECONNREFUSED"));
|
||||
#endif
|
||||
assert_se(streq(errno_to_name(ECONNREFUSED), "ECONNREFUSED"));
|
||||
}
|
||||
|
||||
DEFINE_TEST_MAIN(LOG_INFO);
|
Loading…
x
Reference in New Issue
Block a user