[LLVM][Examples][Cygwin] Exclude examples that are not built from test dependencies (#172145)

`Bye` and `ExampleIRTransforms` are not built on Cygwin.
This commit is contained in:
Tomohiro Kashiwada 2025-12-13 20:20:26 +09:00 committed by GitHub
parent bea172c08b
commit 0b64dc96df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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.