Merge "Use GTEST_SKIP() rather than GTEST_LOG_() when skipping." am: b74ddc301e

Original change: https://android-review.googlesource.com/c/platform/bionic/+/1670435

Change-Id: If155fd396fc6c8a9ebc717b82de1db723585aedb
This commit is contained in:
Elliott Hughes 2021-04-09 16:01:45 +00:00 committed by Automerger Merge Worker
commit 715bef7603

View file

@ -321,6 +321,6 @@ TEST(setjmp, bug_152210274) {
ASSERT_EQ(0, pthread_create(&t, nullptr, interrupter, tids)); ASSERT_EQ(0, pthread_create(&t, nullptr, interrupter, tids));
pthread_join(t, nullptr); pthread_join(t, nullptr);
#else #else
GTEST_LOG_(INFO) << "tests uses functions not in glibc"; GTEST_SKIP() << "tests uses functions not in glibc";
#endif #endif
} }