From 477116fb5a111ba0cc71be66a86a3c29f648e906 Mon Sep 17 00:00:00 2001 From: Adam Klein Date: Wed, 21 Dec 2022 10:25:42 -0800 Subject: [PATCH] Skip mjsunit/md5 under --future due to maglev It's failing regularly on the ubsan bot, closing the tree. This CL also adds a 'variant == future' section in the mjsunit.status file to enable easy disabling of maglev-specific failures. No-Tree-Checks: true Bug: v8:13612 Change-Id: I3c0f7725e1fb36577e97c662cd3830c64ba298e0 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4120554 Bot-Commit: Rubber Stamper Commit-Queue: Rubber Stamper Auto-Submit: Adam Klein Cr-Commit-Position: refs/heads/main@{#84982} --- test/mjsunit/mjsunit.status | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status index b69d19df1b..9f3dba4754 100644 --- a/test/mjsunit/mjsunit.status +++ b/test/mjsunit/mjsunit.status @@ -1507,6 +1507,16 @@ 'never-optimize': [SKIP], }], # variant == maglev +############################################################################## +['variant == future', { + # Because future implies maglev, tests that fail under maglev now also fail + # under future. Thus this section likely supercedes the maglev section above. + # TODO(adamk): Remove the maglev section in preference to this one? + + # https://crbug.com/v8/13612 + 'md5': [SKIP], +}], # variant == future + ############################################################################## ['no_simd_hardware == True', { 'wasm/exceptions-simd': [SKIP],