-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a way to exclude tests by specifying an exclusion file
This patch adds a way to specify a yaml file which specifies either for each target individually or for all targets to exclude tests. Example file format is included in excluded.yaml.example.
- Loading branch information
1 parent
7b52ba3
commit 0009a26
Showing
4 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
pexpect>=4.0.0 | ||
pyyaml>=3.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters