summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/test.c')
-rw-r--r--src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/test.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/test.c b/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/test.c
new file mode 100644
index 0000000000..722270965d
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/test.c
@@ -0,0 +1,58 @@
+// 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: test.c
+**
+** Purpose: Test for wsprintfA() function
+**
+**
+**=========================================================*/
+
+#include <palsuite.h>
+
+ char * ErrorMessage;
+ char buf[256];
+
+/* memcmp is used to verify the results, so this test is dependent on it. */
+/* ditto with strlen */
+
+int test1()
+{
+ char checkstr[] = "hello world";
+
+ wsprintf(buf, "hello world");
+
+ /* Error message */
+ ErrorMessage = "ERROR: (Test 1) Failed on 'hello world' test. The "
+ "correct string is 'hello world' and the result returned was ";
+
+ return (memcmp(checkstr, buf, strlen(checkstr)+1) != 0);
+}
+
+int __cdecl main(int argc, char *argv[])
+{
+
+ /*
+ * Initialize the PAL and return FAILURE if this fails
+ */
+
+ if(0 != (PAL_Initialize(argc, argv)))
+ {
+ return FAIL;
+ }
+
+ if(test1())
+ {
+ Fail("%s '%s'\n",ErrorMessage,buf);
+ }
+
+ PAL_Terminate();
+ return PASS;
+
+}
+
+
+