diff options
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime/_snwprintf/test16')
3 files changed, 0 insertions, 96 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/CMakeLists.txt b/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/CMakeLists.txt deleted file mode 100644 index f147ad7e67..0000000000 --- a/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ -cmake_minimum_required(VERSION 2.8.12.2) - -set(CMAKE_INCLUDE_CURRENT_DIR ON) - -set(SOURCES - test16.c -) - -add_executable(paltest_snwprintf_test16 - ${SOURCES} -) - -add_dependencies(paltest_snwprintf_test16 coreclrpal) - -target_link_libraries(paltest_snwprintf_test16 - pthread - m - coreclrpal -) diff --git a/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/test16.c b/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/test16.c deleted file mode 100644 index 88f55bdc10..0000000000 --- a/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/test16.c +++ /dev/null @@ -1,65 +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: test16.c -** -** Purpose: Tests _snwprintf with decimal point format doubles -** -** -**==========================================================================*/ - - -#include <palsuite.h> -#include "../_snwprintf.h" - -/* memcmp is used to verify the results, so this test is dependent on it. */ -/* ditto with wcslen */ - -int __cdecl main(int argc, char *argv[]) -{ - double val = 2560.001; - double neg = -2560.001; - - if (PAL_Initialize(argc, argv) != 0) - { - return FAIL; - } - - - DoDoubleTest(convert("foo %f"), val, convert("foo 2560.001000"), - convert("foo 2560.001000")); - DoDoubleTest(convert("foo %lf"), val, convert("foo 2560.001000"), - convert("foo 2560.001000")); - DoDoubleTest(convert("foo %hf"), val, convert("foo 2560.001000"), - convert("foo 2560.001000")); - DoDoubleTest(convert("foo %Lf"), val, convert("foo 2560.001000"), - convert("foo 2560.001000")); - DoDoubleTest(convert("foo %I64f"), val, convert("foo 2560.001000"), - convert("foo 2560.001000")); - DoDoubleTest(convert("foo %12f"), val, convert("foo 2560.001000"), - convert("foo 2560.001000")); - DoDoubleTest(convert("foo %-12f"), val, convert("foo 2560.001000 "), - convert("foo 2560.001000 ")); - DoDoubleTest(convert("foo %.1f"), val, convert("foo 2560.0"), - convert("foo 2560.0")); - DoDoubleTest(convert("foo %.8f"), val, convert("foo 2560.00100000"), - convert("foo 2560.00100000")); - DoDoubleTest(convert("foo %012f"), val, convert("foo 02560.001000"), - convert("foo 02560.001000")); - DoDoubleTest(convert("foo %#f"), val, convert("foo 2560.001000"), - convert("foo 2560.001000")); - DoDoubleTest(convert("foo %+f"), val, convert("foo +2560.001000"), - convert("foo +2560.001000")); - DoDoubleTest(convert("foo % f"), val, convert("foo 2560.001000"), - convert("foo 2560.001000")); - DoDoubleTest(convert("foo %+f"), neg, convert("foo -2560.001000"), - convert("foo -2560.001000")); - DoDoubleTest(convert("foo % f"), neg, convert("foo -2560.001000"), - convert("foo -2560.001000")); - - PAL_Terminate(); - return PASS; -} diff --git a/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/testinfo.dat b/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/testinfo.dat deleted file mode 100644 index 8d844e0b18..0000000000 --- a/src/pal/tests/palsuite/c_runtime/_snwprintf/test16/testinfo.dat +++ /dev/null @@ -1,12 +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 = _snwprintf -Name = Positive Test for _snwprintf -TYPE = DEFAULT -EXE1 = test16 -Description -= Tests _snwprintf with decimal point format doubles |