CMakeLists.txt 1.45 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# ******************************************************************************
# Copyright 2017-2019 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ******************************************************************************

# Enable use of the lit tool that we build from MLIR repo.
18
set(LLVM_LIT ${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py)
19 20 21 22 23 24 25 26 27
set(LLVM_DEFAULT_EXTERNAL_LIT ${MLIR_TOOLS_DIR}/llvm-lit)

configure_lit_site_cfg(
    ${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
    ${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg.py
    MAIN_CONFIG
    ${CMAKE_CURRENT_SOURCE_DIR}/lit.cfg.py
    )

28 29 30
set(NGRAPH_MLIR_TEST_DEPENDS
    ngraph-opt
    )
31 32 33 34 35 36 37 38 39 40

add_lit_testsuite(check-mlir-lit "Running the nGraph MLIR regression tests"
    ${CMAKE_CURRENT_BINARY_DIR}
    DEPENDS ${NGRAPH_MLIR_TEST_DEPENDS}
    )
set_target_properties(check-mlir-lit PROPERTIES FOLDER "Tests")

add_lit_testsuites(NGRAPH_MLIR ${CMAKE_CURRENT_SOURCE_DIR}
    DEPENDS ${NGRAPH_MLIR_TEST_DEPS}
    )