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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 # TODO(mythria,4680): All of these tests have large loops and hence slow | 546 # TODO(mythria,4680): All of these tests have large loops and hence slow |
547 # and timeout. | 547 # and timeout. |
548 'compiler/osr-big': [PASS, NO_IGNITION], | 548 'compiler/osr-big': [PASS, NO_IGNITION], |
549 'compiler/osr-nested': [PASS, NO_IGNITION], | 549 'compiler/osr-nested': [PASS, NO_IGNITION], |
550 'regress/regress-298269': [PASS, NO_IGNITION], | 550 'regress/regress-298269': [PASS, NO_IGNITION], |
551 'regress/regress-crbug-319860': [PASS, NO_IGNITION], | 551 'regress/regress-crbug-319860': [PASS, NO_IGNITION], |
552 'regress/regress-deep-proto': [PASS, NO_IGNITION], | 552 'regress/regress-deep-proto': [PASS, NO_IGNITION], |
553 'try': [PASS, NO_IGNITION], | 553 'try': [PASS, NO_IGNITION], |
554 # Too slow for interpreter and msan. | 554 # Too slow for interpreter and msan. |
555 'es6/tail-call-megatest*': [PASS, NO_IGNITION], | 555 'es6/tail-call-megatest*': [PASS, NO_IGNITION], |
| 556 |
| 557 # Too slow. |
| 558 'harmony/regexp-property-lu-ui': [SKIP], |
556 }], # 'msan == True' | 559 }], # 'msan == True' |
557 | 560 |
558 ############################################################################## | 561 ############################################################################## |
559 ['arch == arm or arch == android_arm', { | 562 ['arch == arm or arch == android_arm', { |
560 | 563 |
561 # Slow tests which times out in debug mode. | 564 # Slow tests which times out in debug mode. |
562 'try': [PASS, ['mode == debug', SKIP]], | 565 'try': [PASS, ['mode == debug', SKIP]], |
563 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 566 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
564 'array-constructor': [PASS, ['mode == debug', SKIP]], | 567 'array-constructor': [PASS, ['mode == debug', SKIP]], |
565 'regress/regress-1122': [PASS, SLOW, ['mode == debug and arch == android_arm',
SKIP]], | 568 'regress/regress-1122': [PASS, SLOW, ['mode == debug and arch == android_arm',
SKIP]], |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 ############################################################################## | 875 ############################################################################## |
873 ['gcov_coverage', { | 876 ['gcov_coverage', { |
874 # Tests taking too long. | 877 # Tests taking too long. |
875 'array-functions-prototype-misc': [SKIP], | 878 'array-functions-prototype-misc': [SKIP], |
876 | 879 |
877 # Stack overflow. | 880 # Stack overflow. |
878 'big-array-literal': [SKIP], | 881 'big-array-literal': [SKIP], |
879 }], # 'gcov_coverage' | 882 }], # 'gcov_coverage' |
880 | 883 |
881 ] | 884 ] |
OLD | NEW |