OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 # Skip tests not suitable for MSAN. | 357 # Skip tests not suitable for MSAN. |
358 'big-array-literal': [SKIP], | 358 'big-array-literal': [SKIP], |
359 # ICU upstream issues. | 359 # ICU upstream issues. |
360 'date': [SKIP], | 360 'date': [SKIP], |
361 'deep-recursion': [SKIP], | 361 'deep-recursion': [SKIP], |
362 'regress/regress-builtinbust-7': [SKIP], | 362 'regress/regress-builtinbust-7': [SKIP], |
363 'string-localecompare': [SKIP], | 363 'string-localecompare': [SKIP], |
364 | 364 |
365 # Too slow. | 365 # Too slow. |
366 'harmony/regexp-property-lu-ui': [SKIP], | 366 'harmony/regexp-property-lu-ui': [SKIP], |
| 367 |
| 368 # Flaky with baseline? |
| 369 'regress/regress-2185-2': [SKIP], |
367 }], # 'msan == True' | 370 }], # 'msan == True' |
368 | 371 |
369 ############################################################################## | 372 ############################################################################## |
370 ['arch == arm or arch == android_arm', { | 373 ['arch == arm or arch == android_arm', { |
371 | 374 |
372 # Slow tests which times out in debug mode. | 375 # Slow tests which times out in debug mode. |
373 'try': [PASS, ['mode == debug', SKIP]], | 376 'try': [PASS, ['mode == debug', SKIP]], |
374 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 377 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
375 'array-constructor': [PASS, ['mode == debug', SKIP]], | 378 'array-constructor': [PASS, ['mode == debug', SKIP]], |
376 'regress/regress-1122': [PASS, SLOW, ['mode == debug and arch == android_arm',
SKIP]], | 379 'regress/regress-1122': [PASS, SLOW, ['mode == debug and arch == android_arm',
SKIP]], |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 'lithium/*': [SKIP], | 653 'lithium/*': [SKIP], |
651 'third_party/*': [SKIP], | 654 'third_party/*': [SKIP], |
652 'tools/*': [SKIP], | 655 'tools/*': [SKIP], |
653 'apply': [SKIP], | 656 'apply': [SKIP], |
654 'math-*': [SKIP], | 657 'math-*': [SKIP], |
655 'unicode-test': [SKIP], | 658 'unicode-test': [SKIP], |
656 'whitespaces': [SKIP], | 659 'whitespaces': [SKIP], |
657 }], # variant == wasm_traps | 660 }], # variant == wasm_traps |
658 | 661 |
659 ] | 662 ] |
OLD | NEW |