summaryrefslogtreecommitdiff
path: root/tests/test-iswxdigit.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2024-10-20 15:22:21 +0200
committerJörg Frings-Fürst <debian@jff.email>2024-10-20 15:22:21 +0200
commit1d8b9e17ea13630aec475484da09ebba0366f7c8 (patch)
tree0c801f68561bfb0930a4ade80d7ca3a7940887ab /tests/test-iswxdigit.c
parent84e26c587987e8484d55db4165f188b40c09e94b (diff)
parent630f99f29bd31a76d8d24da2975a045452c763ef (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'tests/test-iswxdigit.c')
-rw-r--r--tests/test-iswxdigit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test-iswxdigit.c b/tests/test-iswxdigit.c
index f4aeb493..accdd79c 100644
--- a/tests/test-iswxdigit.c
+++ b/tests/test-iswxdigit.c
@@ -113,7 +113,7 @@ main (int argc, char *argv[])
{
case '0':
/* C locale; tested above. */
- return 0;
+ return test_exit_status;
case '1':
/* Locale encoding is ISO-8859-1 or ISO-8859-15. */
@@ -128,7 +128,7 @@ main (int argc, char *argv[])
is = for_character ("\271", 1);
ASSERT (is == 0);
}
- return 0;
+ return test_exit_status;
case '2':
/* Locale encoding is EUC-JP. */
@@ -143,7 +143,7 @@ main (int argc, char *argv[])
is = for_character ("\243\341", 2);
ASSERT (is == 0);
}
- return 0;
+ return test_exit_status;
case '3':
/* Locale encoding is UTF-8. */
@@ -197,7 +197,7 @@ main (int argc, char *argv[])
is = for_character ("\363\240\201\201", 4);
ASSERT (is == 0);
}
- return 0;
+ return test_exit_status;
case '4':
/* Locale encoding is GB18030. */
@@ -251,7 +251,7 @@ main (int argc, char *argv[])
is = for_character ("\323\066\234\063", 4);
ASSERT (is == 0);
}
- return 0;
+ return test_exit_status;
}