OLD | NEW |
---|---|
1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2008 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 prefix cctest | 28 prefix cctest |
29 | 29 |
30 # BUG(281): This test fails on some Linuxes. | 30 # BUG(281): This test fails on some Linuxes. |
31 test-debug/DebuggerAgent: PASS, (PASS || FAIL) if $system == linux | 31 test-debug/DebuggerAgent: PASS, (PASS || FAIL) if $system == linux |
32 | 32 |
33 # BUG(382): Weird test. Can't guarantee that it never times out. | 33 # BUG(382): Weird test. Can't guarantee that it never times out. |
34 test-api/ApplyInterruption: PASS || TIMEOUT | 34 test-api/ApplyInterruption: PASS || TIMEOUT |
35 | 35 |
36 # This is about to go away anyway. | |
Kasper Lund
2009/10/22 13:33:28
Maybe elaborate (a bit) on why they are going away
| |
37 test-serialize/Deserialize: PASS || FAIL | |
38 test-serialize/DeserializeAndRunScript: PASS || FAIL | |
39 test-serialize/DeserializeNatives: PASS || FAIL | |
40 test-serialize/DeserializeExtensions: PASS || FAIL | |
41 | |
42 # These tests always fail. They are here to test test.py. If | |
43 # they don't fail then test.py has failed. | |
44 test-serialize/TestThatAlwaysFails: FAIL | |
45 test-serialize/DependentTestThatAlwaysFails: FAIL | |
46 | |
36 | 47 |
37 [ $arch == arm ] | 48 [ $arch == arm ] |
38 | 49 |
39 # BUG(113): Test seems flaky on ARM. | 50 # BUG(113): Test seems flaky on ARM. |
40 test-spaces/LargeObjectSpace: PASS || FAIL | 51 test-spaces/LargeObjectSpace: PASS || FAIL |
41 | 52 |
42 # BUG(240): Test seems flaky on ARM. | 53 # BUG(240): Test seems flaky on ARM. |
43 test-api/RegExpInterruption: SKIP | 54 test-api/RegExpInterruption: SKIP |
44 | 55 |
45 # We cannot assume that we can throw OutOfMemory exceptions in all situations. | 56 # We cannot assume that we can throw OutOfMemory exceptions in all situations. |
46 # Apparently our ARM box is in such a state. Skip the test as it also runs for | 57 # Apparently our ARM box is in such a state. Skip the test as it also runs for |
47 # a long time. | 58 # a long time. |
48 test-api/OutOfMemory: SKIP | 59 test-api/OutOfMemory: SKIP |
49 test-api/OutOfMemoryNested: SKIP | 60 test-api/OutOfMemoryNested: SKIP |
50 | 61 |
51 # BUG(355): Test crashes on ARM. | 62 # BUG(355): Test crashes on ARM. |
52 test-log/ProfLazyMode: SKIP | 63 test-log/ProfLazyMode: SKIP |
53 | 64 |
54 [ $simulator == arm ] | 65 [ $simulator == arm ] |
55 | 66 |
56 # BUG(271): During exception propagation, we compare pointers into the | 67 # BUG(271): During exception propagation, we compare pointers into the |
57 # stack. These tests fail on the ARM simulator because the C++ and | 68 # stack. These tests fail on the ARM simulator because the C++ and |
58 # the JavaScript stacks are separate. | 69 # the JavaScript stacks are separate. |
59 test-api/ExceptionOrder: FAIL | 70 test-api/ExceptionOrder: FAIL |
60 test-api/TryCatchInTryFinally: FAIL | 71 test-api/TryCatchInTryFinally: FAIL |
OLD | NEW |