forked from OSchip/llvm-project
libc++ testing: fix assertion around `use_system_cxx_lib`
Actually fix (hopefully) the assertions about `use_system_cxx_lib`, the previous attempt failed because I misread the error. llvm-svn: 299056
This commit is contained in:
parent
322757cae9
commit
566279fad7
|
@ -279,8 +279,8 @@ class Configuration(object):
|
|||
self.use_system_cxx_lib = True
|
||||
elif self.use_system_cxx_lib == 'false':
|
||||
self.use_system_cxx_lib = False
|
||||
else:
|
||||
assert os.path.isdir(str(self.use_system_cxx_lib))
|
||||
else if self.use_system_cxx_lib:
|
||||
assert os.path.isdir(self.use_system_cxx_lib)
|
||||
self.lit_config.note(
|
||||
"inferred use_system_cxx_lib as: %r" % self.use_system_cxx_lib)
|
||||
|
||||
|
|
Loading…
Reference in New Issue