summaryrefslogtreecommitdiff
path: root/devtools/flocktest
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-04-18 12:17:18 -0400
committerEric S. Raymond <esr@thyrsus.com>2010-04-18 12:17:18 -0400
commiteacc9fe4287176ec77909c855f4eaa720f145fcf (patch)
tree5758b465691303b4708acdb145ce9342ccf3e829 /devtools/flocktest
parent05411fff5674cd284e411134521294d733ade760 (diff)
downloadgpsd-eacc9fe4287176ec77909c855f4eaa720f145fcf.tar.gz
Add explanatory comments.
Diffstat (limited to 'devtools/flocktest')
-rwxr-xr-xdevtools/flocktest12
1 files changed, 6 insertions, 6 deletions
diff --git a/devtools/flocktest b/devtools/flocktest
index 420f4f24..f9b472d8 100755
--- a/devtools/flocktest
+++ b/devtools/flocktest
@@ -272,17 +272,17 @@ if __name__ == '__main__':
dumpconf = False
cianotify = True
for (switch, val) in options:
- if switch == '-c':
+ if switch == '-c': # Dump flocktest configuration
dumpconf = True
- elif switch == '-d':
+ elif switch == '-d': # Set the test subdirectory name
subdir = val
- elif switch == '-k':
+ elif switch == '-k': # Install the access keys
copykeys = True
- elif switch == '-q':
+ elif switch == '-q': # Suppress CIA notifications
cianotify = False
- elif switch == '-v':
+ elif switch == '-v': # Display build log even when no error
verbose = True
- elif switch == '-x':
+ elif switch == '-x': # Exclude specified sites or architectures
exclusions = map(lambda x: x.strip(), val.split(","))
else: # switch == '-?':
print __doc__