| 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 13 matching lines...) Expand all Loading... |
| 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 | 28 |
| 29 # All tests prefixed with 'Bug' are expected to fail. | 29 # All tests prefixed with 'Bug' are expected to fail. |
| 30 [ | 30 [ |
| 31 [ALWAYS, { | 31 [ALWAYS, { |
| 32 'test-api/Bug*': [FAIL], | 32 'test-api/Bug*': [FAIL], |
| 33 | 33 |
| 34 # TODO(mvstanton): reenable when I figure out why it fails on no-sse2 builds | |
| 35 'test-heap/EnsureAllocationSiteDependentCodesProcessed': [SKIP], | |
| 36 | |
| 37 ############################################################################## | 34 ############################################################################## |
| 38 # BUG(382): Weird test. Can't guarantee that it never times out. | 35 # BUG(382): Weird test. Can't guarantee that it never times out. |
| 39 'test-api/ApplyInterruption': [PASS, TIMEOUT], | 36 'test-api/ApplyInterruption': [PASS, TIMEOUT], |
| 40 | 37 |
| 41 # TODO(mstarzinger): Fail gracefully on multiple V8::Dispose calls. | 38 # TODO(mstarzinger): Fail gracefully on multiple V8::Dispose calls. |
| 42 'test-api/InitializeAndDisposeOnce': [SKIP], | 39 'test-api/InitializeAndDisposeOnce': [SKIP], |
| 43 'test-api/InitializeAndDisposeMultiple': [SKIP], | 40 'test-api/InitializeAndDisposeMultiple': [SKIP], |
| 44 | 41 |
| 45 # These tests always fail. They are here to test test.py. If | 42 # These tests always fail. They are here to test test.py. If |
| 46 # they don't fail then test.py has failed. | 43 # they don't fail then test.py has failed. |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'test-debug/DebugBreakLoop': [SKIP], | 88 'test-debug/DebugBreakLoop': [SKIP], |
| 92 }], # 'arch == a64 and mode == debug and simulator_run == True' | 89 }], # 'arch == a64 and mode == debug and simulator_run == True' |
| 93 | 90 |
| 94 ############################################################################## | 91 ############################################################################## |
| 95 ['system == windows', { | 92 ['system == windows', { |
| 96 | 93 |
| 97 # BUG(2999). | 94 # BUG(2999). |
| 98 'test-cpu-profiler/CollectCpuProfile': [PASS, FAIL], | 95 'test-cpu-profiler/CollectCpuProfile': [PASS, FAIL], |
| 99 | 96 |
| 100 # BUG(3005). | 97 # BUG(3005). |
| 101 'test-alloc/CodeRange': [PASS, FLAKY], | 98 'test-alloc/CodeRange': [PASS, FAIL], |
| 102 }], # 'system == windows' | 99 }], # 'system == windows' |
| 103 | 100 |
| 104 ############################################################################## | 101 ############################################################################## |
| 105 ['arch == arm', { | 102 ['arch == arm', { |
| 106 | 103 |
| 107 # We cannot assume that we can throw OutOfMemory exceptions in all situations. | 104 # We cannot assume that we can throw OutOfMemory exceptions in all situations. |
| 108 # Apparently our ARM box is in such a state. Skip the test as it also runs for | 105 # Apparently our ARM box is in such a state. Skip the test as it also runs for |
| 109 # a long time. | 106 # a long time. |
| 110 'test-api/OutOfMemory': [SKIP], | 107 'test-api/OutOfMemory': [SKIP], |
| 111 'test-api/OutOfMemoryNested': [SKIP], | 108 'test-api/OutOfMemoryNested': [SKIP], |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 # Profiling doesn't work on Native Client. | 167 # Profiling doesn't work on Native Client. |
| 171 'test-cpu-profiler/*': [SKIP], | 168 'test-cpu-profiler/*': [SKIP], |
| 172 | 169 |
| 173 # Fails since 16322 (new test). | 170 # Fails since 16322 (new test). |
| 174 'test-code-stubs-arm/ConvertDToI': [SKIP], | 171 'test-code-stubs-arm/ConvertDToI': [SKIP], |
| 175 | 172 |
| 176 # BUG(2998). | 173 # BUG(2998). |
| 177 'test-macro-assembler-arm/LoadAndStoreWithRepresentation': [SKIP], | 174 'test-macro-assembler-arm/LoadAndStoreWithRepresentation': [SKIP], |
| 178 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 175 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 179 ] | 176 ] |
| OLD | NEW |