forked from OSchip/llvm-project
parent
f355eda567
commit
636a0e3836
|
@ -1651,7 +1651,8 @@ class Base(unittest2.TestCase):
|
|||
|
||||
if compiler[1] == ':':
|
||||
compiler = compiler[2:]
|
||||
compiler = compiler.replace(os.path.altsep, os.path.sep)
|
||||
if os.path.altsep is not None:
|
||||
compiler = compiler.replace(os.path.altsep, os.path.sep)
|
||||
|
||||
fname = "{}-{}-{}".format(self.id(), self.getArchitecture(), "_".join(compiler.split(os.path.sep)))
|
||||
if len(fname) > 200:
|
||||
|
|
Loading…
Reference in New Issue