Changeset 201974 in webkit


Ignore:
Timestamp:
Jun 11, 2016 11:53:58 AM (8 years ago)
Author:
mark.lam@apple.com
Message:

Tests that overflows the stack should not be run with the sampling profiler.
https://bugs.webkit.org/show_bug.cgi?id=158663

Reviewed by Saam Barati.

The sampling profiler will be sampling the whole stack, and the amount of memory
churn will make this tests time out, especially with debug builds. Hence,
let's not run the test with the sampling profiler configuration.

  • tests/stress/mutual-tail-call-no-stack-overflow.js:

(shouldThrow):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r201966 r201974  
     12016-06-11  Mark Lam  <mark.lam@apple.com>
     2
     3        Tests that overflows the stack should not be run with the sampling profiler.
     4        https://bugs.webkit.org/show_bug.cgi?id=158663
     5
     6        Reviewed by Saam Barati.
     7
     8        The sampling profiler will be sampling the whole stack, and the amount of memory
     9        churn will make this tests time out, especially with debug builds.  Hence,
     10        let's not run the test with the sampling profiler configuration.
     11
     12        * tests/stress/mutual-tail-call-no-stack-overflow.js:
     13        (shouldThrow):
     14
    1152016-06-10  Yusuke Suzuki  <utatane.tea@gmail.com>
    216
  • trunk/Source/JavaScriptCore/tests/stress/mutual-tail-call-no-stack-overflow.js

    r191360 r201974  
     1//@ defaultNoSamplingProfilerRun
     2
    13function shouldThrow(func, errorMessage) {
    24    var errorThrown = false;
Note: See TracChangeset for help on using the changeset viewer.