[Lldb-commits] [PATCH] D11378: Xfail TestGdbRemoteAbort for Android API <= 16.

Chaoren Lin chaorenl at google.com
Tue Jul 21 10:37:09 PDT 2015


chaoren updated this revision to Diff 30269.
chaoren added a comment.

Address review.


http://reviews.llvm.org/D11378

Files:
  test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py

Index: test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
===================================================================
--- test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
+++ test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
@@ -33,7 +33,8 @@
 
     @llgs_test
     @dwarf_test
-    @skipIfTargetAndroid(api_levels=[16]) # abort() on API 16 raises SIGSEGV!
+    # std::abort() on <= API 16 raises SIGSEGV - b.android.com/179836
+    @expectedFailureAndroid(api_levels=range(16 + 1))
     def test_inferior_abort_received_llgs_dwarf(self):
         self.init_llgs_test()
         self.buildDwarf()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11378.30269.patch
Type: text/x-patch
Size: 635 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150721/c84b66e7/attachment.bin>


More information about the lldb-commits mailing list