working.filt revision 12947:c2abf3dcb3a7
110399Sstephan.diestelhorst@arm.comnot any([
211603Sandreas.hansson@arm.com
310399Sstephan.diestelhorst@arm.com# The sc_elab_and_sim mechanism is purposefully not supported.
410399Sstephan.diestelhorst@arm.comname == "sc_elab_and_sim",
510399Sstephan.diestelhorst@arm.com
610399Sstephan.diestelhorst@arm.com# The wif trace format is deprecated, and probably would take a non-trivial
710399Sstephan.diestelhorst@arm.com# amount of work to support.
810399Sstephan.diestelhorst@arm.compath.startswith("systemc/tracing/wif_trace"),
910399Sstephan.diestelhorst@arm.compath.startswith("systemc/misc/stars/wif_trace"),
1010399Sstephan.diestelhorst@arm.com
1110399Sstephan.diestelhorst@arm.com# Phase callbacks are an experimental feature. Also calling all the interested
1210399Sstephan.diestelhorst@arm.com# sc_objects whenever time advances would add a non-trivial amount of
1310399Sstephan.diestelhorst@arm.com# complexity and is probably not worth implementing in general.
1410399Sstephan.diestelhorst@arm.compath.startswith("systemc/kernel/phase_callbacks/"),
1510399Sstephan.diestelhorst@arm.com
1610399Sstephan.diestelhorst@arm.com
1710399Sstephan.diestelhorst@arm.compath in (
1810399Sstephan.diestelhorst@arm.com    # Uses sc_elab_and_sim.
1910399Sstephan.diestelhorst@arm.com    "systemc/kernel/sc_main_main",
2010399Sstephan.diestelhorst@arm.com
2110399Sstephan.diestelhorst@arm.com    # Tests the deprecated sc_string type which we aren't supporting.
2210399Sstephan.diestelhorst@arm.com    "systemc/bugs/sc_string_bracket_assign",
2310399Sstephan.diestelhorst@arm.com    "systemc/misc/stars/star124010",
2410399Sstephan.diestelhorst@arm.com
2510399Sstephan.diestelhorst@arm.com    # This test declares a constructor it never defines, so it's not clear how
2610399Sstephan.diestelhorst@arm.com    # it would ever work?
2710399Sstephan.diestelhorst@arm.com    "systemc/misc/stars/star104726",
2810399Sstephan.diestelhorst@arm.com
2910399Sstephan.diestelhorst@arm.com    # Another test which calls an undefined function.
3010399Sstephan.diestelhorst@arm.com    "systemc/misc/gnats/pr-480",
3110399Sstephan.diestelhorst@arm.com
3210399Sstephan.diestelhorst@arm.com    # These tests rely on implicit FXVAL constructors based on primitive types,
3310399Sstephan.diestelhorst@arm.com    # but enabling that makes other operator overloads ambiguous so things
3410399Sstephan.diestelhorst@arm.com    # don't compile. It also seems dangerous to change what the headers look
3510399Sstephan.diestelhorst@arm.com    # like between the backing implementation and the consuming application.
3610399Sstephan.diestelhorst@arm.com    "systemc/datatypes/fx/fast_constructors",
3711135Sandreas.hansson@arm.com    "systemc/datatypes/fx/constructors",
3810399Sstephan.diestelhorst@arm.com
3910399Sstephan.diestelhorst@arm.com    # These tests uses sensitive_neg and sensitive_pos and overloads which are
4010399Sstephan.diestelhorst@arm.com    # deprecated and not worth supporting. The non-deprecated version,
4110399Sstephan.diestelhorst@arm.com    # sensitive, is exercised elsewhere.
4211135Sandreas.hansson@arm.com    "systemc/kernel/sc_sensitive/test02",
4310399Sstephan.diestelhorst@arm.com    "systemc/kernel/sc_sensitive/test03",
4410399Sstephan.diestelhorst@arm.com),
4511793Sbrandon.potter@amd.com
4611793Sbrandon.potter@amd.com])
4710399Sstephan.diestelhorst@arm.com