summaryrefslogtreecommitdiff
path: root/piglit-run.py
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2013-10-11 08:34:34 -0700
committerDylan Baker <baker.dylan.c@gmail.com>2013-10-11 08:34:34 -0700
commited6cdc2f319d3aeb717d931e6f5a3c550762b8d1 (patch)
tree55dd13714f3453fd10b1ceb7ed7a97b4f37c83cb /piglit-run.py
parentf2877acc7be964cde552ab540e26dd0378261073 (diff)
piglit-run.py: Fix a few PEP8 issues that snuck in
This is purely formatting changes with no functional changes. Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
Diffstat (limited to 'piglit-run.py')
-rwxr-xr-xpiglit-run.py27
1 files changed, 15 insertions, 12 deletions
diff --git a/piglit-run.py b/piglit-run.py
index 889d7e27d..4c8718770 100755
--- a/piglit-run.py
+++ b/piglit-run.py
@@ -53,19 +53,21 @@ def main():
dest="execute",
help="Do not execute the tests")
parser.add_argument("-t", "--include-tests",
- default = [],
- action = "append",
- metavar = "<regex>",
- help = "Run only matching tests (can be used more than once)")
+ default=[],
+ action="append",
+ metavar="<regex>",
+ help="Run only matching tests "
+ "(can be used more than once)")
parser.add_argument("-x", "--exclude-tests",
- default = [],
- action = "append",
- metavar = "<regex>",
- help = "Exclude matching tests (can be used more than once)")
+ default=[],
+ action="append",
+ metavar="<regex>",
+ help="Exclude matching tests "
+ "(can be used more than once)")
parser.add_argument("-1", "--no-concurrency",
- action = "store_false",
- dest = "concurrency",
- help = "Disable concurrent test runs")
+ action="store_false",
+ dest="concurrency",
+ help="Disable concurrent test runs")
parser.add_argument("-p", "--platform",
choices=["glx", "x11_egl", "wayland", "gbm"],
help="Name of windows system passed to waffle")
@@ -74,7 +76,8 @@ def main():
help="Run tests in valgrind's memcheck")
parser.add_argument("--dmesg",
action="store_true",
- help="Capture a difference in dmesg before and after each test")
+ help="Capture a difference in dmesg before and "
+ "after each test")
parser.add_argument("testProfile",
metavar="<Path to test profile>",
help="Path to testfile to run")