| 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 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 prefix cctest | 28 prefix cctest |
| 29 | 29 |
| 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 | 32 |
| 33 ############################################################################## | 33 ############################################################################## |
| 34 # BUG(382): Weird test. Can't guarantee that it never times out. | 34 # BUG(382): Weird test. Can't guarantee that it never times out. |
| 35 test-api/ApplyInterruption: PASS || TIMEOUT | 35 test-api/ApplyInterruption: PASS || TIMEOUT |
| 36 | 36 |
| 37 # BUG(484): This test which we thought was originally corrected in r5236 | |
| 38 # is re-appearing. Disabled until bug in test is fixed. This only fails | |
| 39 # when snapshot is on, so I am marking it PASS || FAIL | |
| 40 test-heap-profiler/HeapSnapshotsDiff: PASS || FAIL | |
| 41 | |
| 42 # These tests always fail. They are here to test test.py. If | 37 # These tests always fail. They are here to test test.py. If |
| 43 # they don't fail then test.py has failed. | 38 # they don't fail then test.py has failed. |
| 44 test-serialize/TestThatAlwaysFails: FAIL | 39 test-serialize/TestThatAlwaysFails: FAIL |
| 45 test-serialize/DependentTestThatAlwaysFails: FAIL | 40 test-serialize/DependentTestThatAlwaysFails: FAIL |
| 46 | 41 |
| 47 # This test always fails. It tests that LiveEdit causes abort when turned off. | 42 # This test always fails. It tests that LiveEdit causes abort when turned off. |
| 48 test-debug/LiveEditDisabled: FAIL | 43 test-debug/LiveEditDisabled: FAIL |
| 49 | 44 |
| 50 # TODO(gc): Temporarily disabled in the GC branch. | 45 # TODO(gc): Temporarily disabled in the GC branch. |
| 51 test-log/EquivalenceOfLoggingAndTraversal: PASS || FAIL | 46 test-log/EquivalenceOfLoggingAndTraversal: PASS || FAIL |
| 52 | 47 |
| 53 # BUG(1261): Flakey test. | |
| 54 test-profile-generator/RecordStackTraceAtStartProfiling: PASS || FAIL | |
| 55 | |
| 56 # We do not yet shrink weak maps after they have been emptied by the GC | 48 # We do not yet shrink weak maps after they have been emptied by the GC |
| 57 test-weakmaps/Shrinking: FAIL | 49 test-weakmaps/Shrinking: FAIL |
| 58 | 50 |
| 59 # Deferred stack trace formatting is temporarily disabled. | 51 # Deferred stack trace formatting is temporarily disabled. |
| 60 test-heap/ReleaseStackTraceData: PASS || FAIL | 52 test-heap/ReleaseStackTraceData: PASS || FAIL |
| 61 | 53 |
| 62 ############################################################################## | 54 ############################################################################## |
| 63 [ $arch == arm ] | 55 [ $arch == arm ] |
| 64 | 56 |
| 65 # We cannot assume that we can throw OutOfMemory exceptions in all situations. | 57 # We cannot assume that we can throw OutOfMemory exceptions in all situations. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 test-log/LogCallbacks: SKIP | 100 test-log/LogCallbacks: SKIP |
| 109 test-log/ProfLazyMode: SKIP | 101 test-log/ProfLazyMode: SKIP |
| 110 | 102 |
| 111 # Native Client doesn't support sockets. | 103 # Native Client doesn't support sockets. |
| 112 test-debug/DebuggerAgent: SKIP | 104 test-debug/DebuggerAgent: SKIP |
| 113 test-debug/DebuggerAgentProtocolOverflowHeader: SKIP | 105 test-debug/DebuggerAgentProtocolOverflowHeader: SKIP |
| 114 test-sockets/Socket: SKIP | 106 test-sockets/Socket: SKIP |
| 115 | 107 |
| 116 # Profiling doesn't work on Native Client. | 108 # Profiling doesn't work on Native Client. |
| 117 test-cpu-profiler/*: SKIP | 109 test-cpu-profiler/*: SKIP |
| OLD | NEW |