diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/style/style.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/style/style.py b/util/style/style.py index 317caa395..0f58590f5 100644 --- a/util/style/style.py +++ b/util/style/style.py @@ -115,6 +115,11 @@ style_ignores = [ _re_ignore("^ext/"), # Ignore test data, as they are not code _re_ignore("^tests/(?:quick|long)/"), + # Ignore RISC-V assembly tests as they are maintained in an external + # project that does not follow the gem5 coding convention + _re_ignore("tests/test-progs/asmtest/src/riscv/"), + # Ignore RISC-V assembly dump files + _re_ignore("tests/test-progs/asmtest/dump/riscv/") ] def check_ignores(fname): |