summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/isspace/test1/test1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime/isspace/test1/test1.c')
-rw-r--r--src/pal/tests/palsuite/c_runtime/isspace/test1/test1.c82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/isspace/test1/test1.c b/src/pal/tests/palsuite/c_runtime/isspace/test1/test1.c
new file mode 100644
index 0000000000..6cd1ce878b
--- /dev/null
+++ b/src/pal/tests/palsuite/c_runtime/isspace/test1/test1.c
@@ -0,0 +1,82 @@
+// 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 isspace function
+**
+**
+**==========================================================================*/
+
+
+
+#include <palsuite.h>
+
+struct testCase
+{
+ long result;
+ char avalue;
+};
+
+
+
+int __cdecl main(int argc, char *argv[])
+{
+ int i=0;
+ long result = 0;
+
+ /*
+ * A structures of the testcases to be tested with
+ * isspace function
+ */
+ struct testCase testCases[] =
+ {
+ {1,'\n'},
+ {1,'\t'},
+ {1,'\r'},
+ {1,'\v'},
+ {1,'\f'},
+ {1,' '},
+ {0,'a'},
+ {0,'A'},
+ {0,'z'},
+ {0,'Z'},
+ {0,'r'},
+ {0,'R'},
+ {0,'0'},
+ {0,'*'},
+ {0,3}
+ };
+
+ /*
+ * Initialize the PAL
+ */
+ if ( 0 != PAL_Initialize(argc, argv))
+ {
+ return FAIL;
+ }
+
+
+ /* Loop through the testcases */
+ for (i=0; i<sizeof(testCases)/sizeof(struct testCase); i++)
+ {
+ result = isspace(testCases[i].avalue);
+ if ( ((testCases[i].result == 1) && (result==0)) ||
+ ((testCases[i].result ==0) && (result !=0)) )
+ {
+ Fail("ERROR: isspace() returned %d for %c instead of %d\n",
+ result,
+ testCases[i].avalue,
+ testCases[i].result );
+ }
+ }
+
+
+ PAL_Terminate();
+
+ return PASS;
+}
+