diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-10-20 15:21:58 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-10-20 15:21:58 +0200 |
commit | 630f99f29bd31a76d8d24da2975a045452c763ef (patch) | |
tree | 0c801f68561bfb0930a4ade80d7ca3a7940887ab /tests/test-iswxdigit.c | |
parent | 84e26c587987e8484d55db4165f188b40c09e94b (diff) | |
parent | 4682deeb62247d34de87f8e777f99e2d337fd377 (diff) |
Update upstream source from tag 'upstream/1.3'
Update to upstream version '1.3'
with Debian dir 8a8e4828ddf646ece6c109b401e08d162be35936
Diffstat (limited to 'tests/test-iswxdigit.c')
-rw-r--r-- | tests/test-iswxdigit.c | 10 |
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; } |