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:
commit
715bef7603
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue