diff options
author | Omair Javaid <omair.javaid@linaro.org> | 2016-01-20 15:01:54 +0000 |
---|---|---|
committer | Omair Javaid <omair.javaid@linaro.org> | 2016-01-20 15:01:54 +0000 |
commit | 94b94421a4fcd145d9973df0e10d838066935448 (patch) | |
tree | 1930e251322914365cd47bbd047112bd0c75ffb5 /lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py | |
parent | 533c32bdda9e05f2d5d5c17bcfdb3e3e8729aa74 (diff) | |
download | bcm5719-llvm-94b94421a4fcd145d9973df0e10d838066935448.tar.gz bcm5719-llvm-94b94421a4fcd145d9973df0e10d838066935448.zip |
Mark arm/aarch64 specific xfails with expectedFailureLinux decorator
This patch marks some known failures and puts on expectedFailureLinux decorator to have testsuite xfail them.
Affected tests are:
test/functionalities/watchpoint/step_over_watchpoint.py
test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py
test/tools/lldb-server/TestGdbRemoteSingleStep.py
test/tools/lldb-server/TestGdbRemote_vCont.py
llvm-svn: 258315
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py index 3b008249f55..f2de1d5a1a2 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py @@ -17,7 +17,8 @@ class TestGdbRemoteSingleStep(gdbremote_testcase.GdbRemoteTestCaseBase): self.single_step_only_steps_one_instruction(use_Hc_packet=True, step_instruction="s") @llgs_test - @expectedFailureAndroid(bugnumber="llvm.com/pr24739", archs=["arm", "aarch64"]) + @expectedFailureAndroid(bugnumber="llvm.org/pr24739", archs=["arm", "aarch64"]) + @expectedFailureLinux(bugnumber="llvm.org/pr24739", archs=["arm", "aarch64"]) def test_single_step_only_steps_one_instruction_with_s_llgs(self): self.init_llgs_test() self.build() |