| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 212 |
| 213 ############################################################################## | 213 ############################################################################## |
| 214 ['no_snap == True', { | 214 ['no_snap == True', { |
| 215 # Slow tests. | 215 # Slow tests. |
| 216 'test-api/ExternalWrap': [PASS, SLOW], | 216 'test-api/ExternalWrap': [PASS, SLOW], |
| 217 'test-api/FastReturnValues*': [PASS, SLOW], | 217 'test-api/FastReturnValues*': [PASS, SLOW], |
| 218 'test-decls/CrossScriptReferences_Simple2': [PASS, SLOW], | 218 'test-decls/CrossScriptReferences_Simple2': [PASS, SLOW], |
| 219 }], # 'no_snap == True' | 219 }], # 'no_snap == True' |
| 220 | 220 |
| 221 ############################################################################## | 221 ############################################################################## |
| 222 ['no_snap == True and mode == debug', { |
| 223 # TODO(rmcilroy,4928): Issue with --mstackalign. |
| 224 'test-interpreter/InterpreterCreateArguments': [SKIP], |
| 225 }], # 'no_snap == True and mode == debug' |
| 226 |
| 227 ############################################################################## |
| 222 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate | 228 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate |
| 223 # section to not overwrite the expectations for TestThatAlwaysFails. | 229 # section to not overwrite the expectations for TestThatAlwaysFails. |
| 224 ['no_snap == True and system == windows', { | 230 ['no_snap == True and system == windows', { |
| 225 # Windows doesn't support nosnap mode. | 231 # Windows doesn't support nosnap mode. |
| 226 'test-serialize/*': [SKIP], | 232 'test-serialize/*': [SKIP], |
| 227 }], # 'no_snap == True and system == windows' | 233 }], # 'no_snap == True and system == windows' |
| 228 | 234 |
| 229 ############################################################################## | 235 ############################################################################## |
| 230 ['system == windows', { | 236 ['system == windows', { |
| 231 | 237 |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 'test-run-inlining/InlineSurplusArguments': [FAIL], | 557 'test-run-inlining/InlineSurplusArguments': [FAIL], |
| 552 'test-run-inlining/InlineBuiltin': [FAIL], | 558 'test-run-inlining/InlineBuiltin': [FAIL], |
| 553 'test-run-inlining/InlineTwiceDependent': [FAIL], | 559 'test-run-inlining/InlineTwiceDependent': [FAIL], |
| 554 'test-run-inlining/SimpleInliningContextDeopt': [FAIL], | 560 'test-run-inlining/SimpleInliningContextDeopt': [FAIL], |
| 555 | 561 |
| 556 # BUG(4751). Flaky with ignition and tsan. | 562 # BUG(4751). Flaky with ignition and tsan. |
| 557 'test-cpu-profiler/JsNativeJsSample': [PASS, ['tsan', SKIP]], | 563 'test-cpu-profiler/JsNativeJsSample': [PASS, ['tsan', SKIP]], |
| 558 }], # ignition == True | 564 }], # ignition == True |
| 559 | 565 |
| 560 ] | 566 ] |
| OLD | NEW |