This revision was automatically updated to reflect the committed changes. Closed by commit rGedb68a453350: [LIT] Add AArch64/Windows to LP64 feature (authored by omjavaid).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D136070/new/ https://reviews.llvm.org/D136070 Files: clang/test/lit.cfg.py Index: clang/test/lit.cfg.py =================================================================== --- clang/test/lit.cfg.py +++ clang/test/lit.cfg.py @@ -177,7 +177,7 @@ config.available_features.add('ms-sdk') # [PR8833] LLP64-incompatible tests -if not re.match(r'^x86_64.*-(windows-msvc|windows-gnu)$', config.target_triple): +if not re.match(r'^(aarch64|x86_64).*-(windows-msvc|windows-gnu)$', config.target_triple): config.available_features.add('LP64') # Tests that are specific to the Apple Silicon macOS.
Index: clang/test/lit.cfg.py =================================================================== --- clang/test/lit.cfg.py +++ clang/test/lit.cfg.py @@ -177,7 +177,7 @@ config.available_features.add('ms-sdk') # [PR8833] LLP64-incompatible tests -if not re.match(r'^x86_64.*-(windows-msvc|windows-gnu)$', config.target_triple): +if not re.match(r'^(aarch64|x86_64).*-(windows-msvc|windows-gnu)$', config.target_triple): config.available_features.add('LP64') # Tests that are specific to the Apple Silicon macOS.
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits