Changeset 245843 in webkit
- Timestamp:
- May 28, 2019, 8:27:47 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/run-jsc-stress-tests (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r245839 r245843 1 2019-05-28 Justin Michaud <justin_michaud@apple.com> 2 3 Attempt to fix JSC test timeouts after adding collectContinuously to WASM tests. 4 https://bugs.webkit.org/show_bug.cgi?id=198322 5 6 Reviewed by Saam Barati. 7 8 Increases the collection period from 1 to slightly higher to try to speed up the tests. Any higher and 9 the test runner does not detect the bug that required the memset in Wasm::Instance::Instance(). 10 11 * Scripts/run-jsc-stress-tests: 12 1 13 2019-05-28 Wenson Hsieh <wenson_hsieh@apple.com> 2 14 -
trunk/Tools/Scripts/run-jsc-stress-tests
r245765 r245843 1082 1082 run("wasm-slow-memory", "-m", "--useWebAssemblyFastMemory=false", *FTL_OPTIONS) 1083 1083 run("wasm-no-air", "-m", "--wasmBBQUsesAir=false", *FTL_OPTIONS) 1084 run("wasm-collect-continuously", "-m", "--collectContinuously=true", *FTL_OPTIONS)1084 run("wasm-collect-continuously", "-m", "--collectContinuously=true", "--collectContinuouslyPeriodMS=1.3", *FTL_OPTIONS) 1085 1085 end 1086 1086 end … … 1100 1100 run("wasm-slow-memory", "-m", "--useWebAssemblyFastMemory=false", *FTL_OPTIONS) 1101 1101 run("wasm-no-air", "-m", "--wasmBBQUsesAir=false", *FTL_OPTIONS) 1102 run("wasm-collect-continuously", "-m", "--collectContinuously=true", *FTL_OPTIONS)1102 run("wasm-collect-continuously", "-m", "--collectContinuously=true", "--collectContinuouslyPeriodMS=1.3", *FTL_OPTIONS) 1103 1103 end 1104 1104 end … … 1120 1120 run("wasm-no-tls-context", "--useFastTLSForWasmContext=false", *FTL_OPTIONS) 1121 1121 run("wasm-no-air", "--wasmBBQUsesAir=false", *FTL_OPTIONS) 1122 run("wasm-collect-continuously", "--collectContinuously=true", *FTL_OPTIONS)1122 run("wasm-collect-continuously", "--collectContinuously=true", "--collectContinuouslyPeriodMS=1.3", *FTL_OPTIONS) 1123 1123 end 1124 1124 end … … 1146 1146 runWithOutputHandler("wasm-no-tls-context", noisyOutputHandler, "../spec-harness.js", "--useFastTLSForWasmContext=false", *FTL_OPTIONS) 1147 1147 runWithOutputHandler("wasm-no-air", noisyOutputHandler, "../spec-harness.js", "--wasmBBQUsesAir=false", *FTL_OPTIONS) 1148 runWithOutputHandler("wasm-collect-continuously", noisyOutputHandler, "../spec-harness.js", "--collectContinuously=true", *FTL_OPTIONS)1148 runWithOutputHandler("wasm-collect-continuously", noisyOutputHandler, "../spec-harness.js", "--collectContinuously=true", "--collectContinuouslyPeriodMS=1.3", *FTL_OPTIONS) 1149 1149 end 1150 1150 end
Note:
See TracChangeset
for help on using the changeset viewer.