From: chunyang.dai Date: Tue, 14 Apr 2015 08:05:36 +0000 (-0700) Subject: X87: Disable the test case for X87 since f3338dd3b01c X-Git-Tag: upstream/4.7.83~3233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31a3d5fcd2157bdc002ec7f581905e659eac707b;p=platform%2Fupstream%2Fv8.git X87: Disable the test case for X87 since f3338dd3b01c The overwrite-builtins test cases will throw one expected exception and the exception message should include the source position in the JS file. But crankshaft compiler does not generate the source position for it when creating the flow graph by default. The source position information is always zero. So it failed when comparing with the reference file. If we use crankshaft compiler on IA32 platform to run this test case, it has the same failure. BUG= Review URL: https://codereview.chromium.org/1086503002 Cr-Commit-Position: refs/heads/master@{#27807} --- diff --git a/test/message/message.status b/test/message/message.status index 234bf0f..f28aa2a 100644 --- a/test/message/message.status +++ b/test/message/message.status @@ -30,4 +30,11 @@ # All tests in the bug directory are expected to fail. 'bugs/*': [FAIL], }], # ALWAYS + +############################################################################## +['arch == x87', { + + # Crankshaft compiler did not generate required source position for it: + 'overwritten-builtins': [SKIP], +}], # 'arch == x87' ]