summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2021-12-22 08:51:41 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2021-12-22 15:29:55 +0900
commit5bdeedb3429fa460a476c78c7bec8cc1a884ddbd (patch)
tree2435523c787f95bdcd9a8e5ac0df219c5153c165 /src
parent95d88436eaa840b93fc3eda4737d3aa6a04ea3fe (diff)
downloadsystemd-5bdeedb3429fa460a476c78c7bec8cc1a884ddbd.tar.gz
test: add test for errno-list.[ch]
Diffstat (limited to 'src')
-rw-r--r--src/test/meson.build3
-rw-r--r--src/test/test-errno-list.c33
2 files changed, 36 insertions, 0 deletions
diff --git a/src/test/meson.build b/src/test/meson.build
index 71d2422caf..9a1c481f22 100644
--- a/src/test/meson.build
+++ b/src/test/meson.build
@@ -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]],
diff --git a/src/test/test-errno-list.c b/src/test/test-errno-list.c
new file mode 100644
index 0000000000..6c8f384cab
--- /dev/null
+++ b/src/test/test-errno-list.c
@@ -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);