summaryrefslogtreecommitdiff
path: root/tests/unistr/test-u8-mbtouc.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unistr/test-u8-mbtouc.h')
-rw-r--r--tests/unistr/test-u8-mbtouc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unistr/test-u8-mbtouc.h b/tests/unistr/test-u8-mbtouc.h
index bcafb05..295160d 100644
--- a/tests/unistr/test-u8-mbtouc.h
+++ b/tests/unistr/test-u8-mbtouc.h
@@ -1,5 +1,5 @@
/* Test of u8_mbtouc() and u8_mbtouc_unsafe() functions.
- Copyright (C) 2010 Free Software Foundation, Inc.
+ Copyright (C) 2010-2015 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -166,14 +166,14 @@ test_function (int (*my_u8_mbtouc) (ucs4_t *, const uint8_t *, size_t))
static const uint8_t input[] = { 0xF3, 0xD0, 0xBF };
uc = 0xBADFACE;
ret = my_u8_mbtouc (&uc, input, 3);
- ASSERT (ret == 1 || ret == 3);
+ ASSERT (ret == 1);
ASSERT (uc == 0xFFFD);
}
{
static const uint8_t input[] = { 0xF3, 0x8F, 0xD0 };
uc = 0xBADFACE;
ret = my_u8_mbtouc (&uc, input, 3);
- ASSERT (ret == 1 || ret == 3);
+ ASSERT (ret == 2);
ASSERT (uc == 0xFFFD);
}
}