Skip to content

Commit

Permalink
[ iOS tvOS ]10X wasm.yaml/wasm/v8/table* (jsc-tests) are constant fai…
Browse files Browse the repository at this point in the history
…lures

https://bugs.webkit.org/show_bug.cgi?id=270950
rdar://124479459

Reviewed by Keith Miller.

Some of the more intensive modes cause this test to be OOM killed, so let's just skip them.

* JSTests/wasm/v8/table.js:

Canonical link: https://commits.webkit.org/276206@main
  • Loading branch information
Justin Michaud committed Mar 15, 2024
1 parent dff4269 commit 588ac09
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion JSTests/wasm/v8/table.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//@ requireOptions("--useBBQJIT=1", "--useWasmLLInt=1", "--wasmLLIntTiersUpToBBQ=1")
//@ skip if $memoryLimited
//@ runV8WebAssemblySuiteQuick(:no_module, "mjsunit.js")
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
Expand Down
12 changes: 12 additions & 0 deletions Tools/Scripts/run-jsc-stress-tests
Original file line number Diff line number Diff line change
Expand Up @@ -1876,6 +1876,18 @@ def runV8WebAssemblySuite(*optionalTestSpecificOptions)
end
end

def runV8WebAssemblySuiteQuick(*optionalTestSpecificOptions)
return if !$jitTests
return if !$isWasmPlatform
prepareExtraAbsoluteFiles(Pathname.new(WASMTESTS_PATH).join("v8", "resources"), ["async-compile.js", "mjsunit.js", "trap-location.js", "user-properties-common.js", "wasm-module-builder.js"])
if optionalTestSpecificOptions[0] == :no_module
optionalTestSpecificOptions.shift
else
optionalTestSpecificOptions.unshift "-m"
end
run("default-wasm", *(FTL_OPTIONS + optionalTestSpecificOptions))
end

def runHarnessTest(kind, *options)
wasmFiles = allWasmFiles($collection)
wasmFiles.each {
Expand Down

0 comments on commit 588ac09

Please sign in to comment.