working.filt (12935:2dc521e3e4f9) working.filt (12936:d45fc11ddb86)
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# These tests refers to sc_get_current_process_b which is a deprecated type and
12# something we're not currently planning to support.
13path.startswith("systemc/kernel/sc_process_b"),
14
15# Phase callbacks are an experimental feature. Also calling all the interested
16# sc_objects whenever time advances would add a non-trivial amount of
17# complexity and is probably not worth implementing in general.
18path.startswith("systemc/kernel/phase_callbacks/"),
19
20
21path in (
22 # Uses sc_get_curr_simcontext.
23 "systemc/kernel/sc_object_manager/test01",
24 "systemc/kernel/sc_name_gen/test1",
25
26 # Uses sc_elab_and_sim.
27 "systemc/kernel/sc_main_main",
28
29 # Tests the deprecated sc_string type which we aren't supporting.
30 "systemc/bugs/sc_string_bracket_assign",
31 "systemc/misc/stars/star124010",
32
33 # This test declares a constructor it never defines, so it's not clear how
34 # it would ever work?
35 "systemc/misc/stars/star104726",
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# These tests refers to sc_get_current_process_b which is a deprecated type and
12# something we're not currently planning to support.
13path.startswith("systemc/kernel/sc_process_b"),
14
15# Phase callbacks are an experimental feature. Also calling all the interested
16# sc_objects whenever time advances would add a non-trivial amount of
17# complexity and is probably not worth implementing in general.
18path.startswith("systemc/kernel/phase_callbacks/"),
19
20
21path in (
22 # Uses sc_get_curr_simcontext.
23 "systemc/kernel/sc_object_manager/test01",
24 "systemc/kernel/sc_name_gen/test1",
25
26 # Uses sc_elab_and_sim.
27 "systemc/kernel/sc_main_main",
28
29 # Tests the deprecated sc_string type which we aren't supporting.
30 "systemc/bugs/sc_string_bracket_assign",
31 "systemc/misc/stars/star124010",
32
33 # This test declares a constructor it never defines, so it's not clear how
34 # it would ever work?
35 "systemc/misc/stars/star104726",
36
37 # Another test which calls an undefined function.
38 "systemc/misc/gnats/pr-480",
39
40 # These tests rely on implicit FXVAL constructors based on primitive types,
41 # but enabling that makes other operator overloads ambiguous so things
42 # don't compile. It also seems dangerous to change what the headers look
43 # like between the backing implementation and the consuming application.
44 "systemc/datatypes/fx/fast_constructors",
45 "systemc/datatypes/fx/constructors",
36),
37
38])
46),
47
48])