From 4b4aad7217d3292650e77eec2cf4c198ea9c3b4b Mon Sep 17 00:00:00 2001 From: Jiyoung Yun Date: Wed, 23 Nov 2016 19:09:09 +0900 Subject: Imported Upstream version 1.1.0 --- .../palsuite/c_runtime/_wcsnicmp/CMakeLists.txt | 4 + .../c_runtime/_wcsnicmp/test1/CMakeLists.txt | 19 +++++ .../palsuite/c_runtime/_wcsnicmp/test1/test1.c | 95 ++++++++++++++++++++++ .../c_runtime/_wcsnicmp/test1/testinfo.dat | 18 ++++ 4 files changed, 136 insertions(+) create mode 100644 src/pal/tests/palsuite/c_runtime/_wcsnicmp/CMakeLists.txt create mode 100644 src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/CMakeLists.txt create mode 100644 src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/test1.c create mode 100644 src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/testinfo.dat (limited to 'src/pal/tests/palsuite/c_runtime/_wcsnicmp') diff --git a/src/pal/tests/palsuite/c_runtime/_wcsnicmp/CMakeLists.txt b/src/pal/tests/palsuite/c_runtime/_wcsnicmp/CMakeLists.txt new file mode 100644 index 0000000000..f6aa0cb2d9 --- /dev/null +++ b/src/pal/tests/palsuite/c_runtime/_wcsnicmp/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 2.8.12.2) + +add_subdirectory(test1) + diff --git a/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/CMakeLists.txt b/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/CMakeLists.txt new file mode 100644 index 0000000000..afd3560b10 --- /dev/null +++ b/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 2.8.12.2) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) + +set(SOURCES + test1.c +) + +add_executable(paltest_wcsnicmp_test1 + ${SOURCES} +) + +add_dependencies(paltest_wcsnicmp_test1 coreclrpal) + +target_link_libraries(paltest_wcsnicmp_test1 + pthread + m + coreclrpal +) diff --git a/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/test1.c b/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/test1.c new file mode 100644 index 0000000000..0271bcc60d --- /dev/null +++ b/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/test1.c @@ -0,0 +1,95 @@ +// 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: test1.c +** +** Purpose: Take two wide strings and compare them, giving different lengths. +** Comparing str1 and str2 with str2 length, should return <0 +** Comparing str2 and str1 with str2 length, should return >0 +** Comparing str1 and str2 with str1 lenght, should return 0 +** Bring in str3, which has a capital, but this function is doing a lower +** case compare. Just ensure that two strings which differ only by capitals +** return 0. +** +** +**==========================================================================*/ + +#include + +/* + * Notes: uses wcslen + */ + +int __cdecl main(int argc, char *argv[]) +{ + WCHAR str1[] = {'f','o','o',0}; + WCHAR str2[] = {'f','o','o','x',0}; + WCHAR str3[] = {'f','O','o',0}; + WCHAR str4[] = {'A','B','C','D','E',0}; + WCHAR str5[] = {'A','B','C','D',']',0}; + WCHAR str6[] = {'a','b','c','d','e',0}; + WCHAR str7[] = {'a','b','c','d',']',0}; + char cstr1[] = "foo"; + char cstr2[] = "foox"; + char cstr3[] = "fOo"; + char cstr4[] = "ABCDE"; + char cstr5[] = "ABCD]"; + char cstr6[] = "abcde"; + char cstr7[] = "abcd]"; + + + /* + * Initialize the PAL and return FAIL if this fails + */ + if (0 != (PAL_Initialize(argc, argv))) + { + return FAIL; + } + + if (_wcsnicmp(str1, str2, wcslen(str2)) >= 0) + { + Fail ("ERROR: wcsnicmp(\"%s\", \"%s\", %d) returned >= 0\n", cstr1, + cstr2, wcslen(str2)); + } + + if (_wcsnicmp(str2, str1, wcslen(str2)) <= 0) + { + Fail ("ERROR: wcsnicmp(\"%s\", \"%s\", %d) returned <= 0\n", cstr2, + cstr1, wcslen(str2)); + } + + if (_wcsnicmp(str1, str2, wcslen(str1)) != 0) + { + Fail ("ERROR: wcsnicmp(\"%s\", \"%s\", %d) returned != 0\n", cstr1, + cstr2, wcslen(str1)); + } + + if (_wcsnicmp(str1, str3, wcslen(str1)) != 0) + { + Fail ("ERROR: wcsnicmp(\"%s\", \"%s\", %d) returned != 0\n", cstr1, + cstr3, wcslen(str1)); + } + + /* new testing */ + + /* str4 should be greater than str5 */ + if (_wcsnicmp(str4, str5, wcslen(str4)) <= 0) + { + Fail ("ERROR: _wcsnicmp(\"%s\", \"%s\", %d) returned >= 0\n", + cstr4, cstr5, wcslen(str4)); + } + + /* str6 should be greater than str7 */ + if (_wcsnicmp(str6, str7, wcslen(str6)) <= 0) + { + Fail ("ERROR: _wcsnicmp(\"%s\", \"%s\", %d) returned <= 0\n", + cstr6, cstr7, wcslen(str6)); + } + + PAL_Terminate(); + return PASS; +} + diff --git a/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/testinfo.dat b/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/testinfo.dat new file mode 100644 index 0000000000..df49cc1a9a --- /dev/null +++ b/src/pal/tests/palsuite/c_runtime/_wcsnicmp/test1/testinfo.dat @@ -0,0 +1,18 @@ +# 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 = _wcsnicmp +Name = Positive Test for _wcsnicmp +TYPE = DEFAULT +EXE1 = test1 +Description += Take two wide strings and compare them, giving different lengths. += Comparing str1 and str2 with str2 length, should return <0 += Comparing str2 and str1 with str2 length, should return >0 += Comparing str1 and str2 with str1 lenght, should return 0 += Bring in str3, which has a capital, but this function is doing a lower += case compare. Just ensure that two strings which differ only by capitals += return 0. -- cgit v1.2.3