mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 22:15:31 +00:00
ICU-534 fix for compiler optimization on Windows 2000/Solaris CC.
X-SVN-Rev: 2119
This commit is contained in:
parent
1a9b1ef2ee
commit
a99304e373
1 changed files with 9 additions and 3 deletions
|
@ -105,6 +105,11 @@ void TestOtherAPI(void){
|
|||
UErrorCode status = U_ZERO_ERROR;
|
||||
UHashtable *hash;
|
||||
UChar key[10];
|
||||
|
||||
/* Use the correct type when cast to void * */
|
||||
const UChar one[4] = {'o', 'n', 'e', '\0'};
|
||||
const UChar one2[4] = {'o', 'n', 'e', '\0'};/* Get around compiler optimizations */
|
||||
const UChar two[4] = {'t', 'w', 'o', '\0'};
|
||||
|
||||
|
||||
hash = uhash_open(uhash_hashUChars, uhash_compareUChars, &status);
|
||||
|
@ -155,9 +160,10 @@ void TestOtherAPI(void){
|
|||
|
||||
status=U_ZERO_ERROR;
|
||||
uhash_put(hash, (void*)u_uastrcpy(key, "one"), (void*)1, &status);
|
||||
if(uhash_compareUChars((void*)"one", (void*)"two") == TRUE ||
|
||||
uhash_compareUChars((void*)"one", (void*)"one") != TRUE ||
|
||||
uhash_compareUChars((void*)"one", NULL) == TRUE ) {
|
||||
if(uhash_compareUChars((void*)one, (void*)two) == TRUE ||
|
||||
uhash_compareUChars((void*)one, (void*)one) != TRUE ||
|
||||
uhash_compareUChars((void*)one, (void*)one2) != TRUE ||
|
||||
uhash_compareUChars((void*)one, NULL) == TRUE ) {
|
||||
log_err("FAIL: compareUChars failed\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue