Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: test/cctest/cctest.status

Issue 2481433002: [Interpreter] Add IsInterpreted() to JSFunction and use to fix test-heap tests. (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/runtime-profiler.cc ('k') | test/cctest/heap/test-heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr ue', { 319 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr ue', {
320 320
321 # Pass but take too long with the simulator. 321 # Pass but take too long with the simulator.
322 'test-api/Threading*': [PASS, SLOW], 322 'test-api/Threading*': [PASS, SLOW],
323 'test-api/ExternalArrays': [PASS, SLOW], 323 'test-api/ExternalArrays': [PASS, SLOW],
324 324
325 }], # 'arch == ppc64 and simulator_run == True' 325 }], # 'arch == ppc64 and simulator_run == True'
326 326
327 ############################################################################## 327 ##############################################################################
328 ['variant == turbofan_opt', { 328 ['variant == turbofan_opt', {
329 # TODO(mythria,4680): Lack of code-ageing in interpreter.
330 'test-heap/Regress169209': [FAIL],
331
332 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache 329 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
333 # in interpreter. 330 # in interpreter.
334 'test-heap/CompilationCacheCachingBehavior': [FAIL], 331 'test-heap/CompilationCacheCachingBehavior': [FAIL],
335 332
336 # TODO(mstarzinger): Triggers Ignition+TurboFan on everything now and makes 333 # TODO(mstarzinger): Triggers Ignition+TurboFan on everything now and makes
337 # the stack traces within the profilers look different. Needs investigation. 334 # the stack traces within the profilers look different. Needs investigation.
338 'test-api/SetFunctionEntryHook': [SKIP], 335 'test-api/SetFunctionEntryHook': [SKIP],
339 'test-cpu-profiler/BoundFunctionCall': [FAIL], 336 'test-cpu-profiler/BoundFunctionCall': [FAIL],
340 'test-cpu-profiler/CollectSampleAPI': [FAIL], 337 'test-cpu-profiler/CollectSampleAPI': [FAIL],
341 'test-cpu-profiler/FunctionApplySample': [FAIL], 338 'test-cpu-profiler/FunctionApplySample': [FAIL],
342 'test-cpu-profiler/FunctionCallSample': [FAIL], 339 'test-cpu-profiler/FunctionCallSample': [FAIL],
343 'test-cpu-profiler/JsNativeJsRuntimeJsSample': [FAIL], 340 'test-cpu-profiler/JsNativeJsRuntimeJsSample': [FAIL],
344 'test-cpu-profiler/JsNativeJsSample': [FAIL], 341 'test-cpu-profiler/JsNativeJsSample': [FAIL],
345 'test-cpu-profiler/JsNativeJsRuntimeJsSampleMultiple': [FAIL], 342 'test-cpu-profiler/JsNativeJsRuntimeJsSampleMultiple': [FAIL],
346 'test-cpu-profiler/JsNative1JsNative2JsSample': [FAIL], 343 'test-cpu-profiler/JsNative1JsNative2JsSample': [FAIL],
347 'test-cpu-profiler/NativeMethodUninitializedIC': [FAIL], 344 'test-cpu-profiler/NativeMethodUninitializedIC': [FAIL],
348 'test-cpu-profiler/NativeAccessorUninitializedIC': [FAIL], 345 'test-cpu-profiler/NativeAccessorUninitializedIC': [FAIL],
349 'test-profile-generator/LineNumber': [FAIL], 346 'test-profile-generator/LineNumber': [FAIL],
350 'test-sampler-api/StackFramesConsistent': [FAIL], 347 'test-sampler-api/StackFramesConsistent': [FAIL],
351 348
352 # BUG(v8:5457) 349 # BUG(v8:5457)
353 'test-api/SetJitCodeEventHandler': [PASS, ['no_snap', SKIP]], 350 'test-api/SetJitCodeEventHandler': [PASS, ['no_snap', SKIP]],
354 }], # variant == turbofan_opt 351 }], # variant == turbofan_opt
355 352
356 ############################################################################## 353 ##############################################################################
357 ['variant == ignition', { 354 ['variant == ignition', {
358 # TODO(rmcilroy,4680): Related to lack of code flushing. Check failed: !functi on->shared()->is_compiled() || function->IsOptimized().
359 'test-heap/TestCodeFlushingPreAged': [FAIL],
360 'test-heap/TestCodeFlushingIncrementalScavenge': [FAIL],
361 'test-heap/TestCodeFlushing': [FAIL],
362 'test-heap/TestCodeFlushingIncremental': [FAIL],
363 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', FAIL]],
364
365 # TODO(mythria,4680): Lack of code-ageing in interpreter.
366 'test-heap/Regress169209': [FAIL],
367
368 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache 355 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
369 # in interpreter. 356 # in interpreter.
370 'test-heap/CompilationCacheCachingBehavior': [FAIL], 357 'test-heap/CompilationCacheCachingBehavior': [FAIL],
371 358
372 # BUG(4680): Missing type feedback makes optimistic optimizations fail.
373 'test-cpu-profiler/DeoptUntrackedFunction': [SKIP],
374
375 # BUG(4751). Flaky with ignition.
376 'test-cpu-profiler/JsNativeJsSample': [PASS, FAIL],
377
378 # TODO(ignition): Fails due to missing type info when optimizing from bytecode
379 # with crankshaft.
380 'test-cpu-profiler/TickLinesOptimized': [SKIP],
381
382 # BUG(5193): Flaky. 359 # BUG(5193): Flaky.
383 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], 360 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]],
384 }], # variant == ignition 361 }], # variant == ignition
385 362
386 ############################################################################## 363 ##############################################################################
387 ['variant == ignition_staging', { 364 ['variant == ignition_staging', {
388 'test-cpu-profiler/DeoptUntrackedFunction': [SKIP], 365 'test-cpu-profiler/DeoptUntrackedFunction': [SKIP],
389 'test-cpu-profiler/TickLinesOptimized': [SKIP], 366 'test-cpu-profiler/TickLinesOptimized': [SKIP],
390 'test-heap/CompilationCacheCachingBehavior': [FAIL], 367 'test-heap/CompilationCacheCachingBehavior': [FAIL],
391 'test-heap/Regress169209': [FAIL],
392 'test-heap/TestCodeFlushing': [FAIL],
393 'test-heap/TestCodeFlushingIncremental': [FAIL],
394 'test-heap/TestCodeFlushingIncrementalScavenge': [FAIL],
395 'test-heap/TestCodeFlushingPreAged': [FAIL],
396 368
397 # BUG(5193): Flaky. 369 # BUG(5193): Flaky.
398 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]], 370 'test-cpu-profiler/FunctionApplySample': [PASS, ['system == windows', SKIP]],
399 }], # variant == ignition_staging 371 }], # variant == ignition_staging
400 372
401 ############################################################################## 373 ##############################################################################
402 ['variant == turbofan or variant == ignition_turbofan', { 374 ['variant == turbofan or variant == ignition_turbofan', {
403 # TODO(rmcilroy,4680): Related to lack of code flushing. Check failed: !functi on->shared()->is_compiled() || function->IsOptimized().
404 'test-heap/TestCodeFlushingPreAged': [FAIL],
405 'test-heap/TestCodeFlushingIncrementalScavenge': [FAIL],
406 'test-heap/TestCodeFlushing': [FAIL],
407 'test-heap/TestCodeFlushingIncremental': [FAIL],
408 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', FAIL]],
409
410 # TODO(mythria,4680): Lack of code-ageing in interpreter.
411 'test-heap/Regress169209': [FAIL],
412
413 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache 375 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
414 # in interpreter. 376 # in interpreter.
415 'test-heap/CompilationCacheCachingBehavior': [FAIL], 377 'test-heap/CompilationCacheCachingBehavior': [FAIL],
416 378
417 # BUG(4680): Missing type feedback makes optimistic optimizations fail. 379 # BUG(4680): Missing type feedback makes optimistic optimizations fail.
418 'test-cpu-profiler/CollectDeoptEvents': [FAIL], 380 'test-cpu-profiler/CollectDeoptEvents': [FAIL],
419 'test-cpu-profiler/DeoptUntrackedFunction': [SKIP], 381 'test-cpu-profiler/DeoptUntrackedFunction': [SKIP],
420 382
421 # BUG(4751). Flaky with Ignition. 383 # BUG(4751). Flaky with Ignition.
422 'test-cpu-profiler/JsNativeJsSample': [SKIP], 384 'test-cpu-profiler/JsNativeJsSample': [SKIP],
(...skipping 15 matching lines...) Expand all
438 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 400 # https://bugs.chromium.org/p/v8/issues/detail?id=1569
439 'test-modules/*': [SKIP], 401 'test-modules/*': [SKIP],
440 }], # variant != ignition and variant != ignition_staging and variant != igniti on_turbofan 402 }], # variant != ignition and variant != ignition_staging and variant != igniti on_turbofan
441 403
442 ############################################################################## 404 ##############################################################################
443 ['variant == asm_wasm', { 405 ['variant == asm_wasm', {
444 '*': [SKIP], 406 '*': [SKIP],
445 }], # variant == asm_wasm 407 }], # variant == asm_wasm
446 408
447 ] 409 ]
OLDNEW
« no previous file with comments | « src/runtime-profiler.cc ('k') | test/cctest/heap/test-heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698