working.filt (13050:7a026b534292) working.filt (13266:98fa4585d1c0)
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_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
26 # it would ever work?
27 "systemc/misc/stars/star104726",
28
29 # Another test which calls an undefined function.
30 "systemc/misc/gnats/pr-480",
31
32 # Two more tests with undefined functions.
33 "systemc/misc/unit/extern",
34 "systemc/misc/unit/extern2",
35
36 # These tests rely on implicit FXVAL constructors based on primitive types,
37 # but enabling that makes other operator overloads ambiguous so things
38 # don't compile. It also seems dangerous to change what the headers look
39 # like between the backing implementation and the consuming application.
40 "systemc/datatypes/fx/fast_constructors",
41 "systemc/datatypes/fx/constructors",
42
43 # These tests uses sensitive_neg and sensitive_pos and overloads which are
44 # deprecated and not worth supporting. The non-deprecated version,
45 # sensitive, is exercised elsewhere.
46 "systemc/kernel/sc_sensitive/test02",
47 "systemc/kernel/sc_sensitive/test03",
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_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
26 # it would ever work?
27 "systemc/misc/stars/star104726",
28
29 # Another test which calls an undefined function.
30 "systemc/misc/gnats/pr-480",
31
32 # Two more tests with undefined functions.
33 "systemc/misc/unit/extern",
34 "systemc/misc/unit/extern2",
35
36 # These tests rely on implicit FXVAL constructors based on primitive types,
37 # but enabling that makes other operator overloads ambiguous so things
38 # don't compile. It also seems dangerous to change what the headers look
39 # like between the backing implementation and the consuming application.
40 "systemc/datatypes/fx/fast_constructors",
41 "systemc/datatypes/fx/constructors",
42
43 # These tests uses sensitive_neg and sensitive_pos and overloads which are
44 # deprecated and not worth supporting. The non-deprecated version,
45 # sensitive, is exercised elsewhere.
46 "systemc/kernel/sc_sensitive/test02",
47 "systemc/kernel/sc_sensitive/test03",
48
49 # This test relies on being able to set the time resolution even after it's
50 # been fixed by telling systemc to ignore the error message. gem5 has no
51 # facility to ignore the error it raises for the same reason, and it
52 # wouldn't make sense to add one.
53 "systemc/kernel/sc_time/test19",
48),
49
50])
54),
55
56])