[Lldb-commits] test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py and unexpected successes

Filipe Cabecinhas filcab at gmail.com
Thu May 17 03:53:47 PDT 2012


Hi all, 

The test test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py is an unexpected success on i386.
It's marked as failing, but the only thing it does is immediately return.

When starting the test, this method is called:
    def applies(self):
      if platform.system() != "Darwin":






        return False
      if StrictVersion('12.0.0') > platform.release():
        return False
      return True



The problem is: platform.release(), on Lion, returns '11.4.0'. I don't know if this is an internal Apple test or if you're just waiting for lldb to make available the necessary methods for the new ObjC syntax and subscripting, since clang bails out with this, if we remove the previous check:
    error: expected method to read array element not found on object of type 'NSArray *'

I suggest removing that check (or making it run on Lion) and marking the test as an expected failure on i386 and x86_64. That way, we know we have some work to do there. If we keep the test as is, then we should remove the expected failure annotation for i386, since the test is not failing (as far as the test suite is concerned).

Regards, 

  Filipe





More information about the lldb-commits mailing list