forked from OSchip/llvm-project
Quick fix to make LIT_PRESERVES_TMP work again
llvm-svn: 280502
This commit is contained in:
parent
8663b44318
commit
30e2067e3e
|
@ -155,7 +155,8 @@ def main(builtinParameters = {}):
|
|||
try:
|
||||
main_with_tmp(builtinParameters)
|
||||
finally:
|
||||
shutil.rmtree(lit_tmp)
|
||||
if lit_tmp:
|
||||
shutil.rmtree(lit_tmp)
|
||||
|
||||
def main_with_tmp(builtinParameters):
|
||||
global options
|
||||
|
|
Loading…
Reference in New Issue