waf: move --check-verbose option declaration

We move it to the correct "scope", that is, ardupilotwaf.py, where it's really
used.
This commit is contained in:
Gustavo Jose de Sousa 2016-02-17 12:55:59 +00:00 committed by Lucas De Marchi
parent 8c4d4f3f2a
commit 662e45fda2
2 changed files with 5 additions and 5 deletions

View File

@ -316,6 +316,11 @@ def options(opt):
'examples. The special group "all" selects all programs.',
)
g = opt.ap_groups['check']
g.add_option('--check-verbose',
action='store_true',
help='Output all test programs')
def build(bld):
global LAST_IDX
# FIXME: This is done to prevent same task generators being created with

View File

@ -57,11 +57,6 @@ def options(opt):
default='sitl',
help='Target board to build, choices are %s' % boards_names)
g = opt.ap_groups['check']
g.add_option('--check-verbose',
action='store_true',
help='Output all test programs')
g.add_option('--no-submodule-update',
dest='submodule_update',
action='store_false',