Skip to content

Commit

Permalink
tests: Remove unused option
Browse files Browse the repository at this point in the history
The getopt allows the definition of '-d' but this is menaingless.
Drop the option from the parser.

Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Signed-off-by: Eric B Munson <emunson@mgebm.net>
  • Loading branch information
mbgg authored and khers committed Oct 27, 2016
1 parent f03033e commit 475c498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ def main():
custom_ldscripts = False

try:
opts, args = getopt.getopt(sys.argv[1:], "vVfdt:b:p:c:lh")
opts, args = getopt.getopt(sys.argv[1:], "vVft:b:p:c:lh")
except getopt.GetoptError, err:
print str(err)
sys.exit(1)
Expand Down

0 comments on commit 475c498

Please sign in to comment.