summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/_stricmp/test1/test1.c
blob: 60e2f9eb8b844d77eab149adc2609887e9276436 (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
69
70
// 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: Do a lower case compare.  Check two strings, only different 
** because they have different capitalization, and they should return 0. Try 
** two strings which will return less than 0 (one is smaller than the other).
** Also try the opposite, to get a return value greater than 0.
**
**
**==========================================================================*/

#include <palsuite.h>

/*
 * Note: The _stricmp is dependent on the LC_CTYPE category of the locale,
 *      and this is ignored by these tests.
 */
int __cdecl main(int argc, char *argv[])
{
    char *str1 = "foo";
    char *str2 = "fOo";
    char *str3 = "foo_bar";
    char *str4 = "foobar";

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

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

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

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

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

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

    PAL_Terminate();
    return PASS;
}