Skip to content

Commit

Permalink
Removed _ecvt tests.
Browse files Browse the repository at this point in the history
Fix #10651
  • Loading branch information
mazong1123 committed Jul 24, 2017
1 parent 57ae950 commit 7951213
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 176 deletions.
2 changes: 1 addition & 1 deletion src/classlibnative/bcltype/number.cpp
Expand Up @@ -158,7 +158,7 @@ void ecvt( double value, int count, int* dec, int* sign, wchar_t* digits )

_ASSERTE(dec != nullptr && sign != nullptr && digits != nullptr);

// The caller of _ecvt should already checked the Infinity and NAN values.
// The caller of ecvt should already checked the Infinity and NAN values.
_ASSERTE(((FPDOUBLE*)&value)->exp != 0x7ff);

// Shortcut for zero.
Expand Down
1 change: 0 additions & 1 deletion src/pal/inc/pal.h
Expand Up @@ -5287,7 +5287,6 @@ PALIMPORT char * __cdecl _strlwr(char *);
PALIMPORT int __cdecl _stricmp(const char *, const char *);
PALIMPORT int __cdecl vsprintf_s(char *, size_t, const char *, va_list);
PALIMPORT char * __cdecl _gcvt_s(char *, int, double, int);
PALIMPORT char * __cdecl _ecvt(double, int, int *, int *);
PALIMPORT int __cdecl __iscsym(int);
PALIMPORT unsigned char * __cdecl _mbsinc(const unsigned char *);
PALIMPORT unsigned char * __cdecl _mbsninc(const unsigned char *, size_t);
Expand Down
1 change: 0 additions & 1 deletion src/pal/tests/palsuite/c_runtime/CMakeLists.txt
Expand Up @@ -139,7 +139,6 @@ add_subdirectory(wcstol)
add_subdirectory(wcstoul)
add_subdirectory(wprintf)
add_subdirectory(_alloca)
add_subdirectory(_ecvt)
add_subdirectory(_fdopen)
add_subdirectory(_finite)
add_subdirectory(_finitef)
Expand Down
4 changes: 0 additions & 4 deletions src/pal/tests/palsuite/c_runtime/_ecvt/CMakeLists.txt

This file was deleted.

17 changes: 0 additions & 17 deletions src/pal/tests/palsuite/c_runtime/_ecvt/test1/CMakeLists.txt

This file was deleted.

136 changes: 0 additions & 136 deletions src/pal/tests/palsuite/c_runtime/_ecvt/test1/test1.cpp

This file was deleted.

14 changes: 0 additions & 14 deletions src/pal/tests/palsuite/c_runtime/_ecvt/test1/testinfo.dat

This file was deleted.

1 change: 0 additions & 1 deletion src/pal/tests/palsuite/paltestlist_to_be_reviewed.txt
Expand Up @@ -22,7 +22,6 @@ c_runtime/vprintf/test1/paltest_vprintf_test1
c_runtime/vswprintf/test2/paltest_vswprintf_test2
c_runtime/vswprintf/test7/paltest_vswprintf_test7
c_runtime/wprintf/test2/paltest_wprintf_test2
c_runtime/_ecvt/test1/paltest_ecvt_test1
c_runtime/_gcvt/test1/paltest_gcvt_test1
c_runtime/_gcvt/test2/paltest_gcvt_test2
c_runtime/_getw/test1/paltest_getw_test1
Expand Down
1 change: 0 additions & 1 deletion src/pal/tests/palsuite/palverify.dat
Expand Up @@ -4,7 +4,6 @@

c_runtime/__iscsym/test1,1
c_runtime/_alloca/test1,1
c_runtime/_ecvt/test1,1
c_runtime/_fdopen/test1,1
c_runtime/_finite/test1,1
c_runtime/_finitef/test1,1
Expand Down

0 comments on commit 7951213

Please sign in to comment.