Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions clang/test/Format/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
import platform
import lit.formats

Expand Down Expand Up @@ -27,3 +28,8 @@ config.suffixes = [
# python implementation does, so use that for cross platform compatibility
if platform.system() == "AIX":
config.test_format = lit.formats.ShTest()

# Create an empty .clang-format-ignore file so that tests don't get messed
# up if one exists higher in the tree
with open(os.path.join("Format", ".clang-format-ignore"), 'w'):
pass
Loading