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

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


This revision was automatically updated to reflect the committed changes.
Closed by commit rL242815: Xfail TestGdbRemoteAbort for Android API <= 16. (authored by chaoren).

Changed prior to commit:
  http://reviews.llvm.org/D11378?vs=30269&id=30273#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D11378

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

Index: lldb/trunk/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
===================================================================
--- lldb/trunk/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
+++ lldb/trunk/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.30273.patch
Type: text/x-patch
Size: 668 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150721/d4c4d0fb/attachment.bin>


More information about the lldb-commits mailing list