| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 ['asan == True', { | 118 ['asan == True', { |
| 119 # Skip tests not suitable for ASAN. | 119 # Skip tests not suitable for ASAN. |
| 120 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP], | 120 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP], |
| 121 'test-lockers/MultithreadedParallelIsolates': [SKIP], | 121 'test-lockers/MultithreadedParallelIsolates': [SKIP], |
| 122 }], # 'asan == True' | 122 }], # 'asan == True' |
| 123 | 123 |
| 124 ############################################################################## | 124 ############################################################################## |
| 125 ['no_snap == True', { | 125 ['no_snap == True', { |
| 126 # BUG(3215) | 126 # BUG(3215) |
| 127 'test-lockers/MultithreadedParallelIsolates': [PASS, FAIL], | 127 'test-lockers/MultithreadedParallelIsolates': [PASS, FAIL], |
| 128 | |
| 129 # Windows doesn't support nosnap mode. | |
| 130 'test-serialize/*': [PASS, ['system == windows', SKIP]], | |
| 131 }], # 'no_snap == True' | 128 }], # 'no_snap == True' |
| 132 | 129 |
| 133 ############################################################################## | 130 ############################################################################## |
| 131 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate |
| 132 # section to not overwrite the expectations for TestThatAlwaysFails. |
| 133 ['no_snap == True and system == windows', { |
| 134 # Windows doesn't support nosnap mode. |
| 135 'test-serialize/*': [SKIP], |
| 136 }], # 'no_snap == True and system == windows' |
| 137 |
| 138 ############################################################################## |
| 134 ['system == windows', { | 139 ['system == windows', { |
| 135 | 140 |
| 136 # BUG(2999). | 141 # BUG(2999). |
| 137 'test-cpu-profiler/CollectCpuProfile': [PASS, FAIL], | 142 'test-cpu-profiler/CollectCpuProfile': [PASS, FAIL], |
| 138 'test-cpu-profiler/JsNativeJsSample': [PASS, FLAKY], | 143 'test-cpu-profiler/JsNativeJsSample': [PASS, FLAKY], |
| 139 | 144 |
| 140 # BUG(3055). | 145 # BUG(3055). |
| 141 'test-cpu-profiler/JsNative1JsNative2JsSample': [PASS, ['mode == release', FAI
L], ['mode == debug', FLAKY]], | 146 'test-cpu-profiler/JsNative1JsNative2JsSample': [PASS, ['mode == release', FAI
L], ['mode == debug', FLAKY]], |
| 142 | 147 |
| 143 # BUG(3005). | 148 # BUG(3005). |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 'test-api/Float32Array' : [SKIP], | 308 'test-api/Float32Array' : [SKIP], |
| 304 'test-api/Float64Array' : [SKIP], | 309 'test-api/Float64Array' : [SKIP], |
| 305 'test-api/Regress2333' : [SKIP], | 310 'test-api/Regress2333' : [SKIP], |
| 306 'test-alloc/StressHandles' : [SKIP], | 311 'test-alloc/StressHandles' : [SKIP], |
| 307 'test-alloc/StressJS' : [SKIP], | 312 'test-alloc/StressJS' : [SKIP], |
| 308 'test-accessors/HandleScopePop' : [SKIP], | 313 'test-accessors/HandleScopePop' : [SKIP], |
| 309 'test-accessors/Gc' : [SKIP], | 314 'test-accessors/Gc' : [SKIP], |
| 310 | 315 |
| 311 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 316 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 312 ] | 317 ] |
| OLD | NEW |