| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 # TODO(gc): Temporarily disabled in the GC branch. | 50 # TODO(gc): Temporarily disabled in the GC branch. |
| 51 'test-log/EquivalenceOfLoggingAndTraversal': [PASS, FAIL], | 51 'test-log/EquivalenceOfLoggingAndTraversal': [PASS, FAIL], |
| 52 | 52 |
| 53 # We do not yet shrink weak maps after they have been emptied by the GC | 53 # We do not yet shrink weak maps after they have been emptied by the GC |
| 54 'test-weakmaps/Shrinking': [FAIL], | 54 'test-weakmaps/Shrinking': [FAIL], |
| 55 'test-weaksets/WeakSet_Shrinking': [FAIL], | 55 'test-weaksets/WeakSet_Shrinking': [FAIL], |
| 56 | 56 |
| 57 # Boot up memory use is bloated in debug mode. | 57 # Boot up memory use is bloated in debug mode. |
| 58 'test-mark-compact/BootUpMemoryUse': [PASS, PASS, ['mode == debug', FAIL]], | 58 'test-mark-compact/BootUpMemoryUse': [PASS, PASS, ['mode == debug', FAIL]], |
| 59 | 59 |
| 60 # Some CPU profiler tests are flaky. | 60 # This tests only that the preparser and parser agree, so there is no point in |
| 61 'test-cpu-profiler/*': [PASS, FLAKY], | 61 # running several variants. Note that this still takes ages, because there |
| 62 # are actually 13 * 38 * 5 * 128 = 316160 individual tests hidden here. |
| 63 'test-parsing/ParserSync': [PASS, NO_VARIANTS], |
| 62 }], # ALWAYS | 64 }], # ALWAYS |
| 63 | 65 |
| 64 ############################################################################## | 66 ############################################################################## |
| 65 ['arch == a64', { | 67 ['arch == a64', { |
| 66 | 68 |
| 67 'test-api/Bug618': [PASS], | 69 'test-api/Bug618': [PASS], |
| 68 }], # 'arch == a64' | 70 }], # 'arch == a64' |
| 69 | 71 |
| 70 ['arch == a64 and simulator_run == True', { | 72 ['arch == a64 and simulator_run == True', { |
| 71 | 73 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 'test-debug/DebuggerAgentProtocolOverflowHeader': [SKIP], | 154 'test-debug/DebuggerAgentProtocolOverflowHeader': [SKIP], |
| 153 'test-socket/Socket': [SKIP], | 155 'test-socket/Socket': [SKIP], |
| 154 | 156 |
| 155 # Profiling doesn't work on Native Client. | 157 # Profiling doesn't work on Native Client. |
| 156 'test-cpu-profiler/*': [SKIP], | 158 'test-cpu-profiler/*': [SKIP], |
| 157 | 159 |
| 158 # Fails since 16322 (new test). | 160 # Fails since 16322 (new test). |
| 159 'test-code-stubs-arm/ConvertDToI': [SKIP], | 161 'test-code-stubs-arm/ConvertDToI': [SKIP], |
| 160 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 162 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 161 ] | 163 ] |
| OLD | NEW |