working.filt revision 13050
12SN/Anot any([
210676Sandreas.hansson@arm.com
39235Sandreas.hansson@arm.com# The sc_elab_and_sim mechanism is purposefully not supported.
49235Sandreas.hansson@arm.comname == "sc_elab_and_sim",
59235Sandreas.hansson@arm.com
69235Sandreas.hansson@arm.com# The wif trace format is deprecated, and probably would take a non-trivial
79235Sandreas.hansson@arm.com# amount of work to support.
89235Sandreas.hansson@arm.compath.startswith("systemc/tracing/wif_trace"),
99235Sandreas.hansson@arm.compath.startswith("systemc/misc/stars/wif_trace"),
109235Sandreas.hansson@arm.com
119235Sandreas.hansson@arm.com# Phase callbacks are an experimental feature. Also calling all the interested
129235Sandreas.hansson@arm.com# sc_objects whenever time advances would add a non-trivial amount of
139235Sandreas.hansson@arm.com# complexity and is probably not worth implementing in general.
141762SN/Apath.startswith("systemc/kernel/phase_callbacks/"),
152SN/A
162SN/A
172SN/Apath in (
182SN/A    # Uses sc_elab_and_sim.
192SN/A    "systemc/kernel/sc_main_main",
202SN/A
212SN/A    # Tests the deprecated sc_string type which we aren't supporting.
222SN/A    "systemc/bugs/sc_string_bracket_assign",
232SN/A    "systemc/misc/stars/star124010",
242SN/A
252SN/A    # This test declares a constructor it never defines, so it's not clear how
262SN/A    # it would ever work?
272SN/A    "systemc/misc/stars/star104726",
282SN/A
292SN/A    # Another test which calls an undefined function.
302SN/A    "systemc/misc/gnats/pr-480",
312SN/A
322SN/A    # Two more tests with undefined functions.
332SN/A    "systemc/misc/unit/extern",
342SN/A    "systemc/misc/unit/extern2",
352SN/A
362SN/A    # These tests rely on implicit FXVAL constructors based on primitive types,
372SN/A    # but enabling that makes other operator overloads ambiguous so things
382SN/A    # don't compile. It also seems dangerous to change what the headers look
392665SN/A    # like between the backing implementation and the consuming application.
402665SN/A    "systemc/datatypes/fx/fast_constructors",
412665SN/A    "systemc/datatypes/fx/constructors",
429235Sandreas.hansson@arm.com
432SN/A    # These tests uses sensitive_neg and sensitive_pos and overloads which are
442SN/A    # deprecated and not worth supporting. The non-deprecated version,
459235Sandreas.hansson@arm.com    # sensitive, is exercised elsewhere.
469235Sandreas.hansson@arm.com    "systemc/kernel/sc_sensitive/test02",
472SN/A    "systemc/kernel/sc_sensitive/test03",
4810481Sandreas.hansson@arm.com),
499412Sandreas.hansson@arm.com
509412Sandreas.hansson@arm.com])
519411Sandreas.hansson@arm.com