mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-13 03:12:46 +00:00
8007ff1ab1
These lit configuration files are really Python source code. Using the .py file extension helps editors and tools use the correct language mode. LLVM and Clang already use this convention for lit configuration, this change simply applies it to all of compiler-rt. Reviewers: vitalybuka, dberris Differential Revision: https://reviews.llvm.org/D63658 llvm-svn: 364591
5 lines
250 B
Python
5 lines
250 B
Python
# Put all 64-bit tests in the shadow-memory parallelism group. We throttle those
|
|
# in our common lit config (lit.common.unit.cfg.py).
|
|
def darwin_sanitizer_parallelism_group_func(test):
|
|
return "shadow-memory" if "x86_64" in test.file_path else None
|