| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 }], # 'arch == arm64 and mode == debug and simulator_run == True' | 115 }], # 'arch == arm64 and mode == debug and simulator_run == True' |
| 116 | 116 |
| 117 ############################################################################## | 117 ############################################################################## |
| 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 # This should be 'nosnap == True': issue 3216 to add 'nosnap'. | 125 ['no_snap == True', { |
| 126 [ALWAYS, { | |
| 127 # BUG(3215) | 126 # BUG(3215) |
| 128 'test-lockers/MultithreadedParallelIsolates': [PASS, FAIL], | 127 'test-lockers/MultithreadedParallelIsolates': [PASS, FAIL], |
| 129 }], # 'nosnap == True' | 128 |
| 129 # Windows doesn't support nosnap mode. |
| 130 'test-serialize/*': [PASS, ['system == windows', SKIP]], |
| 131 }], # 'no_snap == True' |
| 130 | 132 |
| 131 ############################################################################## | 133 ############################################################################## |
| 132 ['system == windows', { | 134 ['system == windows', { |
| 133 | 135 |
| 134 # BUG(2999). | 136 # BUG(2999). |
| 135 'test-cpu-profiler/CollectCpuProfile': [PASS, FAIL], | 137 'test-cpu-profiler/CollectCpuProfile': [PASS, FAIL], |
| 136 'test-cpu-profiler/JsNativeJsSample': [PASS, FLAKY], | 138 'test-cpu-profiler/JsNativeJsSample': [PASS, FLAKY], |
| 137 | 139 |
| 138 # BUG(3055). | 140 # BUG(3055). |
| 139 'test-cpu-profiler/JsNative1JsNative2JsSample': [PASS, ['mode == release', FAI
L], ['mode == debug', FLAKY]], | 141 'test-cpu-profiler/JsNative1JsNative2JsSample': [PASS, ['mode == release', FAI
L], ['mode == debug', FLAKY]], |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 'test-api/Float32Array' : [SKIP], | 303 'test-api/Float32Array' : [SKIP], |
| 302 'test-api/Float64Array' : [SKIP], | 304 'test-api/Float64Array' : [SKIP], |
| 303 'test-api/Regress2333' : [SKIP], | 305 'test-api/Regress2333' : [SKIP], |
| 304 'test-alloc/StressHandles' : [SKIP], | 306 'test-alloc/StressHandles' : [SKIP], |
| 305 'test-alloc/StressJS' : [SKIP], | 307 'test-alloc/StressJS' : [SKIP], |
| 306 'test-accessors/HandleScopePop' : [SKIP], | 308 'test-accessors/HandleScopePop' : [SKIP], |
| 307 'test-accessors/Gc' : [SKIP], | 309 'test-accessors/Gc' : [SKIP], |
| 308 | 310 |
| 309 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 311 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 310 ] | 312 ] |
| OLD | NEW |