diff options
Diffstat (limited to 'tests/libc_logging_test.cpp')
-rw-r--r-- | tests/libc_logging_test.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/libc_logging_test.cpp b/tests/libc_logging_test.cpp index ef39d1c03..950161e78 100644 --- a/tests/libc_logging_test.cpp +++ b/tests/libc_logging_test.cpp @@ -176,14 +176,3 @@ TEST(libc_logging, lld_LLONG_MIN) { GTEST_LOG_(INFO) << "This test does nothing.\n"; #endif // __BIONIC__ } - -TEST(libc_logging, m) { -#if defined(__BIONIC__) - char buf[BUFSIZ]; - errno = EBADF; - __libc_format_buffer(buf, sizeof(buf), "<%m>"); - EXPECT_STREQ("<Bad file number>", buf); -#else // __BIONIC__ - GTEST_LOG_(INFO) << "This test does nothing.\n"; -#endif // __BIONIC__ -} |