diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-08-07 16:20:26 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-08-07 16:20:26 -0700 |
commit | 57d994c553e937efebc7d1d238ceff75885001e8 (patch) | |
tree | 2caa93bded84c97af36e02c4e5d7033ac2ba1714 /core/src/fxcrt | |
parent | 290b2351d06f0bc994e58394ab948244c08e82af (diff) | |
download | pdfium-57d994c553e937efebc7d1d238ceff75885001e8.tar.xz |
Really fix tests broken at 9778206.
Stub out failing platform.
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1280043005 .
Diffstat (limited to 'core/src/fxcrt')
-rw-r--r-- | core/src/fxcrt/fx_system_unittest.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/core/src/fxcrt/fx_system_unittest.cpp b/core/src/fxcrt/fx_system_unittest.cpp index e1a986e72d..8a75e51cb8 100644 --- a/core/src/fxcrt/fx_system_unittest.cpp +++ b/core/src/fxcrt/fx_system_unittest.cpp @@ -70,14 +70,12 @@ void Check64BitBase2Itoa(int64_t input, const char* expected_output) { } // namespace +#if _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ + TEST(fxcrt, FXSYS_itoa_InvalidRadix) { FX_CHAR buf[32]; -#if _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ FXSYS_itoa(42, buf, 17); // Ours stops at 16. -#else - FXSYS_itoa(42, buf, 37); // Theirs goes up to 36. -#endif EXPECT_EQ(std::string(""), buf); FXSYS_itoa(42, buf, 1); @@ -90,6 +88,8 @@ TEST(fxcrt, FXSYS_itoa_InvalidRadix) { EXPECT_EQ(std::string(""), buf); } +#endif // _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ + TEST(fxcrt, FXSYS_itoa) { Check32BitBase16Itoa(std::numeric_limits<int32_t>::min(), "-80000000"); Check32BitBase10Itoa(std::numeric_limits<int32_t>::min(), "-2147483648"); @@ -114,15 +114,12 @@ TEST(fxcrt, FXSYS_itoa) { "1111111111111111111111111111111"); } +#if _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ TEST(fxcrt, FXSYS_i64toa_InvalidRadix) { FX_CHAR buf[32]; -#if _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ FXSYS_i64toa(42, buf, 17); // Ours stops at 16. -#else - FXSYS_i64toa(42, buf, 37); // Theirs goes up to 36. -#endif EXPECT_EQ(std::string(""), buf); FXSYS_i64toa(42, buf, 1); @@ -135,6 +132,8 @@ TEST(fxcrt, FXSYS_i64toa_InvalidRadix) { EXPECT_EQ(std::string(""), buf); }; +#endif // _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ + TEST(fxcrt, FXSYS_i64toa) { Check64BitBase16Itoa( std::numeric_limits<int64_t>::min(), "-8000000000000000"); |