| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'compiler/alloc-number': [PASS, ['mode == debug', SKIP]], | 110 'compiler/alloc-number': [PASS, ['mode == debug', SKIP]], |
| 111 'compiler/alloc-number-debug': [PASS, ['mode == release', SKIP]], | 111 'compiler/alloc-number-debug': [PASS, ['mode == release', SKIP]], |
| 112 'regress/regress-634': [PASS, ['mode == debug', SKIP]], | 112 'regress/regress-634': [PASS, ['mode == debug', SKIP]], |
| 113 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], | 113 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], |
| 114 | 114 |
| 115 # BUG(336820). TODO(bmeurer): Investigate. | 115 # BUG(336820). TODO(bmeurer): Investigate. |
| 116 'regress/regress-336820': [PASS, FAIL], | 116 'regress/regress-336820': [PASS, FAIL], |
| 117 | 117 |
| 118 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for | 118 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for |
| 119 # nosse2. Also for arm novfp3. | 119 # nosse2. Also for arm novfp3. |
| 120 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == ia32
or arch == arm and simulator == True', PASS]], | 120 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87
or arch == arm and simulator == True', PASS]], |
| 121 | 121 |
| 122 # Skip endain dependent test for mips due to different typed views of the same | 122 # Skip endain dependent test for mips due to different typed views of the same |
| 123 # array buffer. | 123 # array buffer. |
| 124 'nans': [PASS, ['arch == mips', SKIP]], | 124 'nans': [PASS, ['arch == mips', SKIP]], |
| 125 | 125 |
| 126 }], # ALWAYS | 126 }], # ALWAYS |
| 127 | 127 |
| 128 ############################################################################## | 128 ############################################################################## |
| 129 ['gc_stress == True', { | 129 ['gc_stress == True', { |
| 130 # Skip tests not suitable for GC stress. | 130 # Skip tests not suitable for GC stress. |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 'never-optimize': [SKIP], | 412 'never-optimize': [SKIP], |
| 413 'regress/regress-2185-2': [SKIP], | 413 'regress/regress-2185-2': [SKIP], |
| 414 'harmony/object-observe': [SKIP], | 414 'harmony/object-observe': [SKIP], |
| 415 'readonly': [SKIP], | 415 'readonly': [SKIP], |
| 416 'array-feedback': [SKIP], | 416 'array-feedback': [SKIP], |
| 417 | 417 |
| 418 # Deopt every n garbage collections collides with deopt every n times. | 418 # Deopt every n garbage collections collides with deopt every n times. |
| 419 'regress/regress-2653': [SKIP], | 419 'regress/regress-2653': [SKIP], |
| 420 }], # 'deopt_fuzzer == True' | 420 }], # 'deopt_fuzzer == True' |
| 421 ] | 421 ] |
| OLD | NEW |