summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/wcstoul/test3/test3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime/wcstoul/test3/test3.cpp')
-rw-r--r--src/pal/tests/palsuite/c_runtime/wcstoul/test3/test3.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/wcstoul/test3/test3.cpp b/src/pal/tests/palsuite/c_runtime/wcstoul/test3/test3.cpp
new file mode 100644
index 0000000000..eac46615e2
--- /dev/null
+++ b/src/pal/tests/palsuite/c_runtime/wcstoul/test3/test3.cpp
@@ -0,0 +1,49 @@
+// 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: test3.c
+**
+** Purpose: Test #3 for the wcstoul function
+**
+**
+**==========================================================================*/
+#include <palsuite.h>
+
+/*
+ * Notes: wcstoul should depend on the current locale's LC_NUMERIC category,
+ * this is not currently tested.
+ */
+
+
+int __cdecl main(int argc, char *argv[])
+{
+ WCHAR str[] = {'Z',0};
+ WCHAR *end;
+ ULONG l;
+
+ if (0 != PAL_Initialize(argc, argv))
+ {
+ return FAIL;
+ }
+
+
+ l = wcstoul(str, &end, 10);
+
+ if (l != 0)
+ {
+ Fail("ERROR: Expected wcstoul to return %u, got %u\n", 0, l);
+ }
+
+ if (end != str)
+ {
+ Fail("ERROR: Expected wcstoul to give an end value of %p, got %p\n",
+ str, end);
+ }
+
+ PAL_Terminate();
+ return PASS;
+}
+