Gabe Black | b29a2d0 | 2018-06-15 15:53:32 -0700 | [diff] [blame] | 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 | |
Gabe Black | 7cab8db | 2018-06-15 23:25:58 -0700 | [diff] [blame] | 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. |
| 14 | path.startswith("systemc/kernel/phase_callbacks/"), |
| 15 | |
Gabe Black | b29a2d0 | 2018-06-15 15:53:32 -0700 | [diff] [blame] | 16 | |
| 17 | path in ( |
Gabe Black | 7a58945 | 2018-12-12 15:47:07 -0800 | [diff] [blame] | 18 | # Fails with undiagnosed output differences. |
| 19 | "tlm/bus", |
| 20 | "tlm/bus_dmi", |
| 21 | |
Gabe Black | b29a2d0 | 2018-06-15 15:53:32 -0700 | [diff] [blame] | 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. |
Gabe Black | d5983ac | 2018-06-15 16:44:29 -0700 | [diff] [blame] | 26 | "systemc/bugs/sc_string_bracket_assign", |
Gabe Black | 5a4d84e | 2018-06-15 17:30:22 -0700 | [diff] [blame] | 27 | "systemc/misc/stars/star124010", |
Gabe Black | d5983ac | 2018-06-15 16:44:29 -0700 | [diff] [blame] | 28 | |
| 29 | # This test declares a constructor it never defines, so it's not clear how |
| 30 | # it would ever work? |
| 31 | "systemc/misc/stars/star104726", |
Gabe Black | 6b14e93 | 2018-06-16 22:33:28 -0700 | [diff] [blame] | 32 | |
| 33 | # Another test which calls an undefined function. |
| 34 | "systemc/misc/gnats/pr-480", |
| 35 | |
Gabe Black | 68c2928 | 2018-08-13 18:10:05 -0700 | [diff] [blame] | 36 | # Two more tests with undefined functions. |
| 37 | "systemc/misc/unit/extern", |
| 38 | "systemc/misc/unit/extern2", |
| 39 | |
Gabe Black | 6b14e93 | 2018-06-16 22:33:28 -0700 | [diff] [blame] | 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", |
Gabe Black | d86151e | 2018-06-18 19:30:23 -0700 | [diff] [blame] | 46 | |
| 47 | # These tests uses sensitive_neg and sensitive_pos and overloads which are |
| 48 | # deprecated and not worth supporting. The non-deprecated version, |
| 49 | # sensitive, is exercised elsewhere. |
| 50 | "systemc/kernel/sc_sensitive/test02", |
| 51 | "systemc/kernel/sc_sensitive/test03", |
Gabe Black | 56eef42 | 2018-09-27 01:27:31 -0700 | [diff] [blame] | 52 | |
| 53 | # This test relies on being able to set the time resolution even after it's |
| 54 | # been fixed by telling systemc to ignore the error message. gem5 has no |
| 55 | # facility to ignore the error it raises for the same reason, and it |
| 56 | # wouldn't make sense to add one. |
| 57 | "systemc/kernel/sc_time/test19", |
Gabe Black | 70f52c3 | 2018-10-08 22:21:23 -0700 | [diff] [blame] | 58 | |
| 59 | # This test is for a mechanism to change to a non-standard signal write |
| 60 | # checking behavior using an environment variable which we don't intent to |
| 61 | # support at this time. |
| 62 | "systemc/communication/sc_signal/check_writer/test16", |
Gabe Black | b29a2d0 | 2018-06-15 15:53:32 -0700 | [diff] [blame] | 63 | ), |
| 64 | |
| 65 | ]) |