working.filt revision 12910
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
1512904Sgabeblack@google.com
1612904Sgabeblack@google.compath in (
1712904Sgabeblack@google.com    # Uses sc_get_curr_simcontext.
1812904Sgabeblack@google.com    "systemc/kernel/sc_object_manager/test01",
1912904Sgabeblack@google.com    "systemc/kernel/sc_name_gen/test1",
2012904Sgabeblack@google.com
2112904Sgabeblack@google.com    # Uses sc_elab_and_sim.
2212904Sgabeblack@google.com    "systemc/kernel/sc_main_main",
2312904Sgabeblack@google.com
2412904Sgabeblack@google.com    # Tests the deprecated sc_string type which we aren't supporting.
2512906Sgabeblack@google.com    "systemc/bugs/sc_string_bracket_assign",
2612910Sgabeblack@google.com    "systemc/misc/stars/star124010",
2712906Sgabeblack@google.com
2812906Sgabeblack@google.com    # This test declares a constructor it never defines, so it's not clear how
2912906Sgabeblack@google.com    # it would ever work?
3012906Sgabeblack@google.com    "systemc/misc/stars/star104726",
3112904Sgabeblack@google.com),
3212904Sgabeblack@google.com
3312904Sgabeblack@google.com])
34