summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/miscellaneous/wsprintfA/test1')
-rw-r--r--src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/CMakeLists.txt19
-rw-r--r--src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/test.c58
-rw-r--r--src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/testinfo.dat14
3 files changed, 91 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/CMakeLists.txt b/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/CMakeLists.txt
new file mode 100644
index 0000000000..ef589329f0
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/CMakeLists.txt
@@ -0,0 +1,19 @@
+cmake_minimum_required(VERSION 2.8.12.2)
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(SOURCES
+ test.c
+)
+
+add_executable(paltest_wsprintfa_test1
+ ${SOURCES}
+)
+
+add_dependencies(paltest_wsprintfa_test1 coreclrpal)
+
+target_link_libraries(paltest_wsprintfa_test1
+ pthread
+ m
+ coreclrpal
+)
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;
+
+}
+
+
+
diff --git a/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/testinfo.dat b/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/testinfo.dat
new file mode 100644
index 0000000000..c06f4c01aa
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/wsprintfA/test1/testinfo.dat
@@ -0,0 +1,14 @@
+# 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.
+
+Version = 1.0
+Section = Miscellaneous
+Function = wsprintfA
+Name = Positive test of wsprintfA
+TYPE = DEFAULT
+EXE1 = test
+Description
+= Test the very basic functionality of wsprintf.
+
+