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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 'compiler/osr-with-args': [PASS, SLOW], | 399 'compiler/osr-with-args': [PASS, SLOW], |
400 'packed-elements': [PASS, SLOW], | 400 'packed-elements': [PASS, SLOW], |
401 'regress/regress-2185-2': [PASS, SLOW], | 401 'regress/regress-2185-2': [PASS, SLOW], |
402 'regress/regress-2790': [PASS, SLOW], | 402 'regress/regress-2790': [PASS, SLOW], |
403 'regress/regress-91008': [PASS, SLOW], | 403 'regress/regress-91008': [PASS, SLOW], |
404 'regress/regress-json-stringify-gc': [PASS, SLOW], | 404 'regress/regress-json-stringify-gc': [PASS, SLOW], |
405 'string-indexof-2': [PASS, TIMEOUT], | 405 'string-indexof-2': [PASS, TIMEOUT], |
406 }], # 'arch == arm or arch == android_arm' | 406 }], # 'arch == arm or arch == android_arm' |
407 | 407 |
408 ############################################################################## | 408 ############################################################################## |
| 409 ['(arch == mipsel or arch == mips or arch == mips64el or arch == mips64) and sim
ulator_run != True', { |
| 410 # These tests fail occasionally on the buildbots because they consume |
| 411 # a large amount of memory if executed in parallel. Therefore we |
| 412 # run only a single instance of these tests |
| 413 'regress/regress-crbug-514081': [PASS, NO_VARIANTS], |
| 414 'regress/regress-599717': [PASS, NO_VARIANTS], |
| 415 'regress/regress-599414-array-concat-fast-path': [PASS, NO_VARIANTS], |
| 416 'array-functions-prototype-misc': [PASS, NO_VARIANTS], |
| 417 }], # 'arch == mipsel or arch == mips or arch == mips64el or arch == mips64' |
| 418 |
| 419 ############################################################################## |
409 ['arch == mipsel or arch == mips', { | 420 ['arch == mipsel or arch == mips', { |
410 | 421 |
411 # Slow tests which times out in debug mode. | 422 # Slow tests which times out in debug mode. |
412 'try': [PASS, ['mode == debug', SKIP]], | 423 'try': [PASS, ['mode == debug', SKIP]], |
413 'array-constructor': [PASS, ['mode == debug', SKIP]], | 424 'array-constructor': [PASS, ['mode == debug', SKIP]], |
414 | 425 |
415 # Times out often in release mode on MIPS. | 426 # Times out often in release mode on MIPS. |
416 'compiler/regress-stacktrace-methods': [PASS, ['mode == release', TIMEOUT]], | 427 'compiler/regress-stacktrace-methods': [PASS, ['mode == release', TIMEOUT]], |
417 'array-splice': [PASS, TIMEOUT], | 428 'array-splice': [PASS, TIMEOUT], |
418 | 429 |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 'lithium/*': [SKIP], | 649 'lithium/*': [SKIP], |
639 'third_party/*': [SKIP], | 650 'third_party/*': [SKIP], |
640 'tools/*': [SKIP], | 651 'tools/*': [SKIP], |
641 'apply': [SKIP], | 652 'apply': [SKIP], |
642 'math-*': [SKIP], | 653 'math-*': [SKIP], |
643 'unicode-test': [SKIP], | 654 'unicode-test': [SKIP], |
644 'whitespaces': [SKIP], | 655 'whitespaces': [SKIP], |
645 }], # variant == wasm_traps | 656 }], # variant == wasm_traps |
646 | 657 |
647 ] | 658 ] |
OLD | NEW |