systemc: Add a filter file for the tests which are expected to work.
[gem5.git] / src / systemc / tests / working.filt
1 not any([
2
3 # The sc_elab_and_sim mechanism is purposefully not supported.
4 name == "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.
8 path.startswith("systemc/tracing/wif_trace"),
9 path.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.
13 path.startswith("systemc/kernel/sc_process_b"),
14
15
16 path in (
17 # Uses sc_get_curr_simcontext.
18 "systemc/kernel/sc_object_manager/test01",
19 "systemc/kernel/sc_name_gen/test1",
20
21 # Uses sc_elab_and_sim.
22 "systemc/kernel/sc_main_main",
23
24 # Tests the deprecated sc_string type which we aren't supporting.
25 "systemc/bugs/sc_string_bracket_assign"
26 ),
27
28 ])