diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2017-04-21 10:41:49 +0100 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2017-04-21 14:28:41 +0000 |
commit | 1c972b052659a6926dd23e5735f17f23b5f7084a (patch) | |
tree | 0f5f9a58aa190d7f49124ea1bb0247ee0fd470f9 /tests | |
parent | 3cc6df46a3cd0aa97cd960f7f284d21c36a05181 (diff) | |
download | gem5-1c972b052659a6926dd23e5735f17f23b5f7084a.tar.xz |
tests: Remove unused options from tests.py
The test sub-command in tests.py incorrectly accepts various
formatting options in its usage string. These options aren't needed
since the test command doesn't produce any output.
Change-Id: I6d4731aa32a25a2286aa66548eaa0154a9392f79
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/2840
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/tests.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/tests.py b/tests/tests.py index bb6486679..2ae4a7879 100755 --- a/tests/tests.py +++ b/tests/tests.py @@ -280,8 +280,6 @@ def _test_args(subparsers): summary formatter, such a test would show up as 'CHANGED'. """) - _add_format_args(parser) - parser.add_argument("result", type=argparse.FileType("rb"), nargs="*", help="Pickled test results") |