Chromium Code Reviews| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 332 'packed-elements': [SKIP], | 332 'packed-elements': [SKIP], |
| 333 'regexp-global': [SKIP], | 333 'regexp-global': [SKIP], |
| 334 'math-floor-of-div': [PASS, SLOW], | 334 'math-floor-of-div': [PASS, SLOW], |
| 335 'math-floor-of-div-nosudiv': [PASS, SLOW], | 335 'math-floor-of-div-nosudiv': [PASS, SLOW], |
| 336 'unicodelctest': [PASS, SLOW], | 336 'unicodelctest': [PASS, SLOW], |
| 337 'unicodelctest-no-optimization': [PASS, SLOW], | 337 'unicodelctest-no-optimization': [PASS, SLOW], |
| 338 # Issue 3219: | 338 # Issue 3219: |
| 339 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], | 339 'getters-on-elements': [PASS, ['gc_stress == True', FAIL]], |
| 340 }], # 'arch == arm64 and mode == debug and simulator_run == True' | 340 }], # 'arch == arm64 and mode == debug and simulator_run == True' |
| 341 | 341 |
| 342 ['arch == arm and simulator_run == True or arch == ppc and simulator_run == True ', { | |
|
Eric Holk
2017/06/13 16:19:47
Should these be wrapped to 80 chararacters?
gdeepti
2017/06/13 21:25:43
I don't know if there's a way to wrap around in st
Eric Holk
2017/06/13 22:37:20
sgtm
| |
| 343 # Because of how allocations in the simulator work, simulator run assumes | |
| 344 # everything to be in the lower 4-gb address space, which fails this test | |
| 345 # on 32 bit arch simulators | |
|
Eric Holk
2017/06/13 16:19:47
I'm not sure I understand this. Just to make sure,
gdeepti
2017/06/13 21:25:43
My comment is not indicative of what is actually h
Eric Holk
2017/06/13 22:37:20
sgtm
| |
| 346 'wasm/large-offset': [SKIP], | |
| 347 }], # 'arch == arm and simulator_run == True or arch == ppc and simulator_run = = True' | |
| 348 | |
| 342 ############################################################################## | 349 ############################################################################## |
| 343 ['asan == True', { | 350 ['asan == True', { |
| 344 # Skip tests not suitable for ASAN. | 351 # Skip tests not suitable for ASAN. |
| 345 'big-array-literal': [SKIP], | 352 'big-array-literal': [SKIP], |
| 346 'big-object-literal': [SKIP], | 353 'big-object-literal': [SKIP], |
| 347 'regress/regress-crbug-178790': [SKIP], | 354 'regress/regress-crbug-178790': [SKIP], |
| 348 | 355 |
| 349 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 356 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 350 # The failed allocation causes an asan/msan/tsan error | 357 # The failed allocation causes an asan/msan/tsan error |
| 351 'es6/typedarray-construct-offset-not-smi': [SKIP], | 358 'es6/typedarray-construct-offset-not-smi': [SKIP], |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 648 'lithium/*': [SKIP], | 655 'lithium/*': [SKIP], |
| 649 'third_party/*': [SKIP], | 656 'third_party/*': [SKIP], |
| 650 'tools/*': [SKIP], | 657 'tools/*': [SKIP], |
| 651 'apply': [SKIP], | 658 'apply': [SKIP], |
| 652 'math-*': [SKIP], | 659 'math-*': [SKIP], |
| 653 'unicode-test': [SKIP], | 660 'unicode-test': [SKIP], |
| 654 'whitespaces': [SKIP], | 661 'whitespaces': [SKIP], |
| 655 }], # variant == wasm_traps | 662 }], # variant == wasm_traps |
| 656 | 663 |
| 657 ] | 664 ] |
| OLD | NEW |