working.filt (13326:fc7933f477ae) working.filt (13526:ec97c829002a)
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 (
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 # Fails with undiagnosed output differences.
19 "tlm/bus",
20 "tlm/bus_dmi",
21
18 # Uses sc_elab_and_sim.
19 "systemc/kernel/sc_main_main",
20
21 # Tests the deprecated sc_string type which we aren't supporting.
22 "systemc/bugs/sc_string_bracket_assign",
23 "systemc/misc/stars/star124010",
24
25 # This test declares a constructor it never defines, so it's not clear how

--- 36 unchanged lines hidden ---
22 # Uses sc_elab_and_sim.
23 "systemc/kernel/sc_main_main",
24
25 # Tests the deprecated sc_string type which we aren't supporting.
26 "systemc/bugs/sc_string_bracket_assign",
27 "systemc/misc/stars/star124010",
28
29 # This test declares a constructor it never defines, so it's not clear how

--- 36 unchanged lines hidden ---