Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: test/mjsunit/mjsunit.status

Issue 704723002: Add fast-variants feature to test driver. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/testrunner/local/statusfile.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 13 matching lines...) Expand all
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 [ 28 [
29 [ALWAYS, { 29 [ALWAYS, {
30 # All tests in the bug directory are expected to fail. 30 # All tests in the bug directory are expected to fail.
31 'bugs/*': [FAIL], 31 'bugs/*': [FAIL],
32 32
33 ############################################################################## 33 ##############################################################################
34 # Slow tests.
35 'asm/embenchen/box2d': [PASS, SLOW],
36 'asm/embenchen/lua_binarytrees': [PASS, SLOW],
37
38 ##############################################################################
39 # Flaky tests. 34 # Flaky tests.
40 # BUG(v8:2921). 35 # BUG(v8:2921).
41 'debug-step-4-in-frame': [PASS, FAIL, SLOW], 36 'debug-step-4-in-frame': [PASS, FAIL, SLOW],
42 37
43 ############################################################################## 38 ##############################################################################
44 # Fails. 39 # Fails.
45 'regress/regress-1119': [FAIL], 40 'regress/regress-1119': [FAIL],
46 41
47 # Issue 1719: Slow to collect arrays over several contexts. 42 # Issue 1719: Slow to collect arrays over several contexts.
48 'regress/regress-524': [SKIP], 43 'regress/regress-524': [SKIP],
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for 193 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for
199 # nosse2. Also for arm novfp3. 194 # nosse2. Also for arm novfp3.
200 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87 or arch == arm and simulator == True', PASS]], 195 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87 or arch == arm and simulator == True', PASS]],
201 196
202 # Skip endain dependent test for mips due to different typed views of the same 197 # Skip endain dependent test for mips due to different typed views of the same
203 # array buffer. 198 # array buffer.
204 'nans': [PASS, ], 199 'nans': [PASS, ],
205 200
206 # This test variant makes only sense on arm. 201 # This test variant makes only sense on arm.
207 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a rm, android_arm64]', SKIP]], 202 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a rm, android_arm64]', SKIP]],
203
204 # Too slow for slow variants.
205 'asm/embenchen/*': [PASS, FAST_VARIANTS]
208 }], # ALWAYS 206 }], # ALWAYS
209 207
210 ############################################################################## 208 ##############################################################################
211 ['gc_stress == True', { 209 ['gc_stress == True', {
212 # Skip tests not suitable for GC stress. 210 # Skip tests not suitable for GC stress.
213 'allocation-site-info': [SKIP], 211 'allocation-site-info': [SKIP],
214 'array-constructor-feedback': [SKIP], 212 'array-constructor-feedback': [SKIP],
215 'array-feedback': [SKIP], 213 'array-feedback': [SKIP],
216 'array-literal-feedback': [SKIP], 214 'array-literal-feedback': [SKIP],
217 'd8-performance-now': [SKIP], 215 'd8-performance-now': [SKIP],
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 'never-optimize': [SKIP], 567 'never-optimize': [SKIP],
570 'regress/regress-2185-2': [SKIP], 568 'regress/regress-2185-2': [SKIP],
571 'harmony/object-observe': [SKIP], 569 'harmony/object-observe': [SKIP],
572 'readonly': [SKIP], 570 'readonly': [SKIP],
573 'array-feedback': [SKIP], 571 'array-feedback': [SKIP],
574 572
575 # Deopt every n garbage collections collides with deopt every n times. 573 # Deopt every n garbage collections collides with deopt every n times.
576 'regress/regress-2653': [SKIP], 574 'regress/regress-2653': [SKIP],
577 }], # 'deopt_fuzzer == True' 575 }], # 'deopt_fuzzer == True'
578 ] 576 ]
OLDNEW
« no previous file with comments | « no previous file | tools/testrunner/local/statusfile.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698