working.filt revision 12939:5256de693153
1not any([
2
3# The sc_elab_and_sim mechanism is purposefully not supported.
4name == "sc_elab_and_sim",
5
6# The wif trace format is deprecated, and probably would take a non-trivial
7# amount of work to support.
8path.startswith("systemc/tracing/wif_trace"),
9path.startswith("systemc/misc/stars/wif_trace"),
10
11# Phase callbacks are an experimental feature. Also calling all the interested
12# sc_objects whenever time advances would add a non-trivial amount of
13# complexity and is probably not worth implementing in general.
14path.startswith("systemc/kernel/phase_callbacks/"),
15
16
17path in (
18    # Uses sc_get_curr_simcontext.
19    "systemc/kernel/sc_object_manager/test01",
20    "systemc/kernel/sc_name_gen/test1",
21    "systemc/kernel/sc_process_b/test2",
22
23    # Uses sc_elab_and_sim.
24    "systemc/kernel/sc_main_main",
25
26    # Tests the deprecated sc_string type which we aren't supporting.
27    "systemc/bugs/sc_string_bracket_assign",
28    "systemc/misc/stars/star124010",
29
30    # This test declares a constructor it never defines, so it's not clear how
31    # it would ever work?
32    "systemc/misc/stars/star104726",
33
34    # Another test which calls an undefined function.
35    "systemc/misc/gnats/pr-480",
36
37    # These tests rely on implicit FXVAL constructors based on primitive types,
38    # but enabling that makes other operator overloads ambiguous so things
39    # don't compile. It also seems dangerous to change what the headers look
40    # like between the backing implementation and the consuming application.
41    "systemc/datatypes/fx/fast_constructors",
42    "systemc/datatypes/fx/constructors",
43),
44
45])
46