working.filt revision 13266
112904Sgabeblack@google.comnot any([
212904Sgabeblack@google.com
312904Sgabeblack@google.com# The sc_elab_and_sim mechanism is purposefully not supported.
412904Sgabeblack@google.comname == "sc_elab_and_sim",
512904Sgabeblack@google.com
612904Sgabeblack@google.com# The wif trace format is deprecated, and probably would take a non-trivial
712904Sgabeblack@google.com# amount of work to support.
812904Sgabeblack@google.compath.startswith("systemc/tracing/wif_trace"),
912904Sgabeblack@google.compath.startswith("systemc/misc/stars/wif_trace"),
1012904Sgabeblack@google.com
1112935Sgabeblack@google.com# Phase callbacks are an experimental feature. Also calling all the interested
1212935Sgabeblack@google.com# sc_objects whenever time advances would add a non-trivial amount of
1312935Sgabeblack@google.com# complexity and is probably not worth implementing in general.
1412935Sgabeblack@google.compath.startswith("systemc/kernel/phase_callbacks/"),
1512935Sgabeblack@google.com
1612904Sgabeblack@google.com
1712904Sgabeblack@google.compath in (
1812904Sgabeblack@google.com    # Uses sc_elab_and_sim.
1912904Sgabeblack@google.com    "systemc/kernel/sc_main_main",
2012904Sgabeblack@google.com
2112904Sgabeblack@google.com    # Tests the deprecated sc_string type which we aren't supporting.
2212906Sgabeblack@google.com    "systemc/bugs/sc_string_bracket_assign",
2312910Sgabeblack@google.com    "systemc/misc/stars/star124010",
2412906Sgabeblack@google.com
2512906Sgabeblack@google.com    # This test declares a constructor it never defines, so it's not clear how
2612906Sgabeblack@google.com    # it would ever work?
2712906Sgabeblack@google.com    "systemc/misc/stars/star104726",
2812936Sgabeblack@google.com
2912936Sgabeblack@google.com    # Another test which calls an undefined function.
3012936Sgabeblack@google.com    "systemc/misc/gnats/pr-480",
3112936Sgabeblack@google.com
3213050Sgabeblack@google.com    # Two more tests with undefined functions.
3313050Sgabeblack@google.com    "systemc/misc/unit/extern",
3413050Sgabeblack@google.com    "systemc/misc/unit/extern2",
3513050Sgabeblack@google.com
3612936Sgabeblack@google.com    # These tests rely on implicit FXVAL constructors based on primitive types,
3712936Sgabeblack@google.com    # but enabling that makes other operator overloads ambiguous so things
3812936Sgabeblack@google.com    # don't compile. It also seems dangerous to change what the headers look
3912936Sgabeblack@google.com    # like between the backing implementation and the consuming application.
4012936Sgabeblack@google.com    "systemc/datatypes/fx/fast_constructors",
4112936Sgabeblack@google.com    "systemc/datatypes/fx/constructors",
4212947Sgabeblack@google.com
4312947Sgabeblack@google.com    # These tests uses sensitive_neg and sensitive_pos and overloads which are
4412947Sgabeblack@google.com    # deprecated and not worth supporting. The non-deprecated version,
4512947Sgabeblack@google.com    # sensitive, is exercised elsewhere.
4612947Sgabeblack@google.com    "systemc/kernel/sc_sensitive/test02",
4712947Sgabeblack@google.com    "systemc/kernel/sc_sensitive/test03",
4813266Sgabeblack@google.com
4913266Sgabeblack@google.com    # This test relies on being able to set the time resolution even after it's
5013266Sgabeblack@google.com    # been fixed by telling systemc to ignore the error message. gem5 has no
5113266Sgabeblack@google.com    # facility to ignore the error it raises for the same reason, and it
5213266Sgabeblack@google.com    # wouldn't make sense to add one.
5313266Sgabeblack@google.com    "systemc/kernel/sc_time/test19",
5412904Sgabeblack@google.com),
5512904Sgabeblack@google.com
5612904Sgabeblack@google.com])
57