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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 # TODO(mstarzinger): The rewriter is not being called when top-level code is | 114 # TODO(mstarzinger): The rewriter is not being called when top-level code is |
115 # optimized and hence scripts don't "return" the correct value. Fix this. | 115 # optimized and hence scripts don't "return" the correct value. Fix this. |
116 'test-compiler/CompileFunctionInContext*': [PASS, NO_VARIANTS], | 116 'test-compiler/CompileFunctionInContext*': [PASS, NO_VARIANTS], |
117 | 117 |
118 # TODO(mstarzinger): Crankshaft messes with debugger, investigate and fix! | 118 # TODO(mstarzinger): Crankshaft messes with debugger, investigate and fix! |
119 'test-debug/BreakPointThroughJavaScript': [PASS, NO_VARIANTS], # in no-snap m
ode. | 119 'test-debug/BreakPointThroughJavaScript': [PASS, NO_VARIANTS], # in no-snap m
ode. |
120 'test-debug/ScriptBreakPointByIdThroughJavaScript': [PASS, NO_VARIANTS], | 120 'test-debug/ScriptBreakPointByIdThroughJavaScript': [PASS, NO_VARIANTS], |
121 'test-debug/ScriptBreakPointByNameThroughJavaScript': [PASS, NO_VARIANTS], | 121 'test-debug/ScriptBreakPointByNameThroughJavaScript': [PASS, NO_VARIANTS], |
122 | 122 |
123 # Issue 4493: Open issues before we can ship general purpose inlining. | |
124 'test-decls/CrossScriptGlobal': [PASS, NO_VARIANTS], | |
125 'test-decls/CrossScriptReferencesHarmony': [PASS, NO_VARIANTS], | |
126 'test-decls/CrossScriptLoadICs': [PASS, NO_VARIANTS], | |
127 'test-decls/CrossScriptStoreICs': [PASS, NO_VARIANTS], | |
128 'test-decls/Regress3941': [PASS, NO_VARIANTS], | |
129 | |
130 ############################################################################ | 123 ############################################################################ |
131 # Slow tests. | 124 # Slow tests. |
132 'test-api/Threading1': [PASS, ['mode == debug', SLOW]], | 125 'test-api/Threading1': [PASS, ['mode == debug', SLOW]], |
133 'test-api/Threading2': [PASS, ['mode == debug', SLOW]], | 126 'test-api/Threading2': [PASS, ['mode == debug', SLOW]], |
134 'test-api/Threading3': [PASS, ['mode == debug', SLOW]], | 127 'test-api/Threading3': [PASS, ['mode == debug', SLOW]], |
135 'test-api/Threading4': [PASS, ['mode == debug', SLOW]], | 128 'test-api/Threading4': [PASS, ['mode == debug', SLOW]], |
136 'test-debug/CallFunctionInDebugger': [PASS, ['mode == debug', SLOW]], | 129 'test-debug/CallFunctionInDebugger': [PASS, ['mode == debug', SLOW]], |
137 'test-strings/StringOOM*': [PASS, ['mode == debug', SKIP]], | 130 'test-strings/StringOOM*': [PASS, ['mode == debug', SKIP]], |
138 | 131 |
139 # TODO(machenbach, mvstanton): Flaky in debug on all platforms. | 132 # TODO(machenbach, mvstanton): Flaky in debug on all platforms. |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 ############################################################################## | 424 ############################################################################## |
432 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 425 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
433 | 426 |
434 # Pass but take too long with the simulator. | 427 # Pass but take too long with the simulator. |
435 'test-api/Threading1': [PASS, SLOW], | 428 'test-api/Threading1': [PASS, SLOW], |
436 'test-api/Threading2': [PASS, SLOW], | 429 'test-api/Threading2': [PASS, SLOW], |
437 'test-api/ExternalArrays': [PASS, SLOW], | 430 'test-api/ExternalArrays': [PASS, SLOW], |
438 | 431 |
439 }], # 'arch == ppc64 and simulator_run == True' | 432 }], # 'arch == ppc64 and simulator_run == True' |
440 ] | 433 ] |
OLD | NEW |