Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion llvm/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ if(LLVM_INCLUDE_EXAMPLES)
LLJITWithRemoteDebugging
)
endif()
if (NOT WIN32)
if (NOT WIN32 AND NOT CYGWIN)
list(APPEND LLVM_TEST_DEPENDS
Bye
ExampleIRTransforms
Expand Down
2 changes: 1 addition & 1 deletion llvm/test/Examples/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if not config.include_examples or sys.platform in ["win32"]:
if not config.include_examples or sys.platform in ["win32", "cygwin"]:
config.unsupported = True

# Test discovery should ignore subdirectories that contain test inputs.
Expand Down
Loading