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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 316 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
317 | 317 |
318 # Pass but take too long with the simulator. | 318 # Pass but take too long with the simulator. |
319 'test-api/Threading*': [PASS, SLOW], | 319 'test-api/Threading*': [PASS, SLOW], |
320 'test-api/ExternalArrays': [PASS, SLOW], | 320 'test-api/ExternalArrays': [PASS, SLOW], |
321 | 321 |
322 }], # 'arch == ppc64 and simulator_run == True' | 322 }], # 'arch == ppc64 and simulator_run == True' |
323 | 323 |
324 ############################################################################## | 324 ############################################################################## |
325 ['variant == turbofan_opt', { | 325 ['variant == turbofan_opt', { |
326 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache | |
327 # in interpreter. | |
328 'test-heap/CompilationCacheCachingBehavior': [FAIL], | |
329 | |
330 # BUG(v8:5457) | 326 # BUG(v8:5457) |
331 'test-api/SetJitCodeEventHandler': [PASS, ['no_snap', SKIP]], | 327 'test-api/SetJitCodeEventHandler': [PASS, ['no_snap', SKIP]], |
332 }], # variant == turbofan_opt | 328 }], # variant == turbofan_opt |
333 | 329 |
334 ############################################################################## | 330 ############################################################################## |
335 ['variant == ignition', { | 331 ['variant == ignition', { |
336 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache | |
337 # in interpreter. | |
338 'test-heap/CompilationCacheCachingBehavior': [FAIL], | |
339 | |
340 # BUG(5193): Flaky. | 332 # BUG(5193): Flaky. |
341 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], | 333 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], |
342 }], # variant == ignition | 334 }], # variant == ignition |
343 | 335 |
344 ############################################################################## | 336 ############################################################################## |
345 ['variant == ignition_staging', { | 337 ['variant == ignition_staging', { |
346 'test-heap/CompilationCacheCachingBehavior': [FAIL], | |
347 | |
348 # BUG(5193): Flaky. | 338 # BUG(5193): Flaky. |
349 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], | 339 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], |
350 }], # variant == ignition_staging | 340 }], # variant == ignition_staging |
351 | 341 |
352 ############################################################################## | 342 ############################################################################## |
353 ['variant == turbofan or variant == ignition_turbofan', { | 343 ['variant == turbofan or variant == ignition_turbofan', { |
354 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache | |
355 # in interpreter. | |
356 'test-heap/CompilationCacheCachingBehavior': [FAIL], | |
357 | |
358 # BUG(4751). Deopts with kNotASmi instead of expected deopt reason. | 344 # BUG(4751). Deopts with kNotASmi instead of expected deopt reason. |
359 'test-cpu-profiler/CollectDeoptEvents': [SKIP], | 345 'test-cpu-profiler/CollectDeoptEvents': [SKIP], |
360 | 346 |
361 # BUG(4751). Flaky with Ignition. | 347 # BUG(4751). Flaky with Ignition. |
362 'test-cpu-profiler/JsNativeJsSample': [SKIP], | 348 'test-cpu-profiler/JsNativeJsSample': [SKIP], |
363 | 349 |
364 # TODO(vogelheim,5548): Turbofan does support cached accessors. | 350 # TODO(vogelheim,5548): Turbofan does support cached accessors. |
365 'test-api-accessors/CachedAccessorCrankshaft': [FAIL], | 351 'test-api-accessors/CachedAccessorCrankshaft': [FAIL], |
366 | 352 |
367 # BUG(5193): Flaky. | 353 # BUG(5193): Flaky. |
(...skipping 24 matching lines...) Expand all Loading... |
392 'test-field-type-tracking/*': [SKIP], | 378 'test-field-type-tracking/*': [SKIP], |
393 'test-parsing/*': [SKIP], | 379 'test-parsing/*': [SKIP], |
394 'test-page-promotion/*': [SKIP], | 380 'test-page-promotion/*': [SKIP], |
395 'test-decls/*': [SKIP], | 381 'test-decls/*': [SKIP], |
396 'test-log/*': [SKIP], | 382 'test-log/*': [SKIP], |
397 'test-gap-resolver/*': [SKIP], | 383 'test-gap-resolver/*': [SKIP], |
398 'test-dtoa/*': [SKIP], | 384 'test-dtoa/*': [SKIP], |
399 }], # variant == wasm_traps | 385 }], # variant == wasm_traps |
400 | 386 |
401 ] | 387 ] |
OLD | NEW |