| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 ############################################################################## | 128 ############################################################################## |
| 129 ['asan == True', { | 129 ['asan == True', { |
| 130 # Skip tests not suitable for ASAN. | 130 # Skip tests not suitable for ASAN. |
| 131 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP], | 131 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP], |
| 132 'test-lockers/MultithreadedParallelIsolates': [SKIP], | 132 'test-lockers/MultithreadedParallelIsolates': [SKIP], |
| 133 }], # 'asan == True' | 133 }], # 'asan == True' |
| 134 | 134 |
| 135 ############################################################################## | 135 ############################################################################## |
| 136 ['no_snap == True', { | 136 ['no_snap == True', { |
| 137 # BUG(3215) | 137 # BUG(3215) |
| 138 'test-lockers/MultithreadedParallelIsolates': [PASS, FAIL], | 138 'test-lockers/MultithreadedParallelIsolates': [PASS, FAIL, TIMEOUT], |
| 139 }], # 'no_snap == True' | 139 }], # 'no_snap == True' |
| 140 | 140 |
| 141 ############################################################################## | 141 ############################################################################## |
| 142 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate | 142 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate |
| 143 # section to not overwrite the expectations for TestThatAlwaysFails. | 143 # section to not overwrite the expectations for TestThatAlwaysFails. |
| 144 ['no_snap == True and system == windows', { | 144 ['no_snap == True and system == windows', { |
| 145 # Windows doesn't support nosnap mode. | 145 # Windows doesn't support nosnap mode. |
| 146 'test-serialize/*': [SKIP], | 146 'test-serialize/*': [SKIP], |
| 147 }], # 'no_snap == True and system == windows' | 147 }], # 'no_snap == True and system == windows' |
| 148 | 148 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 'test-api/Float32Array' : [SKIP], | 336 'test-api/Float32Array' : [SKIP], |
| 337 'test-api/Float64Array' : [SKIP], | 337 'test-api/Float64Array' : [SKIP], |
| 338 'test-api/Regress2333' : [SKIP], | 338 'test-api/Regress2333' : [SKIP], |
| 339 'test-alloc/StressHandles' : [SKIP], | 339 'test-alloc/StressHandles' : [SKIP], |
| 340 'test-alloc/StressJS' : [SKIP], | 340 'test-alloc/StressJS' : [SKIP], |
| 341 'test-accessors/HandleScopePop' : [SKIP], | 341 'test-accessors/HandleScopePop' : [SKIP], |
| 342 'test-accessors/Gc' : [SKIP], | 342 'test-accessors/Gc' : [SKIP], |
| 343 | 343 |
| 344 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 344 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 345 ] | 345 ] |
| OLD | NEW |