[Lldb-commits] [lldb] r260422 - Remove expectedFailureLinux decorator.

Siva Chandra via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 10 12:56:07 PST 2016


> Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py
> URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py?rev=260422&r1=260421&r2=260422&view=diff
> ==============================================================================
> --- lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py (original)
> +++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py Wed Feb 10 13:53:36 2016
> @@ -19,7 +19,7 @@ class CModulesTestCase(TestBase):
>
>      @skipIfFreeBSD
>      @expectedFailureDarwin('http://llvm.org/pr24302')
> -    @expectedFailureLinux('http://llvm.org/pr23456') # 'fopen' has unknown return type
> +    @expectedFailureAll(oslist=["linux"], archs=['aarch64', 'arm'], bugnumber="http://llvm.org/pr23456 'fopen' has unknown return type")

Why did you add arm archs? It fails for x86_64 and i386 as well:
http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-cmake/builds/11254

>      @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
>      def test_expr(self):
>          if platform.system() == "Darwin" and platform.release() < StrictVersion('12.0.0'):


More information about the lldb-commits mailing list