summaryrefslogtreecommitdiffstats
path: root/test/strerror_test.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-18 13:18:52 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 14:33:37 -0400
commitf65912600fc301cbdbb613f1df0dc29820f1da35 (patch)
tree43db69627433fbb8f5acd13c6cf0ef8a3c3b829d /test/strerror_test.c
parentc4b8ca3dc222b06c40ebcb416d653e17e88de858 (diff)
downloadzix-f65912600fc301cbdbb613f1df0dc29820f1da35.tar.gz
zix-f65912600fc301cbdbb613f1df0dc29820f1da35.tar.bz2
zix-f65912600fc301cbdbb613f1df0dc29820f1da35.zip
Use conventional test executable names
Diffstat (limited to 'test/strerror_test.c')
-rw-r--r--test/strerror_test.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/strerror_test.c b/test/strerror_test.c
deleted file mode 100644
index 2f4c090..0000000
--- a/test/strerror_test.c
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2021 David Robillard <d@drobilla.net>
-// SPDX-License-Identifier: ISC
-
-#undef NDEBUG
-
-#include "zix/common.h"
-
-#include <assert.h>
-#include <stdio.h>
-#include <string.h>
-
-int
-main(void)
-{
- const char* msg = zix_strerror(ZIX_STATUS_SUCCESS);
- assert(!strcmp(msg, "Success"));
-
- for (int i = ZIX_STATUS_ERROR; i <= ZIX_STATUS_REACHED_END; ++i) {
- msg = zix_strerror((ZixStatus)i);
- assert(strcmp(msg, "Success"));
- }
-
- msg = zix_strerror((ZixStatus)-1);
- assert(!strcmp(msg, "Unknown error"));
-
- msg = zix_strerror((ZixStatus)1000000);
- assert(!strcmp(msg, "Unknown error"));
-
- printf("Success\n");
- return 0;
-}