Commit 1624da37 authored by sampsong's avatar sampsong Committed by Commit Bot

PPC/S390: Disable skip-stack-guard-page.js test in simulator build

BUG=
R=bjaideep@ca.ibm.com, jyan@ca.ibm.com, joransiu@ca.ibm.com, machenbach@chromium.org, rossberg@chromium.org

Review-Url: https://codereview.chromium.org/2931133002
Cr-Commit-Position: refs/heads/master@{#45865}
parent 701d79d0
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
[ALWAYS, { [ALWAYS, {
#TODO(ahaas): Add additional stack checks on mips. #TODO(ahaas): Add additional stack checks on mips.
# Issue 6318: Stack checks for functions with huge stack frames fail on x64 and ia32 # Issue 6318: Stack checks for functions with huge stack frames fail on x64 and ia32
'tests/skip-stack-guard-page': [PASS, ['arch == mipsel or arch == mips64el or arch == x64 or arch == ia32', SKIP]], 'tests/skip-stack-guard-page': [PASS, ['arch == mipsel or arch == mips64el or arch == x64 or arch == ia32 or ((arch == ppc or arch == ppc64 or arch == s390 or arch == s390x) and simulator_run)', SKIP]],
}], # ALWAYS }], # ALWAYS
['arch == mipsel or arch == mips64el or arch == mips or arch == mips64', { ['arch == mipsel or arch == mips64el or arch == mips or arch == mips64', {
......
...@@ -787,7 +787,7 @@ def Execute(arch, mode, args, options, suites): ...@@ -787,7 +787,7 @@ def Execute(arch, mode, args, options, suites):
# target_arch != v8_target_arch in the dumped build config. # target_arch != v8_target_arch in the dumped build config.
simulator_run = not options.dont_skip_simulator_slow_tests and \ simulator_run = not options.dont_skip_simulator_slow_tests and \
arch in ['arm64', 'arm', 'mipsel', 'mips', 'mips64', 'mips64el', \ arch in ['arm64', 'arm', 'mipsel', 'mips', 'mips64', 'mips64el', \
'ppc', 'ppc64'] and \ 'ppc', 'ppc64', 's390', 's390x'] and \
ARCH_GUESS and arch != ARCH_GUESS ARCH_GUESS and arch != ARCH_GUESS
# Find available test suites and read test cases from them. # Find available test suites and read test cases from them.
variables = { variables = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment