| OLD | NEW |
| 1 # Copyright 2015 the V8 project authors. All rights reserved. | 1 # Copyright 2015 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # -------------------------------------------------------------------- | 5 # -------------------------------------------------------------------- |
| 6 # If you add a test case to this file, please try to provide | 6 # If you add a test case to this file, please try to provide |
| 7 # an explanation of why the test fails; this may ease future | 7 # an explanation of why the test fails; this may ease future |
| 8 # debugging. | 8 # debugging. |
| 9 # -------------------------------------------------------------------- | 9 # -------------------------------------------------------------------- |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 'benchmarks/kernel-template': [PASS, SLOW], | 24 'benchmarks/kernel-template': [PASS, SLOW], |
| 25 'benchmarks/memset': [PASS, SLOW], | 25 'benchmarks/memset': [PASS, SLOW], |
| 26 }], | 26 }], |
| 27 | 27 |
| 28 ###################################################################### | 28 ###################################################################### |
| 29 ['byteorder == big', { | 29 ['byteorder == big', { |
| 30 # shell_test_runner requires little-endian, skip it on big-endian. | 30 # shell_test_runner requires little-endian, skip it on big-endian. |
| 31 'shell_test_runner': [SKIP], | 31 'shell_test_runner': [SKIP], |
| 32 }], # 'byteorder == big' | 32 }], # 'byteorder == big' |
| 33 | 33 |
| 34 ###################################################################### |
| 35 ['variant == asm_wasm', { |
| 36 # TODO(bradnelson): https://bugs.chromium.org/p/v8/issues/detail?id=5356 |
| 37 'benchmarks/memset': [SKIP], |
| 38 }], # variant == asm_wasm |
| 39 |
| 34 ] | 40 ] |
| OLD | NEW |