diff options
Diffstat (limited to 'tests/test-c-strcasecmp.c')
| -rw-r--r-- | tests/test-c-strcasecmp.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/tests/test-c-strcasecmp.c b/tests/test-c-strcasecmp.c index f7f6b43a..42e538fe 100644 --- a/tests/test-c-strcasecmp.c +++ b/tests/test-c-strcasecmp.c @@ -1,5 +1,5 @@  /* Test of case-insensitive string comparison function. -   Copyright (C) 2007-2015 Free Software Foundation, Inc. +   Copyright (C) 2007-2016 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 @@ -19,6 +19,7 @@  #include <config.h>  #include "c-strcase.h" +#include "c-ctype.h"  #include <locale.h>  #include <string.h> @@ -57,9 +58,11 @@ main (int argc, char *argv[])    ASSERT (c_strcasecmp ("\303\266zg\303\274r", "\303\226ZG\303\234R") > 0); /* özgür */    ASSERT (c_strcasecmp ("\303\226ZG\303\234R", "\303\266zg\303\274r") < 0); /* özgür */ +#if C_CTYPE_ASCII    /* This test shows how strings of different size cannot compare equal.  */    ASSERT (c_strcasecmp ("turkish", "TURK\304\260SH") < 0);    ASSERT (c_strcasecmp ("TURK\304\260SH", "turkish") > 0); +#endif    return 0;  } | 
