summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/_wcsicmp/test1/test1.cpp
blob: dd4bb54680e4753c9bb33e0653daa4a169de5ae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*============================================================================
**
** Source:  test1.c
**
** Purpose: Tests that _wcsicmp correctly compares two strings with 
**          case insensitivity.
**
**
**==========================================================================*/

#include <palsuite.h>

/*
 * Note: The _wcsicmp is dependent on the LC_CTYPE category of the locale,
 *      and this is ignored by these tests.
 */
int __cdecl main(int argc, char *argv[])
{
    WCHAR str1[] = {'f','o','o',0};
    WCHAR str2[] = {'f','O','o',0};
    WCHAR str3[] = {'f','o','o','_','b','a','r',0};
    WCHAR str4[] = {'f','o','o','b','a','r',0};

    /*
     *  Initialize the PAL and return FAIL if this fails
     */
    if (0 != (PAL_Initialize(argc, argv)))
    {
        return FAIL;
    }

    if (_wcsicmp(str1, str2) != 0)
    {
        Fail ("ERROR: _wcsicmp returning incorrect value:\n"
                "_wcsicmp(\"%S\", \"%S\") != 0\n", str1, str2);
    }

    if (_wcsicmp(str2, str3) >= 0)
    {
        Fail ("ERROR: _wcsicmp returning incorrect value:\n"
                "_wcsicmp(\"%S\", \"%S\") >= 0\n", str2, str3);
    }

    if (_wcsicmp(str3, str4) >= 0)
    {
        Fail ("ERROR: _wcsicmp returning incorrect value:\n"
                "_wcsicmp(\"%S\", \"%S\") >= 0\n", str3, str4);
    }

    if (_wcsicmp(str4, str1) <= 0)
    {
        Fail ("ERROR: _wcsicmp returning incorrect value:\n"
                "_wcsicmp(\"%S\", \"%S\") <= 0\n", str4, str1);
    }

    if (_wcsicmp(str3, str2) <= 0)
    {
        Fail ("ERROR: _wcsicmp returning incorrect value:\n"
                "_wcsicmp(\"%S\", \"%S\") <= 0\n", str2, str3);
    }

    PAL_Terminate();
    return PASS;
}