summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2021-04-09 15:22:34 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-04-09 15:22:34 +0000
commitb74ddc301e7e3780429ada125a3b45f161fa22f3 (patch)
treefd56ba11e96720d42727a7a92f84a706e50ed02d /tests
parent3741fca9f386a41e5d8cc27514d93ee11008023f (diff)
parent14ab353e199909e4993c40e8228de9b2eb803cb2 (diff)
Merge "Use GTEST_SKIP() rather than GTEST_LOG_() when skipping."
Diffstat (limited to 'tests')
-rw-r--r--tests/setjmp_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/setjmp_test.cpp b/tests/setjmp_test.cpp
index 4b1482ac6..ec1badcf2 100644
--- a/tests/setjmp_test.cpp
+++ b/tests/setjmp_test.cpp
@@ -321,6 +321,6 @@ TEST(setjmp, bug_152210274) {
ASSERT_EQ(0, pthread_create(&t, nullptr, interrupter, tids));
pthread_join(t, nullptr);
#else
- GTEST_LOG_(INFO) << "tests uses functions not in glibc";
+ GTEST_SKIP() << "tests uses functions not in glibc";
#endif
}