| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 }], # 'arch == a64 and mode == debug and simulator_run == True' | 108 }], # 'arch == a64 and mode == debug and simulator_run == True' |
| 109 | 109 |
| 110 ############################################################################## | 110 ############################################################################## |
| 111 ['asan == True', { | 111 ['asan == True', { |
| 112 # Skip tests not suitable for ASAN. | 112 # Skip tests not suitable for ASAN. |
| 113 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP], | 113 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP], |
| 114 'test-lockers/MultithreadedParallelIsolates': [SKIP], | 114 'test-lockers/MultithreadedParallelIsolates': [SKIP], |
| 115 }], # 'asan == True' | 115 }], # 'asan == True' |
| 116 | 116 |
| 117 ############################################################################## | 117 ############################################################################## |
| 118 # This should be 'nosnap == True': issue 3216 to add 'nosnap'. |
| 119 [ALWAYS, { |
| 120 # BUG(3215) |
| 121 'test-lockers/MultithreadedParallelIsolates': [PASS, FAIL], |
| 122 }], # 'nosnap == True' |
| 123 |
| 124 ############################################################################## |
| 118 ['system == windows', { | 125 ['system == windows', { |
| 119 | 126 |
| 120 # BUG(2999). | 127 # BUG(2999). |
| 121 'test-cpu-profiler/CollectCpuProfile': [PASS, FAIL], | 128 'test-cpu-profiler/CollectCpuProfile': [PASS, FAIL], |
| 122 'test-cpu-profiler/JsNativeJsSample': [PASS, FLAKY], | 129 'test-cpu-profiler/JsNativeJsSample': [PASS, FLAKY], |
| 123 | 130 |
| 124 # BUG(3055). | 131 # BUG(3055). |
| 125 'test-cpu-profiler/JsNative1JsNative2JsSample': [PASS, ['mode == release', FAI
L], ['mode == debug', FLAKY]], | 132 'test-cpu-profiler/JsNative1JsNative2JsSample': [PASS, ['mode == release', FAI
L], ['mode == debug', FLAKY]], |
| 126 | 133 |
| 127 # BUG(3005). | 134 # BUG(3005). |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 # Fails since 16322 (new test). | 226 # Fails since 16322 (new test). |
| 220 'test-code-stubs-arm/ConvertDToI': [SKIP], | 227 'test-code-stubs-arm/ConvertDToI': [SKIP], |
| 221 | 228 |
| 222 # BUG(2998). | 229 # BUG(2998). |
| 223 'test-macro-assembler-arm/LoadAndStoreWithRepresentation': [SKIP], | 230 'test-macro-assembler-arm/LoadAndStoreWithRepresentation': [SKIP], |
| 224 | 231 |
| 225 # BUG(3150). | 232 # BUG(3150). |
| 226 'test-api/PreCompileInvalidPreparseDataError': [SKIP], | 233 'test-api/PreCompileInvalidPreparseDataError': [SKIP], |
| 227 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 234 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 228 ] | 235 ] |
| OLD | NEW |