| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 ############################################################################## | 187 ############################################################################## |
| 188 ['asan == True', { | 188 ['asan == True', { |
| 189 # Skip tests not suitable for ASAN. | 189 # Skip tests not suitable for ASAN. |
| 190 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP], | 190 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP], |
| 191 }], # 'asan == True' | 191 }], # 'asan == True' |
| 192 | 192 |
| 193 ############################################################################## | 193 ############################################################################## |
| 194 ['msan == True', { | 194 ['msan == True', { |
| 195 # ICU upstream issues. | 195 # ICU upstream issues. |
| 196 'test-strings/CountBreakIterator': [SKIP], | 196 'test-strings/CountBreakIterator': [SKIP], |
| 197 |
| 198 # Slow tests. |
| 199 'test-api/Threading1': [PASS, SLOW], |
| 200 'test-api/Threading2': [PASS, SLOW], |
| 201 'test-api/Threading3': [PASS, SLOW], |
| 202 'test-api/Threading4': [PASS, SLOW], |
| 197 }], # 'msan == True' | 203 }], # 'msan == True' |
| 198 | 204 |
| 199 ############################################################################## | 205 ############################################################################## |
| 200 ['no_snap == True', { | 206 ['no_snap == True', { |
| 201 }], # 'no_snap == True' | 207 }], # 'no_snap == True' |
| 202 | 208 |
| 203 ############################################################################## | 209 ############################################################################## |
| 204 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate | 210 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate |
| 205 # section to not overwrite the expectations for TestThatAlwaysFails. | 211 # section to not overwrite the expectations for TestThatAlwaysFails. |
| 206 ['no_snap == True and system == windows', { | 212 ['no_snap == True and system == windows', { |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 ############################################################################## | 434 ############################################################################## |
| 429 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 435 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 430 | 436 |
| 431 # Pass but take too long with the simulator. | 437 # Pass but take too long with the simulator. |
| 432 'test-api/Threading1': [PASS, SLOW], | 438 'test-api/Threading1': [PASS, SLOW], |
| 433 'test-api/Threading2': [PASS, SLOW], | 439 'test-api/Threading2': [PASS, SLOW], |
| 434 'test-api/ExternalArrays': [PASS, SLOW], | 440 'test-api/ExternalArrays': [PASS, SLOW], |
| 435 | 441 |
| 436 }], # 'arch == ppc64 and simulator_run == True' | 442 }], # 'arch == ppc64 and simulator_run == True' |
| 437 ] | 443 ] |
| OLD | NEW |