Changeset 207913 in webkit


Ignore:
Timestamp:
Oct 26, 2016 2:09:38 PM (7 years ago)
Author:
Yusuke Suzuki
Message:

[GTK] JSC test wasm.yaml/wasm/js-api/test_basic_api.js.default-wasm and wasm.yaml/wasm/js-api/test_Module.js.default-wasm fail with Exception: ReferenceError: Can't find variable: WebAssembly
https://bugs.webkit.org/show_bug.cgi?id=163846

Reviewed by Michael Catanzaro.

WebAssembly is now developed for Darwin right now.
Disable WASM tests in the other platforms.

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r207891 r207913  
     12016-10-26  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        [GTK] JSC test wasm.yaml/wasm/js-api/test_basic_api.js.default-wasm and wasm.yaml/wasm/js-api/test_Module.js.default-wasm fail with Exception: ReferenceError: Can't find variable: WebAssembly
     4        https://bugs.webkit.org/show_bug.cgi?id=163846
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        WebAssembly is now developed for Darwin right now.
     9        Disable WASM tests in the other platforms.
     10
     11        * Scripts/run-jsc-stress-tests:
     12
    1132016-10-26  Enrique Ocaña González  <eocanha@igalia.com>
    214
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r207432 r207913  
    11581158    return if !$jitTests
    11591159    return if !$isFTLPlatform
     1160    # FIXME: The current WebAssembly implementation includes Darwin specific things.
     1161    # Once WebAssembly becomes ready to be ported, we will enable it on the other OSes (like Linux) and drop this workaround.
     1162    # https://bugs.webkit.org/show_bug.cgi?id=164032
     1163    return if $hostOS != "darwin"
    11601164    modules = Dir[WASMTESTS_PATH + "*.js"].map { |f| File.basename(f) }
    11611165    prepareExtraAbsoluteFiles(WASMTESTS_PATH, ["wasm.json"])
Note: See TracChangeset for help on using the changeset viewer.