forked from OSchip/llvm-project
Remove obsolete TODOs
Remove a few of my own TODOs that I will not have time to fix from lit code.
This commit is contained in:
parent
45b259f995
commit
975086b10a
|
@ -116,7 +116,7 @@ def parse_args():
|
||||||
dest="maxIndividualTestTime",
|
dest="maxIndividualTestTime",
|
||||||
help="Maximum time to spend running a single test (in seconds). "
|
help="Maximum time to spend running a single test (in seconds). "
|
||||||
"0 means no time limit. [Default: 0]",
|
"0 means no time limit. [Default: 0]",
|
||||||
type=_non_negative_int) # TODO(yln): --[no-]test-timeout, instead of 0 allowed
|
type=_non_negative_int)
|
||||||
execution_group.add_argument("--max-failures",
|
execution_group.add_argument("--max-failures",
|
||||||
help="Stop execution after the given number of failures.",
|
help="Stop execution after the given number of failures.",
|
||||||
type=_positive_int)
|
type=_positive_int)
|
||||||
|
@ -135,15 +135,15 @@ def parse_args():
|
||||||
metavar="N",
|
metavar="N",
|
||||||
help="Maximum number of tests to run",
|
help="Maximum number of tests to run",
|
||||||
type=_positive_int)
|
type=_positive_int)
|
||||||
selection_group.add_argument("--max-time", #TODO(yln): --timeout
|
selection_group.add_argument("--max-time",
|
||||||
dest="timeout",
|
dest="timeout",
|
||||||
metavar="N",
|
metavar="N",
|
||||||
help="Maximum time to spend testing (in seconds)",
|
help="Maximum time to spend testing (in seconds)",
|
||||||
type=_positive_int)
|
type=_positive_int)
|
||||||
selection_group.add_argument("--shuffle", # TODO(yln): --order=random
|
selection_group.add_argument("--shuffle",
|
||||||
help="Run tests in random order", # default or 'by-path' (+ isEarlyTest())
|
help="Run tests in random order",
|
||||||
action="store_true")
|
action="store_true")
|
||||||
selection_group.add_argument("-i", "--incremental", # TODO(yln): --order=failing-first
|
selection_group.add_argument("-i", "--incremental",
|
||||||
help="Run modified and failing tests first (updates mtimes)",
|
help="Run modified and failing tests first (updates mtimes)",
|
||||||
action="store_true")
|
action="store_true")
|
||||||
selection_group.add_argument("--filter",
|
selection_group.add_argument("--filter",
|
||||||
|
@ -151,7 +151,7 @@ def parse_args():
|
||||||
type=_case_insensitive_regex,
|
type=_case_insensitive_regex,
|
||||||
help="Only run tests with paths matching the given regular expression",
|
help="Only run tests with paths matching the given regular expression",
|
||||||
default=os.environ.get("LIT_FILTER", ".*"))
|
default=os.environ.get("LIT_FILTER", ".*"))
|
||||||
selection_group.add_argument("--num-shards", # TODO(yln): --shards N/M
|
selection_group.add_argument("--num-shards",
|
||||||
dest="numShards",
|
dest="numShards",
|
||||||
metavar="M",
|
metavar="M",
|
||||||
help="Split testsuite into M pieces and only run one",
|
help="Split testsuite into M pieces and only run one",
|
||||||
|
|
Loading…
Reference in New Issue