Fix for the following exception.
AttributeError: 'TestingConfig' object has no attribute 'target_triple'
Related revision: https://reviews.llvm.org/D102012
'TestingConfig' object has no attribute 'target_triple'
Differential D103140
[libcxx] Fix exception raised during downstream bare-metal libunwind tests amilendra on May 26 2021, 12:24 AM. Authored by
Details
Fix for the following exception. AttributeError: 'TestingConfig' object has no attribute 'target_triple' Related revision: https://reviews.llvm.org/D102012 'TestingConfig' object has no attribute 'target_triple'
Diff Detail
Event TimelineComment Actions This looks sensible, given that libcxxabi/test/libcxxabi/test/config.py does the same thing: 74 triple = self.get_lit_conf('target_triple', None) 75 if triple is not None: |