OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 15 matching lines...) Expand all Loading... |
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 prefixed with 'Bug' are expected to fail. | 30 # All tests prefixed with 'Bug' are expected to fail. |
31 'test-api/Bug*': [FAIL], | 31 'test-api/Bug*': [FAIL], |
32 'test-serialize/Bug*': [FAIL], | 32 'test-serialize/Bug*': [FAIL], |
33 | 33 |
34 ############################################################################## | 34 ############################################################################## |
35 | 35 |
36 # TODO(danno): These tests fail because the incoming descriptor for JavaScript | |
37 # calls has nothing to do with the interface descriptors of some code stubs, | |
38 # and they cannot be used interchangably. | |
39 'test-run-stubs/RunOptimizedMathFloorStub': [SKIP], | |
40 'test-run-stubs/RunStringAddTFStub': [SKIP], | |
41 | |
42 # BUG(382): Weird test. Can't guarantee that it never times out. | 36 # BUG(382): Weird test. Can't guarantee that it never times out. |
43 'test-api/ApplyInterruption': [PASS, TIMEOUT], | 37 'test-api/ApplyInterruption': [PASS, TIMEOUT], |
44 | 38 |
45 # These tests always fail. They are here to test test.py. If | 39 # These tests always fail. They are here to test test.py. If |
46 # they don't fail then test.py has failed. | 40 # they don't fail then test.py has failed. |
47 'test-serialize/TestThatAlwaysFails': [FAIL], | 41 'test-serialize/TestThatAlwaysFails': [FAIL], |
48 'test-serialize/DependentTestThatAlwaysFails': [FAIL], | 42 'test-serialize/DependentTestThatAlwaysFails': [FAIL], |
49 'test-api/SealHandleScope': [FAIL], | 43 'test-api/SealHandleScope': [FAIL], |
50 | 44 |
51 # This test always fails. It tests that LiveEdit causes abort when turned off
. | 45 # This test always fails. It tests that LiveEdit causes abort when turned off
. |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 ############################################################################## | 463 ############################################################################## |
470 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 464 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
471 | 465 |
472 # Pass but take too long with the simulator. | 466 # Pass but take too long with the simulator. |
473 'test-api/Threading1': [PASS, SLOW], | 467 'test-api/Threading1': [PASS, SLOW], |
474 'test-api/Threading2': [PASS, SLOW], | 468 'test-api/Threading2': [PASS, SLOW], |
475 'test-api/ExternalArrays': [PASS, SLOW], | 469 'test-api/ExternalArrays': [PASS, SLOW], |
476 | 470 |
477 }], # 'arch == ppc64 and simulator_run == True' | 471 }], # 'arch == ppc64 and simulator_run == True' |
478 ] | 472 ] |
OLD | NEW |