1# Copyright 2017 the V8 project authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5[ 6[ALWAYS, { 7 'raspberries': FAIL, 8 'strawberries': [PASS, ['mode == release', SLOW], ['mode == debug', NO_VARIANTS]], 9 'mangoes': [PASS, SLOW], 10 11 # Both cherries and apples are to test how PASS an FAIL from different 12 # sections are merged. 13 'cherries': [PASS, SLOW], 14 'apples': [FAIL], 15 16 # Unused rule. 17 'carrots': [PASS, FAIL], 18}], 19 20['variant == nooptimization', { 21 'strawberries': [SKIP], 22}], 23 24['arch == x64', { 25 'cherries': [FAIL], 26 'apples': [PASS, SLOW], 27 28 # Unused rule. 29 'regress/*': [CRASH], 30}], 31 32['asan', { 33 'bananas': [PASS, NO_VARIANTS], 34 'raspberries': [FAIL, NO_VARIANTS], 35}], 36] 37