summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/vsprintf/test5
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime/vsprintf/test5')
-rw-r--r--src/pal/tests/palsuite/c_runtime/vsprintf/test5/CMakeLists.txt19
-rw-r--r--src/pal/tests/palsuite/c_runtime/vsprintf/test5/test5.c43
-rw-r--r--src/pal/tests/palsuite/c_runtime/vsprintf/test5/testinfo.dat14
3 files changed, 76 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/vsprintf/test5/CMakeLists.txt b/src/pal/tests/palsuite/c_runtime/vsprintf/test5/CMakeLists.txt
new file mode 100644
index 0000000000..34a3e6243f
--- /dev/null
+++ b/src/pal/tests/palsuite/c_runtime/vsprintf/test5/CMakeLists.txt
@@ -0,0 +1,19 @@
+cmake_minimum_required(VERSION 2.8.12.2)
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(SOURCES
+ test5.c
+)
+
+add_executable(paltest_vsprintf_test5
+ ${SOURCES}
+)
+
+add_dependencies(paltest_vsprintf_test5 coreclrpal)
+
+target_link_libraries(paltest_vsprintf_test5
+ pthread
+ m
+ coreclrpal
+)
diff --git a/src/pal/tests/palsuite/c_runtime/vsprintf/test5/test5.c b/src/pal/tests/palsuite/c_runtime/vsprintf/test5/test5.c
new file mode 100644
index 0000000000..e630d8863b
--- /dev/null
+++ b/src/pal/tests/palsuite/c_runtime/vsprintf/test5/test5.c
@@ -0,0 +1,43 @@
+// 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: test5.c
+**
+** Purpose: Test #5 for the vsprintf function.
+**
+**
+**===================================================================*/
+
+#include <palsuite.h>
+#include "../vsprintf.h"
+
+/*
+ * Notes: memcmp is used, as is strlen.
+ */
+
+
+int __cdecl main(int argc, char *argv[])
+{
+ if (PAL_Initialize(argc, argv) != 0)
+ {
+ return(FAIL);
+ }
+
+ DoTest("foo %n bar", 4, "foo bar");
+ DoTest("foo %#n bar", 4, "foo bar");
+ DoTest("foo % n bar", 4, "foo bar");
+ DoTest("foo %+n bar", 4, "foo bar");
+ DoTest("foo %-n bar", 4, "foo bar");
+ DoTest("foo %0n bar", 4, "foo bar");
+ DoShortTest("foo %hn bar", 4, "foo bar");
+ DoTest("foo %ln bar", 4, "foo bar");
+ DoTest("foo %Ln bar", 4, "foo bar");
+ DoTest("foo %I64n bar", 4, "foo bar");
+ DoTest("foo %20.3n bar", 4, "foo bar");
+
+ PAL_Terminate();
+ return PASS;
+}
diff --git a/src/pal/tests/palsuite/c_runtime/vsprintf/test5/testinfo.dat b/src/pal/tests/palsuite/c_runtime/vsprintf/test5/testinfo.dat
new file mode 100644
index 0000000000..81748f88b9
--- /dev/null
+++ b/src/pal/tests/palsuite/c_runtime/vsprintf/test5/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 = C Runtime
+Function = vsprintf
+Name = Positive Test for vsprintf
+TYPE = DEFAULT
+EXE1 = test5
+Description
+= Tests the PAL implementation of the vsprintf function.
+= Tests vsprintf with the count specifier.
+= This test is modeled after _snprintf.