Changeset 203067 in webkit


Ignore:
Timestamp:
Jul 11, 2016, 10:04:14 AM (9 years ago)
Author:
mark.lam@apple.com
Message:

Change run-webkit-tests.py and run-jsc-stress-tests to use a smaller JS stack size for testing.
https://bugs.webkit.org/show_bug.cgi?id=159524

Reviewed by Michael Saboff.

Tools:

Forced tests to run with only a 1.5M JS stack size instead of the default 4M.
Also fixed up some tests to behave better to work with this new limit. This
should make stack overflow tests complete sooner.

  • Scripts/run-jsc-stress-tests:
  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(main):

LayoutTests:

  • js/dom/deep-recursion-test.html:
  • js/script-tests/stack-overflow-arrity-catch.js:

(funcWith20Args):

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r203060 r203067  
     12016-07-11  Mark Lam  <mark.lam@apple.com>
     2
     3        Change run-webkit-tests.py and run-jsc-stress-tests to use a smaller JS stack size for testing.
     4        https://bugs.webkit.org/show_bug.cgi?id=159524
     5
     6        Reviewed by Michael Saboff.
     7
     8        * js/dom/deep-recursion-test.html:
     9        * js/script-tests/stack-overflow-arrity-catch.js:
     10        (funcWith20Args):
     11
    1122016-07-11  Fujii Hironori  <Hironori.Fujii@sony.com>
    213
  • trunk/LayoutTests/js/dom/deep-recursion-test.html

    r156066 r203067  
    1414
    1515    try {
    16         simpleRecursion(17472);
     16        simpleRecursion(10000);
    1717    } catch (ex) {
    1818        debug("FAIL: " + ex);
  • trunk/LayoutTests/js/script-tests/stack-overflow-arrity-catch.js

    r201412 r203067  
    11description('Test that if an arrity check causes a stack overflow, the exception goes to the right catch');
    22
    3 function funcWith20Args(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8,
     3function funcWith40Args(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8,
    44                        arg9, arg10, arg11, arg12, arg13, arg14, arg15,
    5                         arg16, arg17, arg18, arg19, arg20)
     5                        arg16, arg17, arg18, arg19, arg20,
     6                        arg21, arg22, arg23, arg24, arg25, arg26, arg27, arg28,
     7                        arg29, arg30, arg31, arg32, arg33, arg34, arg35,
     8                        arg36, arg37, arg38, arg39, arg40)
    69{
    7     debug("ERROR: Shouldn't arrive in 20 arg function!");
     10    debug("ERROR: Shouldn't arrive in 40 arg function!");
    811}
    912
     
    2427       
    2528        try {
    26             funcWith20Args(1, 2, 3);
     29            funcWith40Args(1, 2, 3);
    2730        } catch (err2) {
    2831            gotRightCatch = true;
     
    4548        // now cause a stack overflow exception due to arrity processing
    4649        try {
    47             funcWith20Args(1, 2, 3, 4, 5, 6);
     50            funcWith40Args(1, 2, 3, 4, 5, 6);
    4851        } catch (err2) {
    4952            gotRightCatch = true;
  • trunk/Tools/ChangeLog

    r203063 r203067  
     12016-07-11  Mark Lam  <mark.lam@apple.com>
     2
     3        Change run-webkit-tests.py and run-jsc-stress-tests to use a smaller JS stack size for testing.
     4        https://bugs.webkit.org/show_bug.cgi?id=159524
     5
     6        Reviewed by Michael Saboff.
     7
     8        Forced tests to run with only a 1.5M JS stack size instead of the default 4M.
     9        Also fixed up some tests to behave better to work with this new limit.  This
     10        should make stack overflow tests complete sooner.
     11
     12        * Scripts/run-jsc-stress-tests:
     13        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
     14        (main):
     15
    1162016-07-11  Michael Catanzaro  <mcatanzaro@igalia.com>
    217
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r202364 r203067  
    11#!/usr/bin/env ruby
    22
    3 # Copyright (C) 2013-2015 Apple Inc. All rights reserved.
     3# Copyright (C) 2013-2016 Apple Inc. All rights reserved.
    44#
    55# Redistribution and use in source and binary forms, with or without
     
    427427$numPasses = 0
    428428
    429 BASE_OPTIONS = ["--useFTLJIT=false", "--useFunctionDotArguments=true"]
     429# We force all tests to use a smaller (1.5M) stack so that stack overflow tests can run faster.
     430BASE_OPTIONS = ["--useFTLJIT=false", "--useFunctionDotArguments=true", "--maxPerThreadStackUsage=1572864"]
    430431EAGER_OPTIONS = ["--thresholdForJITAfterWarmUp=10", "--thresholdForJITSoon=10", "--thresholdForOptimizeAfterWarmUp=20", "--thresholdForOptimizeAfterLongWarmUp=20", "--thresholdForOptimizeSoon=20", "--thresholdForFTLOptimizeAfterWarmUp=20", "--thresholdForFTLOptimizeSoon=20", "--maximumEvalCacheableSourceLength=150000"]
    431432NO_CJIT_OPTIONS = ["--useConcurrentJIT=false", "--thresholdForJITAfterWarmUp=100"]
  • trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

    r202619 r203067  
    11# Copyright (C) 2010 Google Inc. All rights reserved.
    22# Copyright (C) 2010 Gabor Rapcsanyi (rgabor@inf.u-szeged.hu), University of Szeged
    3 # Copyright (C) 2011 Apple Inc. All rights reserved.
     3# Copyright (C) 2011, 2016 Apple Inc. All rights reserved.
    44#
    55# Redistribution and use in source and binary forms, with or without
     
    7575
    7676    try:
     77        # Force all tests to use a smaller stack so that stack overflow tests can run faster.
     78        stackSizeInBytes = 1.5 * 1024 * 1024
     79        options.additional_env_var.append('JSC_maxPerThreadStackUsage=' + str(stackSizeInBytes))
     80        options.additional_env_var.append('__XPC_JSC_maxPerThreadStackUsage=' + str(stackSizeInBytes))
    7781        run_details = run(port, options, args, stderr)
    7882        if run_details.exit_code != -1 and not run_details.initial_results.keyboard_interrupted:
Note: See TracChangeset for help on using the changeset viewer.