Changeset 190695 in webkit


Ignore:
Timestamp:
Oct 7, 2015 4:34:41 PM (9 years ago)
Author:
mark.lam@apple.com
Message:

Disable tail calls because it is breaking some sites.
https://bugs.webkit.org/show_bug.cgi?id=149900

Reviewed by Saam Barati.

Updating the expected test result because we disabled tail calls.

  • js/caller-property-expected.txt:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r190689 r190695  
     12015-10-07  Mark Lam  <mark.lam@apple.com>
     2
     3        Disable tail calls because it is breaking some sites.
     4        https://bugs.webkit.org/show_bug.cgi?id=149900
     5
     6        Reviewed by Saam Barati.
     7
     8        Updating the expected test result because we disabled tail calls.
     9
     10        * js/caller-property-expected.txt:
     11
    1122015-10-07  Commit Queue  <commit-queue@webkit.org>
    213
  • trunk/LayoutTests/js/caller-property-expected.txt

    r190370 r190695  
    1111PASS strictCaller(nonStrictCallee) threw exception TypeError: Function.caller used to retrieve strict caller.
    1212PASS strictCaller(strictCallee) threw exception TypeError: Type error.
    13 PASS strictTailCaller(nonStrictCallee) is null
     13FAIL strictTailCaller(nonStrictCallee) should be null. Threw exception TypeError: Function.caller used to retrieve strict caller
    1414PASS strictTailCaller(strictCallee) threw exception TypeError: Type error.
    1515PASS nonStrictCaller(boundNonStrictCallee) is nonStrictCaller
     
    1717PASS strictCaller(boundNonStrictCallee) threw exception TypeError: Function.caller used to retrieve strict caller.
    1818PASS strictCaller(boundStrictCallee) threw exception TypeError: Type error.
    19 PASS strictTailCaller(boundNonStrictCallee) is null
     19FAIL strictTailCaller(boundNonStrictCallee) should be null. Threw exception TypeError: Function.caller used to retrieve strict caller
    2020PASS strictTailCaller(boundStrictCallee) threw exception TypeError: Type error.
    2121PASS nonStrictGetter(nonStrictAccessor) is nonStrictGetter
Note: See TracChangeset for help on using the changeset viewer.