about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPierre Lalet <pierre@droids-corp.org>2015-10-14 23:40:51 +0200
committerPierre Lalet <pierre@droids-corp.org>2015-10-14 23:40:51 +0200
commitf23476c474eb9dfdd3cc63a790bd4f0dc62d3e50 (patch)
tree957148f371d66412dc297283072f06f85faca547
parente78fbcbb68da29d36066d89743024d51a0240650 (diff)
parent68cc00a06c483a4dcddb8b55772d5cdad2254af6 (diff)
downloadmiasm-f23476c474eb9dfdd3cc63a790bd4f0dc62d3e50.tar.gz
miasm-f23476c474eb9dfdd3cc63a790bd4f0dc62d3e50.zip
Merge pull request #228 from a-vincent/typo-omit-tags
Orthograph fix in parameter: rename --ommit-tags to --omit-tags.
-rw-r--r--test/test_all.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_all.py b/test/test_all.py
index 9773022f..54537bdf 100644
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -402,9 +402,9 @@ if __name__ == "__main__":
                         action="store_true")
     parser.add_argument("-c", "--coverage", help="Include code coverage",
                         action="store_true")
-    parser.add_argument("-t", "--ommit-tags", help="Ommit tests based on tags \
+    parser.add_argument("-t", "--omit-tags", help="Omit tests based on tags \
 (tag1,tag2). Available tags are %s. \
-By default, no tag is ommited." % ", ".join(TAGS.keys()), default="")
+By default, no tag is omitted." % ", ".join(TAGS.keys()), default="")
     parser.add_argument("-n", "--do-not-clean",
                         help="Do not clean tests products", action="store_true")
     args = parser.parse_args()
@@ -414,9 +414,9 @@ By default, no tag is ommited." % ", ".join(TAGS.keys()), default="")
     if args.mono is True or args.coverage is True:
         multiproc = False
 
-    ## Parse ommit-tags argument
+    ## Parse omit-tags argument
     exclude_tags = []
-    for tag in args.ommit_tags.split(","):
+    for tag in args.omit_tags.split(","):
         if not tag:
             continue
         if tag not in TAGS: