working.filt revision 12947
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
3212936Sgabeblack@google.com    # These tests rely on implicit FXVAL constructors based on primitive types,
3312936Sgabeblack@google.com    # but enabling that makes other operator overloads ambiguous so things
3412936Sgabeblack@google.com    # don't compile. It also seems dangerous to change what the headers look
3512936Sgabeblack@google.com    # like between the backing implementation and the consuming application.
3612936Sgabeblack@google.com    "systemc/datatypes/fx/fast_constructors",
3712936Sgabeblack@google.com    "systemc/datatypes/fx/constructors",
3812947Sgabeblack@google.com
3912947Sgabeblack@google.com    # These tests uses sensitive_neg and sensitive_pos and overloads which are
4012947Sgabeblack@google.com    # deprecated and not worth supporting. The non-deprecated version,
4112947Sgabeblack@google.com    # sensitive, is exercised elsewhere.
4212947Sgabeblack@google.com    "systemc/kernel/sc_sensitive/test02",
4312947Sgabeblack@google.com    "systemc/kernel/sc_sensitive/test03",
4412904Sgabeblack@google.com),
4512904Sgabeblack@google.com
4612904Sgabeblack@google.com])
47