blob: b51db6040523e0b3c3fd03999293e4dcff7426e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# This is an example file showing the exclusion list format.
# It can be passed to gdb_server.py using the --exclude-tests argument.
# Tests excluded for all targets
all:
- SimpleF18Test
# Tests excluded for the "spike32" target only
spike32:
- MemTest32
- PrivRw
- Sv32Test
# Tests excluded for the "spike64" target only
spike64:
- UserInterrupt
|