diff options
author | Andreas Jaeger <aj@suse.de> | 2000-08-17 15:41:22 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-08-17 15:41:22 +0000 |
commit | 3a93e252185f933d7e9faceeec1eb5de79b9466f (patch) | |
tree | fe48e2d5eb3ea1e3720c71de296563c747143eae | |
parent | e64911d1d6b3539c69d9cfe4fdaa5841e4f28cc8 (diff) | |
download | glibc-3a93e252185f933d7e9faceeec1eb5de79b9466f.tar.gz glibc-3a93e252185f933d7e9faceeec1eb5de79b9466f.tar.xz glibc-3a93e252185f933d7e9faceeec1eb5de79b9466f.zip |
* tests-mbwc/tst_funcs.h (TST_IF_RETURN): Only test errno if it
should have a value. 2000-08-17 Andreas Jaeger <aj@suse.de> * tests-mbwc/tst_funcs.h (TST_IF_RETURN): Only test errno if it should have a value.
-rw-r--r-- | localedata/ChangeLog | 5 | ||||
-rw-r--r-- | localedata/tests-mbwc/tst_funcs.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 5d3e847c3b..538dd50248 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,8 @@ +2000-08-17 Andreas Jaeger <aj@suse.de> + + * tests-mbwc/tst_funcs.h (TST_IF_RETURN): Only test errno if it + should have a value. + 2000-08-14 Ulrich Drepper <drepper@redhat.com> * locales/iso14651_t1: Rearrange cyrillic and greek sections to diff --git a/localedata/tests-mbwc/tst_funcs.h b/localedata/tests-mbwc/tst_funcs.h index e72154fa74..177ca09567 100644 --- a/localedata/tests-mbwc/tst_funcs.h +++ b/localedata/tests-mbwc/tst_funcs.h @@ -134,7 +134,9 @@ extern int result (FILE * fp, char res, const char *func, const char *loc, #define TST_IF_RETURN(_s_func_) \ if (err_flg == 1) \ { \ - if (errno_save == err_exp) \ + /* If no error occured, errno is undefined. Here we check only if \ + errno has the right value if it should have one. */ \ + if ((err_exp == 0) || (errno_save == err_exp)) \ { \ result (fp, C_SUCCESS, _s_func_, locale, rec+1, seq_num+1, 1, \ MS_PASSED); \ |