mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-18 11:56:41 +00:00

This is the first commit in a series that will reformat all the python files in the LLVM repository. Reformatting is done with `black`. See more information here: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Reviewed By: jhenderson, JDevlieghere, MatzeB Differential Revision: https://reviews.llvm.org/D150545
10 lines
147 B
Python
10 lines
147 B
Python
# -*- Python -*-
|
|
|
|
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
|
import ManyTests
|
|
|
|
config.test_format = ManyTests.ManyTests()
|