summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/_strnicmp/test1/test1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime/_strnicmp/test1/test1.cpp')
-rw-r--r--src/pal/tests/palsuite/c_runtime/_strnicmp/test1/test1.cpp85
1 files changed, 85 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/_strnicmp/test1/test1.cpp b/src/pal/tests/palsuite/c_runtime/_strnicmp/test1/test1.cpp
new file mode 100644
index 0000000000..3c915dc621
--- /dev/null
+++ b/src/pal/tests/palsuite/c_runtime/_strnicmp/test1/test1.cpp
@@ -0,0 +1,85 @@
+// 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: Test #1 for the _strnicmp function
+**
+**
+**==========================================================================*/
+
+#include <palsuite.h>
+
+
+int __cdecl main(int argc, char *argv[])
+{
+ char str1[] = "foo";
+ char str2[] = "foox";
+ char str3[] = "fOo";
+ char str4[] = "ABCDE";
+ char str5[] = "ABCD[";
+ char str6[] = "abcde";
+ char str7[] = "abcd^";
+
+ /*
+ * Initialize the PAL and return FAIL if this fails
+ */
+ if (0 != (PAL_Initialize(argc, argv)))
+ {
+ return FAIL;
+ }
+
+ if (_strnicmp(str1, str2, strlen(str2)) >= 0)
+ {
+ Fail ("ERROR: _strnicmp(\"%s\", \"%s\", %d) returned >= 0\n",
+ str1, str2, strlen(str2));
+ }
+
+ if (_strnicmp(str2, str1, strlen(str2)) <= 0)
+ {
+ Fail ("ERROR: _strnicmp(\"%s\", \"%s\", %d) returned <= 0\n",
+ str2, str1, strlen(str2));
+ }
+
+ if (_strnicmp(str1, str2, strlen(str1)) != 0)
+ {
+ Fail ("ERROR: _strnicmp(\"%s\", \"%s\", %d) returned != 0\n",
+ str1, str2, strlen(str1));
+ }
+
+ if (_strnicmp(str1, str3, strlen(str1)) != 0)
+ {
+ Fail ("ERROR: _strnicmp(\"%s\", \"%s\", %d) returned != 0\n",
+ str1, str3, strlen(str3));
+ }
+
+ if (_strnicmp(str3, str1, strlen(str1)) != 0)
+ {
+ Fail ("ERROR: _strnicmp(\"%s\", \"%s\", %d) returned != 0\n",
+ str3, str1, strlen(str1));
+ }
+
+ /* new testing */
+
+ /* str4 should be greater than str5 */
+ if (_strnicmp(str4, str5, strlen(str4)) <= 0)
+ {
+ Fail ("ERROR: _strnicmp(\"%s\", \"%s\", %d) returned >= 0\n",
+ str4, str5, strlen(str4));
+ }
+
+ /* str6 should be greater than str7 */
+ if (_strnicmp(str6, str7, strlen(str6)) <= 0)
+ {
+ Fail ("ERROR: _strnicmp(\"%s\", \"%s\", %d) returned <= 0\n",
+ str6, str7, strlen(str6));
+ }
+
+
+ PAL_Terminate();
+
+ return PASS;
+}