Changeset 203067 in webkit
- Timestamp:
- Jul 11, 2016, 10:04:14 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r203060 r203067 1 2016-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 1 12 2016-07-11 Fujii Hironori <Hironori.Fujii@sony.com> 2 13 -
trunk/LayoutTests/js/dom/deep-recursion-test.html
r156066 r203067 14 14 15 15 try { 16 simpleRecursion(1 7472);16 simpleRecursion(10000); 17 17 } catch (ex) { 18 18 debug("FAIL: " + ex); -
trunk/LayoutTests/js/script-tests/stack-overflow-arrity-catch.js
r201412 r203067 1 1 description('Test that if an arrity check causes a stack overflow, the exception goes to the right catch'); 2 2 3 function funcWith 20Args(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8,3 function funcWith40Args(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, 4 4 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) 6 9 { 7 debug("ERROR: Shouldn't arrive in 20 arg function!");10 debug("ERROR: Shouldn't arrive in 40 arg function!"); 8 11 } 9 12 … … 24 27 25 28 try { 26 funcWith 20Args(1, 2, 3);29 funcWith40Args(1, 2, 3); 27 30 } catch (err2) { 28 31 gotRightCatch = true; … … 45 48 // now cause a stack overflow exception due to arrity processing 46 49 try { 47 funcWith 20Args(1, 2, 3, 4, 5, 6);50 funcWith40Args(1, 2, 3, 4, 5, 6); 48 51 } catch (err2) { 49 52 gotRightCatch = true; -
trunk/Tools/ChangeLog
r203063 r203067 1 2016-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 1 16 2016-07-11 Michael Catanzaro <mcatanzaro@igalia.com> 2 17 -
trunk/Tools/Scripts/run-jsc-stress-tests
r202364 r203067 1 1 #!/usr/bin/env ruby 2 2 3 # Copyright (C) 2013-201 5Apple Inc. All rights reserved.3 # Copyright (C) 2013-2016 Apple Inc. All rights reserved. 4 4 # 5 5 # Redistribution and use in source and binary forms, with or without … … 427 427 $numPasses = 0 428 428 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. 430 BASE_OPTIONS = ["--useFTLJIT=false", "--useFunctionDotArguments=true", "--maxPerThreadStackUsage=1572864"] 430 431 EAGER_OPTIONS = ["--thresholdForJITAfterWarmUp=10", "--thresholdForJITSoon=10", "--thresholdForOptimizeAfterWarmUp=20", "--thresholdForOptimizeAfterLongWarmUp=20", "--thresholdForOptimizeSoon=20", "--thresholdForFTLOptimizeAfterWarmUp=20", "--thresholdForFTLOptimizeSoon=20", "--maximumEvalCacheableSourceLength=150000"] 431 432 NO_CJIT_OPTIONS = ["--useConcurrentJIT=false", "--thresholdForJITAfterWarmUp=100"] -
trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
r202619 r203067 1 1 # Copyright (C) 2010 Google Inc. All rights reserved. 2 2 # 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. 4 4 # 5 5 # Redistribution and use in source and binary forms, with or without … … 75 75 76 76 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)) 77 81 run_details = run(port, options, args, stderr) 78 82 if run_details.exit_code != -1 and not run_details.initial_results.keyboard_interrupted:
Note:
See TracChangeset
for help on using the changeset viewer.