mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 21:00:29 +00:00
Fix lit failure on cmake-clang-x64_64-linux bot, apparently due to its having
a very (*very*) old version of Python (2.4?) llvm-svn: 153409
This commit is contained in:
parent
3ef88c1833
commit
a9eb78009f
@ -118,5 +118,8 @@ class TestingConfig:
|
||||
@property
|
||||
def root(self):
|
||||
"""root attribute - The root configuration for the test suite."""
|
||||
return self if self.parent is None else self.parent.root
|
||||
if self.parent is None:
|
||||
return self
|
||||
else:
|
||||
return self.parent.root
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user