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 (
1813526Sgabeblack@google.com    # Fails with undiagnosed output differences.
1913526Sgabeblack@google.com    "tlm/bus",
2013526Sgabeblack@google.com    "tlm/bus_dmi",
2113526Sgabeblack@google.com
2212904Sgabeblack@google.com    # Uses sc_elab_and_sim.
2312904Sgabeblack@google.com    "systemc/kernel/sc_main_main",
2412904Sgabeblack@google.com
2512904Sgabeblack@google.com    # Tests the deprecated sc_string type which we aren't supporting.
2612906Sgabeblack@google.com    "systemc/bugs/sc_string_bracket_assign",
2712910Sgabeblack@google.com    "systemc/misc/stars/star124010",
2812906Sgabeblack@google.com
2912906Sgabeblack@google.com    # This test declares a constructor it never defines, so it's not clear how
3012906Sgabeblack@google.com    # it would ever work?
3112906Sgabeblack@google.com    "systemc/misc/stars/star104726",
3212936Sgabeblack@google.com
3312936Sgabeblack@google.com    # Another test which calls an undefined function.
3412936Sgabeblack@google.com    "systemc/misc/gnats/pr-480",
3512936Sgabeblack@google.com
3613050Sgabeblack@google.com    # Two more tests with undefined functions.
3713050Sgabeblack@google.com    "systemc/misc/unit/extern",
3813050Sgabeblack@google.com    "systemc/misc/unit/extern2",
3913050Sgabeblack@google.com
4012936Sgabeblack@google.com    # These tests rely on implicit FXVAL constructors based on primitive types,
4112936Sgabeblack@google.com    # but enabling that makes other operator overloads ambiguous so things
4212936Sgabeblack@google.com    # don't compile. It also seems dangerous to change what the headers look
4312936Sgabeblack@google.com    # like between the backing implementation and the consuming application.
4412936Sgabeblack@google.com    "systemc/datatypes/fx/fast_constructors",
4512936Sgabeblack@google.com    "systemc/datatypes/fx/constructors",
4612947Sgabeblack@google.com
4712947Sgabeblack@google.com    # These tests uses sensitive_neg and sensitive_pos and overloads which are
4812947Sgabeblack@google.com    # deprecated and not worth supporting. The non-deprecated version,
4912947Sgabeblack@google.com    # sensitive, is exercised elsewhere.
5012947Sgabeblack@google.com    "systemc/kernel/sc_sensitive/test02",
5112947Sgabeblack@google.com    "systemc/kernel/sc_sensitive/test03",
5213266Sgabeblack@google.com
5313266Sgabeblack@google.com    # This test relies on being able to set the time resolution even after it's
5413266Sgabeblack@google.com    # been fixed by telling systemc to ignore the error message. gem5 has no
5513266Sgabeblack@google.com    # facility to ignore the error it raises for the same reason, and it
5613266Sgabeblack@google.com    # wouldn't make sense to add one.
5713266Sgabeblack@google.com    "systemc/kernel/sc_time/test19",
5813326Sgabeblack@google.com
5913326Sgabeblack@google.com    # This test is for a mechanism to change to a non-standard signal write
6013326Sgabeblack@google.com    # checking behavior using an environment variable which we don't intent to
6113326Sgabeblack@google.com    # support at this time.
6213326Sgabeblack@google.com    "systemc/communication/sc_signal/check_writer/test16",
6312904Sgabeblack@google.com),
6412904Sgabeblack@google.com
6512904Sgabeblack@google.com])
66