⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 245879 in webkit


Ignore:
Timestamp:
May 29, 2019, 4:53:57 PM (7 years ago)
Author:
Justin Michaud
Message:

Attempt to fix JSC test timeouts after adding collectContinuously to WASM tests.
https://bugs.webkit.org/show_bug.cgi?id=198322

Rubber-stamped by Michael Saboff. Disable running the new collectContinuously tests on debug builds.
This matches what we do for other jsc tests.

  • Scripts/run-jsc-stress-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r245875 r245879  
     12019-05-29  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        Rubber-stamped by Michael Saboff. Disable running the new collectContinuously tests on debug builds.
     7        This matches what we do for other jsc tests.
     8
     9        * Scripts/run-jsc-stress-tests:
     10
    1112019-05-29  Don Olmstead  <don.olmstead@sony.com>
    212
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r245843 r245879  
    10821082        run("wasm-slow-memory", "-m", "--useWebAssemblyFastMemory=false", *FTL_OPTIONS)
    10831083        run("wasm-no-air", "-m", "--wasmBBQUsesAir=false", *FTL_OPTIONS)
    1084         run("wasm-collect-continuously", "-m", "--collectContinuously=true", "--collectContinuouslyPeriodMS=1.3", *FTL_OPTIONS)
     1084        run("wasm-collect-continuously", "-m", "--collectContinuously=true", *FTL_OPTIONS) if shouldCollectContinuously?
    10851085    end
    10861086end
     
    11001100        run("wasm-slow-memory", "-m", "--useWebAssemblyFastMemory=false", *FTL_OPTIONS)
    11011101        run("wasm-no-air", "-m", "--wasmBBQUsesAir=false", *FTL_OPTIONS)
    1102         run("wasm-collect-continuously", "-m", "--collectContinuously=true", "--collectContinuouslyPeriodMS=1.3", *FTL_OPTIONS)
     1102        run("wasm-collect-continuously", "-m", "--collectContinuously=true", *FTL_OPTIONS) if shouldCollectContinuously?
    11031103    end
    11041104end
     
    11201120        run("wasm-no-tls-context", "--useFastTLSForWasmContext=false", *FTL_OPTIONS)
    11211121        run("wasm-no-air", "--wasmBBQUsesAir=false", *FTL_OPTIONS)
    1122         run("wasm-collect-continuously", "--collectContinuously=true", "--collectContinuouslyPeriodMS=1.3", *FTL_OPTIONS)
     1122        run("wasm-collect-continuously", "--collectContinuously=true", *FTL_OPTIONS) if shouldCollectContinuously?
    11231123    end
    11241124end
     
    11461146      runWithOutputHandler("wasm-no-tls-context", noisyOutputHandler, "../spec-harness.js", "--useFastTLSForWasmContext=false", *FTL_OPTIONS)
    11471147      runWithOutputHandler("wasm-no-air", noisyOutputHandler, "../spec-harness.js", "--wasmBBQUsesAir=false", *FTL_OPTIONS)
    1148       runWithOutputHandler("wasm-collect-continuously", noisyOutputHandler, "../spec-harness.js", "--collectContinuously=true", "--collectContinuouslyPeriodMS=1.3", *FTL_OPTIONS)
     1148      runWithOutputHandler("wasm-collect-continuously", noisyOutputHandler, "../spec-harness.js", "--collectContinuously=true", *FTL_OPTIONS) if shouldCollectContinuously?
    11491149    end
    11501150end
Note: See TracChangeset for help on using the changeset viewer.