Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: test/cctest/cctest.status

Issue 6529032: Merge 6168:6800 from bleeding_edge to experimental/gc branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/zone-inl.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2008 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
11 # with the distribution. 11 # with the distribution.
(...skipping 10 matching lines...) Expand all
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
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 test-api/Bug*: FAIL 30 test-api/Bug*: FAIL
31 31
32
33 ############################################################################## 32 ##############################################################################
34 # BUG(281): This test fails on some Linuxes. 33 # BUG(281): This test fails on some Linuxes.
35 test-debug/DebuggerAgent: PASS, (PASS || FAIL) if $system == linux 34 test-debug/DebuggerAgent: PASS, (PASS || FAIL) if $system == linux
36 35
37 # 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.
38 test-api/ApplyInterruption: PASS || TIMEOUT 37 test-api/ApplyInterruption: PASS || TIMEOUT
39 38
40 # BUG(484): This test which we thought was originally corrected in r5236 39 # BUG(484): This test which we thought was originally corrected in r5236
41 # is re-appearing. Disabled until bug in test is fixed. This only fails 40 # is re-appearing. Disabled until bug in test is fixed. This only fails
42 # when snapshot is on, so I am marking it PASS || FAIL 41 # when snapshot is on, so I am marking it PASS || FAIL
43 test-heap-profiler/HeapSnapshotsDiff: PASS || FAIL 42 test-heap-profiler/HeapSnapshotsDiff: PASS || FAIL
44 43
45 # These tests always fail. They are here to test test.py. If 44 # These tests always fail. They are here to test test.py. If
46 # they don't fail then test.py has failed. 45 # they don't fail then test.py has failed.
47 test-serialize/TestThatAlwaysFails: FAIL 46 test-serialize/TestThatAlwaysFails: FAIL
48 test-serialize/DependentTestThatAlwaysFails: FAIL 47 test-serialize/DependentTestThatAlwaysFails: FAIL
49 48
50
51 ############################################################################## 49 ##############################################################################
52 [ $arch == x64 ] 50 [ $arch == x64 ]
53 51
54 # Optimization is currently not working on crankshaft x64 and ARM. 52 # Optimization is currently not working on crankshaft x64 and ARM.
55 test-heap/TestInternalWeakLists: PASS || FAIL 53 test-heap/TestInternalWeakLists: PASS || FAIL
56 test-heap/TestInternalWeakListsTraverseWithGC: PASS || FAIL 54 test-heap/TestInternalWeakListsTraverseWithGC: PASS || FAIL
57 55
58 56
59 ############################################################################## 57 ##############################################################################
58 [ $arch == x64 && $crankshaft ]
59
60 # Tests that fail with crankshaft.
61 test-deoptimization/DeoptimizeBinaryOperationMOD: FAIL
62 test-deoptimization/DeoptimizeLoadICStoreIC: FAIL
63 test-deoptimization/DeoptimizeLoadICStoreICNested: FAIL
64 test-deoptimization/DeoptimizeCompare: PASS || FAIL
65
66 ##############################################################################
60 [ $arch == arm ] 67 [ $arch == arm ]
61 68
62 # Optimization is currently not working on crankshaft x64 and ARM. 69 # Optimization is currently not working on crankshaft x64 and ARM.
63 test-heap/TestInternalWeakLists: PASS || FAIL 70 test-heap/TestInternalWeakLists: PASS || FAIL
64 test-heap/TestInternalWeakListsTraverseWithGC: PASS || FAIL 71 test-heap/TestInternalWeakListsTraverseWithGC: PASS || FAIL
65 72
66 # We cannot assume that we can throw OutOfMemory exceptions in all situations. 73 # We cannot assume that we can throw OutOfMemory exceptions in all situations.
67 # Apparently our ARM box is in such a state. Skip the test as it also runs for 74 # Apparently our ARM box is in such a state. Skip the test as it also runs for
68 # a long time. 75 # a long time.
69 test-api/OutOfMemory: SKIP 76 test-api/OutOfMemory: SKIP
70 test-api/OutOfMemoryNested: SKIP 77 test-api/OutOfMemoryNested: SKIP
71 78
72 # BUG(355): Test crashes on ARM. 79 # BUG(355): Test crashes on ARM.
73 test-log/ProfLazyMode: SKIP 80 test-log/ProfLazyMode: SKIP
74 81
75 # BUG(945): Socket connect fails on ARM 82 # BUG(945): Socket connect fails on ARM
76 test-debug/DebuggerAgentProtocolOverflowHeader: SKIP 83 test-debug/DebuggerAgentProtocolOverflowHeader: SKIP
77 test-sockets/Socket: SKIP 84 test-sockets/Socket: SKIP
78 85
86 # BUG(1075): Some deserialization tests fail om ARM
87 test-serialize/Deserialize: SKIP
88 test-serialize/DeserializeFromSecondSerializationAndRunScript2: SKIP
89 test-serialize/DeserializeAndRunScript2: SKIP
90 test-serialize/DeserializeFromSecondSerialization: SKIP
79 91
80 ############################################################################## 92 ##############################################################################
81 [ $arch == arm && $crankshaft ] 93 [ $arch == arm && $crankshaft ]
82 94
83 # Tests that fail with crankshaft.
84 test-deoptimization/DeoptimizeBinaryOperationMOD: FAIL
85 test-deoptimization/DeoptimizeBinaryOperationDIV: FAIL
86
87 # Tests that time out with crankshaft. 95 # Tests that time out with crankshaft.
88 test-debug/ThreadedDebugging: SKIP 96 test-debug/ThreadedDebugging: SKIP
89 test-debug/DebugBreakLoop: SKIP 97 test-debug/DebugBreakLoop: SKIP
90 98
91 99
92 ############################################################################## 100 ##############################################################################
93 [ $arch == mips ] 101 [ $arch == mips ]
94 test-accessors: SKIP 102 test-accessors: SKIP
95 test-alloc: SKIP 103 test-alloc: SKIP
96 test-api: SKIP 104 test-api: SKIP
97 test-compiler: SKIP 105 test-compiler: SKIP
98 test-cpu-profiler: SKIP 106 test-cpu-profiler: SKIP
99 test-debug: SKIP 107 test-debug: SKIP
100 test-decls: SKIP 108 test-decls: SKIP
101 test-func-name-inference: SKIP 109 test-func-name-inference: SKIP
102 test-heap: SKIP 110 test-heap: SKIP
103 test-heap-profiler: SKIP 111 test-heap-profiler: SKIP
104 test-log: SKIP 112 test-log: SKIP
105 test-log-utils: SKIP 113 test-log-utils: SKIP
106 test-mark-compact: SKIP 114 test-mark-compact: SKIP
107 test-regexp: SKIP 115 test-regexp: SKIP
108 test-serialize: SKIP 116 test-serialize: SKIP
109 test-sockets: SKIP 117 test-sockets: SKIP
110 test-strings: SKIP 118 test-strings: SKIP
111 test-threads: SKIP 119 test-threads: SKIP
112 test-thread-termination: SKIP 120 test-thread-termination: SKIP
OLDNEW
« no previous file with comments | « src/zone-inl.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698