mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-23 17:48:03 +00:00
6725a83e84
llgoi is a Go REPL based on llgo irgen and the LLVM JIT. It supports expressions, statements, most declarations and imports, including binary imports from the standard library and source imports from $GOPATH. Differential Revision: http://reviews.llvm.org/D6957 llvm-svn: 226097
17 lines
348 B
CMake
17 lines
348 B
CMake
configure_lit_site_cfg(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
|
|
)
|
|
|
|
add_lit_testsuite(check-llgo "Running the llgo regression tests"
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
DEPENDS
|
|
FileCheck
|
|
count
|
|
llgo
|
|
llgoi
|
|
libgo
|
|
not
|
|
)
|
|
set_target_properties(check-llgo PROPERTIES FOLDER "Tests")
|