Changeset 156823 in webkit


Ignore:
Timestamp:
Oct 2, 2013, 11:30:24 PM (12 years ago)
Author:
mitz@apple.com
Message:

REGRESSION (r156811): Objective-C JavaScriptCore API test failing on Mountain Lion bots
https://bugs.webkit.org/show_bug.cgi?id=122260

Reviewed by Mark Rowe.

For the API to work, the tests need to be compiled with a newer version of the LLVM
compiler. Until the bots are updated to that version, disable the tests on 10.8.

  • API/tests/testapi.mm:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/API/tests/testapi.mm

    r151786 r156823  
    3434extern "C" void testObjectiveCAPI(void);
    3535
    36 #if JSC_OBJC_API_ENABLED
     36#if JSC_OBJC_API_ENABLED && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
    3737
    3838@protocol ParentObject <JSExport>
  • trunk/Source/JavaScriptCore/ChangeLog

    r156818 r156823  
     12013-10-02  Dan Bernstein  <mitz@apple.com>
     2
     3        REGRESSION (r156811): Objective-C JavaScriptCore API test failing on Mountain Lion bots
     4        https://bugs.webkit.org/show_bug.cgi?id=122260
     5
     6        Reviewed by Mark Rowe.
     7
     8        For the API to work, the tests need to be compiled with a newer version of the LLVM
     9        compiler. Until the bots are updated to that version, disable the tests on 10.8.
     10
     11        * API/tests/testapi.mm:
     12
    1132013-10-02  Mark Lam  <mark.lam@apple.com>
    214
Note: See TracChangeset for help on using the changeset viewer.