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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 'regress/regress-634': [PASS, ['mode == debug', SKIP]], | 186 'regress/regress-634': [PASS, ['mode == debug', SKIP]], |
187 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], | 187 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], |
188 | 188 |
189 # BUG(336820). TODO(bmeurer): Investigate. | 189 # BUG(336820). TODO(bmeurer): Investigate. |
190 'regress/regress-336820': [PASS, FAIL], | 190 'regress/regress-336820': [PASS, FAIL], |
191 | 191 |
192 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for | 192 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for |
193 # nosse2. Also for arm novfp3. | 193 # nosse2. Also for arm novfp3. |
194 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87
or arch == arm and simulator == True', PASS]], | 194 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87
or arch == arm and simulator == True', PASS]], |
195 | 195 |
196 # Skip endain dependent test for mips due to different typed views of the same | |
197 # array buffer. | |
198 'nans': [PASS, ], | |
199 | |
200 # This test variant makes only sense on arm. | 196 # This test variant makes only sense on arm. |
201 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], | 197 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], |
202 | 198 |
203 # Too slow for slow variants. | 199 # Too slow for slow variants. |
204 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], | 200 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], |
205 }], # ALWAYS | 201 }], # ALWAYS |
206 | 202 |
207 ############################################################################## | 203 ############################################################################## |
208 ['gc_stress == True', { | 204 ['gc_stress == True', { |
209 # Skip tests not suitable for GC stress. | 205 # Skip tests not suitable for GC stress. |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 'never-optimize': [SKIP], | 577 'never-optimize': [SKIP], |
582 'regress/regress-2185-2': [SKIP], | 578 'regress/regress-2185-2': [SKIP], |
583 'harmony/object-observe': [SKIP], | 579 'harmony/object-observe': [SKIP], |
584 'readonly': [SKIP], | 580 'readonly': [SKIP], |
585 'array-feedback': [SKIP], | 581 'array-feedback': [SKIP], |
586 | 582 |
587 # Deopt every n garbage collections collides with deopt every n times. | 583 # Deopt every n garbage collections collides with deopt every n times. |
588 'regress/regress-2653': [SKIP], | 584 'regress/regress-2653': [SKIP], |
589 }], # 'deopt_fuzzer == True' | 585 }], # 'deopt_fuzzer == True' |
590 ] | 586 ] |
OLD | NEW |