summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/miscellaneous/lstrcpynW
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/miscellaneous/lstrcpynW')
-rw-r--r--src/pal/tests/palsuite/miscellaneous/lstrcpynW/CMakeLists.txt4
-rw-r--r--src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/CMakeLists.txt19
-rw-r--r--src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/test.c73
-rw-r--r--src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/testinfo.dat16
4 files changed, 112 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/miscellaneous/lstrcpynW/CMakeLists.txt b/src/pal/tests/palsuite/miscellaneous/lstrcpynW/CMakeLists.txt
new file mode 100644
index 0000000000..f6aa0cb2d9
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/lstrcpynW/CMakeLists.txt
@@ -0,0 +1,4 @@
+cmake_minimum_required(VERSION 2.8.12.2)
+
+add_subdirectory(test1)
+
diff --git a/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/CMakeLists.txt b/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/CMakeLists.txt
new file mode 100644
index 0000000000..4344b89402
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/lstrcpynW/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_lstrcpynw_test1
+ ${SOURCES}
+)
+
+add_dependencies(paltest_lstrcpynw_test1 coreclrpal)
+
+target_link_libraries(paltest_lstrcpynw_test1
+ pthread
+ m
+ coreclrpal
+)
diff --git a/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/test.c b/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/test.c
new file mode 100644
index 0000000000..1ae0c51474
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/test.c
@@ -0,0 +1,73 @@
+// 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 lstrcpynW() function
+**
+**
+**=========================================================*/
+
+#define UNICODE
+
+#include <palsuite.h>
+
+int __cdecl main(int argc, char *argv[]) {
+
+ WCHAR FirstString[5] = {'T','E','S','T','\0'};
+ WCHAR CorrectBuffer[3] = {'T','E','\0'};
+ WCHAR ResultBuffer[5];
+ WCHAR* ResultPointer = NULL;
+
+ /*
+ * Initialize the PAL and return FAILURE if this fails
+ */
+
+ if(0 != (PAL_Initialize(argc, argv)))
+ {
+ return FAIL;
+ }
+
+ /* A straight copy, the values should be equal. */
+ ResultPointer = lstrcpyn(ResultBuffer,FirstString,3);
+
+ /* Make sure the returned pointer is to the result buffer */
+ if(ResultPointer != &ResultBuffer[0])
+ {
+ Fail("ERROR: The function didn't return a pointer which points to the "
+ "location of the buffer which was copied into.\n");
+ }
+
+ /* Check to see that values are equal */
+ if(memcmp(ResultBuffer,
+ CorrectBuffer,
+ wcslen(ResultBuffer)*sizeof(WCHAR)) != 0)
+ {
+ Fail("ERROR: '%s' was the result and it should have been '%s' when "
+ "this copy was performed.\n",
+ convertC(ResultBuffer),convertC(CorrectBuffer));
+ }
+
+ /* Null values should get Null results */
+ if(lstrcpyn(ResultBuffer,NULL,3) != NULL)
+ {
+ Fail("ERROR: When the second parameter was set to NULL, the return "
+ "value should have been NULL, but it was not.\n");
+ }
+
+ if(lstrcpyn(NULL,FirstString,3) != NULL)
+ {
+ Fail("ERROR: When the first parameter was set to NULL, the return "
+ "value should have been NULL, but it was not.\n");
+ }
+
+
+ PAL_Terminate();
+ return PASS;
+}
+
+
+
diff --git a/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/testinfo.dat b/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/testinfo.dat
new file mode 100644
index 0000000000..111a57928a
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/lstrcpynW/test1/testinfo.dat
@@ -0,0 +1,16 @@
+# 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 = lstrcpynW
+Name = Positive test of lstrcpynW
+TYPE = DEFAULT
+EXE1 = test
+Description
+= Ensure that a copy of a string works, and that the return values
+= are correct for success and failure.
+
+
+