working.filt revision 12935
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
1112904Sgabeblack@google.com# These tests refers to sc_get_current_process_b which is a deprecated type and
1212904Sgabeblack@google.com# something we're not currently planning to support.
1312904Sgabeblack@google.compath.startswith("systemc/kernel/sc_process_b"),
1412904Sgabeblack@google.com
1512935Sgabeblack@google.com# Phase callbacks are an experimental feature. Also calling all the interested
1612935Sgabeblack@google.com# sc_objects whenever time advances would add a non-trivial amount of
1712935Sgabeblack@google.com# complexity and is probably not worth implementing in general.
1812935Sgabeblack@google.compath.startswith("systemc/kernel/phase_callbacks/"),
1912935Sgabeblack@google.com
2012904Sgabeblack@google.com
2112904Sgabeblack@google.compath in (
2212904Sgabeblack@google.com    # Uses sc_get_curr_simcontext.
2312904Sgabeblack@google.com    "systemc/kernel/sc_object_manager/test01",
2412904Sgabeblack@google.com    "systemc/kernel/sc_name_gen/test1",
2512904Sgabeblack@google.com
2612904Sgabeblack@google.com    # Uses sc_elab_and_sim.
2712904Sgabeblack@google.com    "systemc/kernel/sc_main_main",
2812904Sgabeblack@google.com
2912904Sgabeblack@google.com    # Tests the deprecated sc_string type which we aren't supporting.
3012906Sgabeblack@google.com    "systemc/bugs/sc_string_bracket_assign",
3112910Sgabeblack@google.com    "systemc/misc/stars/star124010",
3212906Sgabeblack@google.com
3312906Sgabeblack@google.com    # This test declares a constructor it never defines, so it's not clear how
3412906Sgabeblack@google.com    # it would ever work?
3512906Sgabeblack@google.com    "systemc/misc/stars/star104726",
3612904Sgabeblack@google.com),
3712904Sgabeblack@google.com
3812904Sgabeblack@google.com])
39