aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_strerror.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-01-11 12:33:18 -0500
committerDavid Robillard <d@drobilla.net>2023-01-11 12:33:18 -0500
commit5533749ee6a66a7b4a6efd205734b8b3f82b72e7 (patch)
tree684aca37bb5c655d58bb1744251fe946a5100dc7 /test/test_strerror.c
parent704d25d38bf64b2481d8fc40a79cc47d601cc40f (diff)
downloadpugl-5533749ee6a66a7b4a6efd205734b8b3f82b72e7.tar.gz
pugl-5533749ee6a66a7b4a6efd205734b8b3f82b72e7.tar.bz2
pugl-5533749ee6a66a7b4a6efd205734b8b3f82b72e7.zip
Fix coverage of puglStrerror test
Diffstat (limited to 'test/test_strerror.c')
-rw-r--r--test/test_strerror.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_strerror.c b/test/test_strerror.c
index ec96ecb..c120a93 100644
--- a/test/test_strerror.c
+++ b/test/test_strerror.c
@@ -14,7 +14,7 @@
int
main(void)
{
- for (unsigned i = 0; i <= PUGL_UNSUPPORTED; ++i) {
+ for (unsigned i = 0; i <= PUGL_NO_MEMORY; ++i) {
const char* const string = puglStrerror((PuglStatus)i);
assert(isupper(string[0]));