diff options
| author | Jose Luis Duran <jlduran@FreeBSD.org> | 2025-11-26 20:34:55 +0000 |
|---|---|---|
| committer | Jose Luis Duran <jlduran@FreeBSD.org> | 2025-11-26 20:34:55 +0000 |
| commit | 1fd018972a18b682521bb8f004dfd162327e5db2 (patch) | |
| tree | 1797abcca8447d97e031db19a1c84a5bef79592c /lib/libc/tests | |
| parent | 19e153004fb63c32eba0ef40249f5ede61a93170 (diff) | |
Diffstat (limited to 'lib/libc/tests')
| -rw-r--r-- | lib/libc/tests/stdlib/strfmon_test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/tests/stdlib/strfmon_test.c b/lib/libc/tests/stdlib/strfmon_test.c index 3c97d61ba82c..165ddcc2ab56 100644 --- a/lib/libc/tests/stdlib/strfmon_test.c +++ b/lib/libc/tests/stdlib/strfmon_test.c @@ -234,11 +234,11 @@ ATF_TC_BODY(strfmon_plus_or_parenthesis, tc) if (setlocale(LC_MONETARY, "C") == NULL) atf_tc_skip("unable to setlocale(): %s", tests[i].locale); - /* ATF_CHECK_ERRNO(EINVAL, strfmon(actual, sizeof(actual) - 1, - "[%+n] [%+n]", 123.45, -123.45)); XXX */ + ATF_CHECK_ERRNO(EINVAL, strfmon(actual, sizeof(actual) - 1, + "[%+n] [%+n]", 123.45, -123.45)); - /* ATF_CHECK_ERRNO(EINVAL, strfmon(actual, sizeof(actual) - 1, - "[%+i] [%+i]", 123.45, -123.45)); XXX */ + ATF_CHECK_ERRNO(EINVAL, strfmon(actual, sizeof(actual) - 1, + "[%+i] [%+i]", 123.45, -123.45)); } ATF_TC(strfmon_l); |
