Skip to content

Commit ecfac6c

Browse files
committed
[Kaleidoscope] Re-enable Kaleidoscope tests.
These were disabled in r246267 (back in 2015). I suspect that the Win32 issues that caused them to be disabled at the time have been resovlved, but if not we can disable them again while we sort those out. llvm-svn: 354630
1 parent 45eea20 commit ecfac6c

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

llvm/test/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ llvm_canonicalize_cmake_booleans(
1212
LLVM_LINK_LLVM_DYLIB
1313
LLVM_TOOL_LTO_BUILD
1414
LLVM_USE_INTEL_JITEVENTS
15+
LLVM_BUILD_EXAMPLES
1516
)
1617

1718
configure_lit_site_cfg(

llvm/test/Examples/lit.local.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
config.unsupported = True
1+
if not config.build_examples:
2+
config.unsupported = True

llvm/test/lit.site.cfg.py.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ config.have_zlib = @HAVE_LIBZ@
3636
config.have_libxar = @HAVE_LIBXAR@
3737
config.have_dia_sdk = @LLVM_ENABLE_DIA_SDK@
3838
config.enable_ffi = @LLVM_ENABLE_FFI@
39+
config.build_examples = @LLVM_BUILD_EXAMPLES@
3940
config.enable_threads = @LLVM_ENABLE_THREADS@
4041
config.build_shared_libs = @BUILD_SHARED_LIBS@
4142
config.link_llvm_dylib = @LLVM_LINK_LLVM_DYLIB@

0 commit comments

Comments
 (0)