From: Curtis Dunham Date: Thu, 28 Apr 2016 14:19:58 +0000 (+0100) Subject: style: ignore test data in style checks X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f24000d468c06116e818b9150cc9f71d325176f;p=gem5.git style: ignore test data in style checks Change-Id: If797eaf3842b5c1604942bb60f091800ee814a2a Reviewed-by: Andreas Sandberg --- diff --git a/util/style/style.py b/util/style/style.py index a966f3097..9f3f0d0f0 100644 --- a/util/style/style.py +++ b/util/style/style.py @@ -113,6 +113,8 @@ style_ignores = [ # Ignore external projects as they are unlikely to follow the gem5 # coding convention. _re_ignore("^ext/"), + # Ignore test data, as they are not code + _re_ignore("^tests/(?:quick|long)/"), ] def check_ignores(fname):