summaryrefslogtreecommitdiff
path: root/src/pal
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2019-05-16 11:55:42 -0700
committerJan Kotas <jkotas@microsoft.com>2019-05-16 11:55:41 -0700
commitb4c2b142c700e8ec58783138aca2340ac05b24d5 (patch)
tree66d49ab0a4a38531567a18400f70557a646791d7 /src/pal
parente797e121c274f2d1533ce380982677816a0f61e3 (diff)
downloadcoreclr-b4c2b142c700e8ec58783138aca2340ac05b24d5.tar.gz
coreclr-b4c2b142c700e8ec58783138aca2340ac05b24d5.tar.bz2
coreclr-b4c2b142c700e8ec58783138aca2340ac05b24d5.zip
Delete iswxdigit test (#24608)
Diffstat (limited to 'src/pal')
-rw-r--r--src/pal/tests/palsuite/c_runtime/CMakeLists.txt1
-rw-r--r--src/pal/tests/palsuite/c_runtime/iswxdigit/CMakeLists.txt4
-rw-r--r--src/pal/tests/palsuite/c_runtime/iswxdigit/test1/CMakeLists.txt17
-rw-r--r--src/pal/tests/palsuite/c_runtime/iswxdigit/test1/test1.cpp61
-rw-r--r--src/pal/tests/palsuite/c_runtime/iswxdigit/test1/testinfo.dat14
5 files changed, 0 insertions, 97 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/CMakeLists.txt b/src/pal/tests/palsuite/c_runtime/CMakeLists.txt
index 3f3db60245..0150656ffd 100644
--- a/src/pal/tests/palsuite/c_runtime/CMakeLists.txt
+++ b/src/pal/tests/palsuite/c_runtime/CMakeLists.txt
@@ -71,7 +71,6 @@ add_subdirectory(isupper)
add_subdirectory(iswdigit)
add_subdirectory(iswspace)
add_subdirectory(iswupper)
-add_subdirectory(iswxdigit)
add_subdirectory(isxdigit)
add_subdirectory(labs)
add_subdirectory(llabs)
diff --git a/src/pal/tests/palsuite/c_runtime/iswxdigit/CMakeLists.txt b/src/pal/tests/palsuite/c_runtime/iswxdigit/CMakeLists.txt
deleted file mode 100644
index f6aa0cb2d9..0000000000
--- a/src/pal/tests/palsuite/c_runtime/iswxdigit/CMakeLists.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-cmake_minimum_required(VERSION 2.8.12.2)
-
-add_subdirectory(test1)
-
diff --git a/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/CMakeLists.txt b/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/CMakeLists.txt
deleted file mode 100644
index 6809f5a2d1..0000000000
--- a/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/CMakeLists.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-cmake_minimum_required(VERSION 2.8.12.2)
-
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-set(SOURCES
- test1.cpp
-)
-
-add_executable(paltest_iswxdigit_test1
- ${SOURCES}
-)
-
-add_dependencies(paltest_iswxdigit_test1 coreclrpal)
-
-target_link_libraries(paltest_iswxdigit_test1
- ${COMMON_TEST_LIBRARIES}
-)
diff --git a/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/test1.cpp b/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/test1.cpp
deleted file mode 100644
index 73ad495856..0000000000
--- a/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/test1.cpp
+++ /dev/null
@@ -1,61 +0,0 @@
-// 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: Tests iswxdigit with every possible wide character, ensuring it
-** returns the correct results.
-**
-**
-**===================================================================*/
-
-#include <palsuite.h>
-
-/*
- * These are the only wide characters Win2000 recogonizes as valid hex digits.
- */
-WCHAR ValidHexDigits[] =
-{
- 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68, 69, 70, 97, 98, 99, 100,
- 101, 102, 65296, 65297, 65298, 65299, 65300, 65301, 65302, 65303, 65304, 65305,
- 65313, 65314, 65315, 65316, 65317, 65318, 65345, 65346, 65347, 65348, 65349, 65350,
- 0
-};
-
-int __cdecl main(int argc, char **argv)
-{
- int i;
- WCHAR c;
- int ret;
-
- if (PAL_Initialize(argc, argv))
- {
- return FAIL;
- }
-
- for (i=0; i<=0xFFFF; i++)
- {
- ret = iswxdigit(i);
- c = (WCHAR) i;
-
- if (ret)
- {
- if (wcschr(ValidHexDigits, c) == NULL)
- {
- /* iswxdigit says its a hex digit. We know better */
- Fail("iswxdigit incorrectly found %#x to be a hex digit!\n", c);
- }
- }
- else if (wcschr(ValidHexDigits, c) != NULL && c != 0)
- {
- /* iswxdigit says it isn't a hex digit. We know better */
- Fail("iswxdigit failed to find %#x to be a hex digit!\n", c);
- }
- }
-
- PAL_Terminate();
- return PASS;
-}
diff --git a/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/testinfo.dat b/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/testinfo.dat
deleted file mode 100644
index 2b683c4eb7..0000000000
--- a/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/testinfo.dat
+++ /dev/null
@@ -1,14 +0,0 @@
-# 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 = iswxdigit
-Name = iswxdigit test #1
-TYPE = DEFAULT
-EXE1 = test1
-Description
-=Tests iswxdigit with every possible wide character, ensuring it
-=returns the correct results.
-