working.filt revision 13050:7a026b534292
12SN/Anot any([
21762SN/A
32SN/A# The sc_elab_and_sim mechanism is purposefully not supported.
42SN/Aname == "sc_elab_and_sim",
52SN/A
62SN/A# The wif trace format is deprecated, and probably would take a non-trivial
72SN/A# amount of work to support.
82SN/Apath.startswith("systemc/tracing/wif_trace"),
92SN/Apath.startswith("systemc/misc/stars/wif_trace"),
102SN/A
112SN/A# Phase callbacks are an experimental feature. Also calling all the interested
122SN/A# sc_objects whenever time advances would add a non-trivial amount of
132SN/A# complexity and is probably not worth implementing in general.
142SN/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?
272665Ssaidi@eecs.umich.edu    "systemc/misc/stars/star104726",
282665Ssaidi@eecs.umich.edu
292SN/A    # Another test which calls an undefined function.
302SN/A    "systemc/misc/gnats/pr-480",
313877Sbinkertn@umich.edu
323877Sbinkertn@umich.edu    # Two more tests with undefined functions.
332147SN/A    "systemc/misc/unit/extern",
348221Snate@binkert.org    "systemc/misc/unit/extern2",
358221Snate@binkert.org
368221Snate@binkert.org    # These tests rely on implicit FXVAL constructors based on primitive types,
378221Snate@binkert.org    # but enabling that makes other operator overloads ambiguous so things
388221Snate@binkert.org    # don't compile. It also seems dangerous to change what the headers look
398221Snate@binkert.org    # like between the backing implementation and the consuming application.
408221Snate@binkert.org    "systemc/datatypes/fx/fast_constructors",
418221Snate@binkert.org    "systemc/datatypes/fx/constructors",
428221Snate@binkert.org
438221Snate@binkert.org    # These tests uses sensitive_neg and sensitive_pos and overloads which are
448221Snate@binkert.org    # deprecated and not worth supporting. The non-deprecated version,
452SN/A    # sensitive, is exercised elsewhere.
462SN/A    "systemc/kernel/sc_sensitive/test02",
472SN/A    "systemc/kernel/sc_sensitive/test03",
488221Snate@binkert.org),
498221Snate@binkert.org
508221Snate@binkert.org])
518221Snate@binkert.org