| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 # Stack manipulations in LiveEdit is not implemented for this arch. | 301 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 302 'debug-liveedit-check-stack': [SKIP], | 302 'debug-liveedit-check-stack': [SKIP], |
| 303 'debug-liveedit-stack-padding': [SKIP], | 303 'debug-liveedit-stack-padding': [SKIP], |
| 304 'debug-liveedit-restart-frame': [SKIP], | 304 'debug-liveedit-restart-frame': [SKIP], |
| 305 'debug-liveedit-double-call': [SKIP], | 305 'debug-liveedit-double-call': [SKIP], |
| 306 'harmony/generators-debug-liveedit': [SKIP], | 306 'harmony/generators-debug-liveedit': [SKIP], |
| 307 | 307 |
| 308 # Currently always deopt on minus zero | 308 # Currently always deopt on minus zero |
| 309 'math-floor-of-div-minus-zero': [SKIP], | 309 'math-floor-of-div-minus-zero': [SKIP], |
| 310 | 310 |
| 311 # Issue 3259. | |
| 312 'math-floor-of-div-nosudiv': [PASS, FAIL], | |
| 313 'math-floor-of-div': [PASS, FAIL], | |
| 314 | |
| 315 ############################################################################ | 311 ############################################################################ |
| 316 # Slow tests. | 312 # Slow tests. |
| 317 'regress/regress-2185-2': [PASS, SLOW], | 313 'regress/regress-2185-2': [PASS, SLOW], |
| 318 'mirror-object': [PASS, SLOW], | 314 'mirror-object': [PASS, SLOW], |
| 319 'compiler/osr-with-args': [PASS, SLOW], | 315 'compiler/osr-with-args': [PASS, SLOW], |
| 320 'array-sort': [PASS, SLOW], | 316 'array-sort': [PASS, SLOW], |
| 321 'packed-elements': [PASS, SLOW], | 317 'packed-elements': [PASS, SLOW], |
| 322 'regress/regress-91008': [PASS, SLOW], | 318 'regress/regress-91008': [PASS, SLOW], |
| 323 'regress/regress-2790': [PASS, SLOW], | 319 'regress/regress-2790': [PASS, SLOW], |
| 324 'regress/regress-json-stringify-gc': [PASS, SLOW], | 320 'regress/regress-json-stringify-gc': [PASS, SLOW], |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 'never-optimize': [SKIP], | 412 'never-optimize': [SKIP], |
| 417 'regress/regress-2185-2': [SKIP], | 413 'regress/regress-2185-2': [SKIP], |
| 418 'harmony/object-observe': [SKIP], | 414 'harmony/object-observe': [SKIP], |
| 419 'readonly': [SKIP], | 415 'readonly': [SKIP], |
| 420 'array-feedback': [SKIP], | 416 'array-feedback': [SKIP], |
| 421 | 417 |
| 422 # Deopt every n garbage collections collides with deopt every n times. | 418 # Deopt every n garbage collections collides with deopt every n times. |
| 423 'regress/regress-2653': [SKIP], | 419 'regress/regress-2653': [SKIP], |
| 424 }], # 'deopt_fuzzer == True' | 420 }], # 'deopt_fuzzer == True' |
| 425 ] | 421 ] |
| OLD | NEW |