summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/memchr/test1/test1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime/memchr/test1/test1.cpp')
-rw-r--r--src/pal/tests/palsuite/c_runtime/memchr/test1/test1.cpp122
1 files changed, 122 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/memchr/test1/test1.cpp b/src/pal/tests/palsuite/c_runtime/memchr/test1/test1.cpp
new file mode 100644
index 0000000000..043a6789d8
--- /dev/null
+++ b/src/pal/tests/palsuite/c_runtime/memchr/test1/test1.cpp
@@ -0,0 +1,122 @@
+// 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 the PAL implementation of the memchr function.
+** Create a string buffer, and check for a number of
+** characters in it. Test to ensure it returns NULL if
+** it can't find the character, and that the size argument
+** works properly.
+**
+**
+**===================================================================*/
+
+#include <palsuite.h>
+
+struct testCase
+{
+ char *result;
+ char string[50];
+ int character;
+ int length;
+};
+
+
+int __cdecl main(int argc, char *argv[])
+{
+ int i = 0;
+ char *result = NULL;
+
+ /*
+ * this structure includes several strings to be tested with
+ * memchr function and the expected results
+ */
+
+ struct testCase testCases[]=
+ {
+ {"st","corn cup cat cream coast",'s',23},
+ /* single instance of char */
+ {"st","corn cup cat cream coast",'s',24},
+ /* single inst, inst< exact length */
+ {"q","corn cup cat cream coastq",'q',25},
+ /* single inst at end, inst=exact length */
+ {"q","corn cup cat cream coastq",'q',26},
+ /* single inst at end, inst<length,
+ length>len(string) */
+ {"st","corn cup cat cream coast",115,24},
+ /* single int inst, inst<exact length */
+ {"corn cup cat cream coast","corn cup cat cream coast",'c',24},
+ /* multi-inst, inst=1, exact length */
+ {"corn cup cat cream coast","corn cup cat cream coast",'c',1},
+ /* multi-inst, inst = length, length=1 */
+ {"is is a test","This is a test",105,14},
+ /* single int inst, exact length */
+ {"is is a test","This is a test",'i',14},
+ /* double inst, exact length */
+ {"a test","This is a test",'a',9},
+ /* single instance instance = length */
+ {NULL,"This is a test",'b',14},
+ /* no instance exact length */
+ {NULL,"This is a test",'a',8},
+ /* single instance - < length */
+ {NULL,"This is a test",121,14},
+ /* single instance - exact length */
+ {" is a test of the function","This is a test of the function",
+ ' ',17} /* single inst<length, len(string)>length */
+ };
+
+
+ /* Initialize the PAL */
+ if ( 0 != PAL_Initialize(argc, argv))
+ {
+ return FAIL;
+ }
+
+ /* Loop through the testcases in the structure */
+ for (i=0; i< sizeof(testCases)/sizeof(struct testCase); i++)
+ {
+ /* Need to type cast function in order to compare the result */
+ result = (char *)memchr(testCases[i].string,
+ testCases[i].character,testCases[i].length);
+
+ if (result==NULL)
+ {
+ if (testCases[i].result != NULL)
+ {
+ Fail("ERROR: Expected memcmp to return \"%s\" instead of"
+ " NULL\n", testCases[i].result);
+ }
+ }
+ else
+ {
+ if (strcmp(result,testCases[i].result)!=0 )
+
+ {
+ Fail("ERROR: Expected memcmp to return \"%s\" instead of"
+ " \"%s\"\n", testCases[i].result, result);
+ }
+
+ }
+ }
+
+ PAL_Terminate();
+
+ return PASS;
+}
+
+
+
+
+
+
+
+
+
+
+
+
+