aboutsummaryrefslogtreecommitdiff
path: root/tests/__aeabi_read_tp_test.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-03-08 15:20:23 -0800
committerElliott Hughes <enh@google.com>2019-03-12 10:26:39 -0700
commitbcaa454d32e1b4ccf92467bb263d627695ac9a5b (patch)
tree65d7d4c493242ecb51bfe1796f133b32538de514 /tests/__aeabi_read_tp_test.cpp
parentff16c0b89b7297bc70353f60afac9bb93d6b0087 (diff)
downloadbionic-bcaa454d32e1b4ccf92467bb263d627695ac9a5b.tar.gz
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/__aeabi_read_tp_test.cpp')
-rw-r--r--tests/__aeabi_read_tp_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/__aeabi_read_tp_test.cpp b/tests/__aeabi_read_tp_test.cpp
index 697465879..7209a758a 100644
--- a/tests/__aeabi_read_tp_test.cpp
+++ b/tests/__aeabi_read_tp_test.cpp
@@ -38,6 +38,6 @@ TEST(aeabi, read_tp) {
#if defined(__arm__)
ASSERT_EQ(__aeabi_read_tp(), static_cast<void*>(__get_tls()));
#else
- GTEST_LOG_(INFO) << "__aeabi_read_tp is only available on arm32.\n";
+ GTEST_SKIP() << "__aeabi_read_tp is only available on arm32";
#endif
}