forked from OSchip/llvm-project
Add comment on known restrictions of the current implementation.
llvm-svn: 137748
This commit is contained in:
parent
d3ad0aa413
commit
4d9d9689a0
|
@ -23,7 +23,14 @@ no_trace = False
|
|||
|
||||
# To be filled with the filterspecs found in the session logs.
|
||||
redo_specs = []
|
||||
|
||||
# There is a known bug with respect to comp_specs and arch_specs, in that if we
|
||||
# encountered "-C clang" and "-C gcc" when visiting the session files, both
|
||||
# compilers will end up in the invocation of the test driver when rerunning.
|
||||
# That is: ./dotest -v -C clang^gcc ... -f ...". Ditto for "-A" flags.
|
||||
# The "-C compiler" for comp_specs.
|
||||
comp_specs = set()
|
||||
# The "-A arch" for arch_specs.
|
||||
arch_specs = set()
|
||||
|
||||
def usage():
|
||||
|
|
Loading…
Reference in New Issue