[Lldb-commits] [lldb] r289223 - Fix buildbots that are failing due to this test by adding all expected fails that TestMultipleDebuggers.py has.
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 12 03:52:08 PST 2016
Hi,
I think I have already handled those failures by adding the
skipIfHostIncompatibleWithRemote decorator. I have removed linux from
this list, as it passes fine there. I have also removed the i386 case,
as I think it was put there to achieve the same thing as
skipIfHostIncompatibleWithRemote. I don't think this should have any
effect, but If it starts failing on some of your CI, could you add in
a more targeted xfail decorator?
cheers,
pavel
On 9 December 2016 at 16:25, Greg Clayton via lldb-commits
<lldb-commits at lists.llvm.org> wrote:
> Author: gclayton
> Date: Fri Dec 9 10:25:13 2016
> New Revision: 289223
>
> URL: http://llvm.org/viewvc/llvm-project?rev=289223&view=rev
> Log:
> Fix buildbots that are failing due to this test by adding all expected fails that TestMultipleDebuggers.py has.
>
>
> Modified:
> lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py
>
> Modified: lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py
> URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py?rev=289223&r1=289222&r2=289223&view=diff
> ==============================================================================
> --- lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py (original)
> +++ lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py Fri Dec 9 10:25:13 2016
> @@ -20,6 +20,15 @@ class TestMultipleTargets(TestBase):
>
> @skipIfNoSBHeaders
> @skipIfHostIncompatibleWithRemote
> + @expectedFailureAll(
> + archs="i[3-6]86",
> + bugnumber="multi-process-driver.cpp creates an x64 target")
> + @expectedFailureAll(
> + oslist=[
> + "windows",
> + "linux",
> + "freebsd"],
> + bugnumber="llvm.org/pr20282")
> def test_multiple_debuggers(self):
> env = {self.dylibPath: self.getLLDBLibraryEnvVal()}
>
>
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
More information about the lldb-commits
mailing list