Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Issue 139233005: Skip webkit/function-apply-aliased.js when running on simulators. (Closed)

Created:
6 years, 10 months ago by kilvadyb
Modified:
6 years, 5 months ago
CC:
v8-dev
Base URL:
https://github.com/v8/v8.git@gbl
Visibility:
Public.

Description

Skip webkit/function-apply-aliased.js when running on simulators. The webkit/function-apply-aliased.js test fails on simulators (both MIPS and ARM) as the printed output does not match to the expected. The failing test forces a stack overflow exception and the ToString() operation of the exception object fails because of an other stack overflow and returns an empty string. The problem is that on hardware a common JS and C stack is used so the stack overflow can be caught in C functions also while on simulator separated JS and C stacks are used. This patch adds a "sim" condition to test .status files to skip tests only on simulator. LOG=N BUG=v8:3124

Patch Set 1 #

Total comments: 4

Patch Set 2 : Fixed nits. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+12 lines, -0 lines) Patch
M test/webkit/webkit.status View 1 1 chunk +3 lines, -0 lines 0 comments Download
M tools/run-tests.py View 1 3 chunks +9 lines, -0 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
kilvadyb
6 years, 10 months ago (2014-01-29 17:32:47 UTC) #1
Paul Lind
LGTM, but this needs review from v8 team ... PTAL. Balázs you might want to ...
6 years, 10 months ago (2014-01-29 17:53:31 UTC) #2
kilvadyb
6 years, 10 months ago (2014-01-29 18:09:37 UTC) #3
Jakob Kummerow
More fine-grained conditional test expectations seem to be all the rage these days, and for ...
6 years, 10 months ago (2014-01-30 09:51:09 UTC) #4
kilvadyb
https://codereview.chromium.org/139233005/diff/1/test/webkit/webkit.status File test/webkit/webkit.status (right): https://codereview.chromium.org/139233005/diff/1/test/webkit/webkit.status#newcode45 test/webkit/webkit.status:45: ['sim == True', { On 2014/01/30 09:51:09, Jakob wrote: ...
6 years, 10 months ago (2014-01-30 10:34:49 UTC) #5
Paul Lind
> On 2014/01/30 09:51:09, Jakob wrote: > I'm seeing this as a temporary solution. Hi ...
6 years, 10 months ago (2014-01-30 15:58:25 UTC) #6
Jakob Kummerow
On 2014/01/30 15:58:25, Paul Lind wrote: > Hi Jakob - I'm afraid I don't see ...
6 years, 10 months ago (2014-01-30 17:32:20 UTC) #7
Paul Lind
6 years, 10 months ago (2014-01-30 18:06:33 UTC) #8
Committed as r18959.

Powered by Google App Engine
This is Rietveld 408576698