mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 19:08:21 +08:00
[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:
committed by
GitHub
parent
bea172c08b
commit
0b64dc96df
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user