commit | b74ddc301e7e3780429ada125a3b45f161fa22f3 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Apr 09 15:22:34 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Apr 09 15:22:34 2021 +0000 |
tree | fd56ba11e96720d42727a7a92f84a706e50ed02d | |
parent | 3741fca9f386a41e5d8cc27514d93ee11008023f [diff] | |
parent | 14ab353e199909e4993c40e8228de9b2eb803cb2 [diff] |
Merge "Use GTEST_SKIP() rather than GTEST_LOG_() when skipping."
diff --git a/tests/setjmp_test.cpp b/tests/setjmp_test.cpp index 4b1482a..ec1badc 100644 --- a/tests/setjmp_test.cpp +++ b/tests/setjmp_test.cpp
@@ -321,6 +321,6 @@ 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 }