diff options
author | Elliott Hughes <enh@google.com> | 2019-03-08 15:20:23 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2019-03-12 10:26:39 -0700 |
commit | bcaa454d32e1b4ccf92467bb263d627695ac9a5b (patch) | |
tree | 65d7d4c493242ecb51bfe1796f133b32538de514 /tests/stack_protector_test.cpp | |
parent | ff16c0b89b7297bc70353f60afac9bb93d6b0087 (diff) |
bionic tests: use GTEST_SKIP.
Also be a bit more to the point in our messages, focusing on "why" not
"what".
Test: ran tests
Change-Id: I297806c7a102bd52602dcd2fcf7a2cd34aba3a11
Diffstat (limited to 'tests/stack_protector_test.cpp')
-rw-r--r-- | tests/stack_protector_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stack_protector_test.cpp b/tests/stack_protector_test.cpp index 7a85cc34b..9fe7bb105 100644 --- a/tests/stack_protector_test.cpp +++ b/tests/stack_protector_test.cpp @@ -95,7 +95,7 @@ TEST(stack_protector, global_guard) { ASSERT_NE(0, gettid()); ASSERT_NE(0U, __stack_chk_guard); #else - GTEST_LOG_(INFO) << "glibc doesn't have a global __stack_chk_guard.\n"; + GTEST_SKIP() << "glibc doesn't have a global __stack_chk_guard"; #endif } |