CMakeLists.txt 3.9 KB
Newer Older
S
skylian 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
#
# 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.

L
Lei Wang 已提交
15
cmake_minimum_required(VERSION 3.0)
S
skylian 已提交
16 17 18 19

enable_testing()

option(WITH_TESTING "Include unit testing" ON)
B
Bo Zhou 已提交
20
option(IS_TESTING_SERIALLY "testing scripts that cannot run in parallel" OFF)
B
Bo Zhou 已提交
21 22 23
option(IS_TESTING_IMPORT "testing import parl" OFF)
option(IS_TESTING_DOCS "testing compling the docs" OFF)
option(IS_TESTING_GPU "testing GPU environment" OFF)
L
LI Yunxiang 已提交
24
option(IS_TESTING_TORCH "testing torch parts" OFF)
H
Hongsheng Zeng 已提交
25

H
Haonan 已提交
26
set(PADDLE_PYTHON_PATH "" CACHE STRING "Python path to PaddlePaddle Fluid")
S
skylian 已提交
27

B
Bo Zhou 已提交
28
function(py_test TARGET_NAME)
B
Bo Zhou 已提交
29 30 31
    set(options "")
    set(oneValueArgs "")
    set(multiValueArgs SRCS DEPS ARGS ENVS)
B
Bo Zhou 已提交
32
    cmake_parse_arguments(py_test "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
B
Bo Zhou 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46
    if (${FILE_NAME} MATCHES ".*abs_test.py")
        add_test(NAME ${TARGET_NAME}"_with_abs_path"
            COMMAND python -u ${py_test_SRCS} ${py_test_ARGS}
            WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
        set_tests_properties(${TARGET_NAME}"_with_abs_path" PROPERTIES TIMEOUT 300)
    else()
        get_filename_component(WORKING_DIR ${py_test_SRCS} DIRECTORY)
        get_filename_component(FILE_NAME ${py_test_SRCS} NAME)
        get_filename_component(COMBINED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/${WORKING_DIR} ABSOLUTE)
        add_test(NAME ${TARGET_NAME}
            COMMAND python -u ${FILE_NAME} ${py_test_ARGS}
            WORKING_DIRECTORY ${COMBINED_PATH})
        set_tests_properties(${TARGET_NAME} PROPERTIES TIMEOUT 300)
    endif()
S
skylian 已提交
47 48
endfunction()

H
Hongsheng Zeng 已提交
49 50 51 52 53
function(import_test TARGET_NAME)
    set(options "")
    set(oneValueArgs "")
    set(multiValueArgs SRCS DEPS ARGS ENVS)
    cmake_parse_arguments(py_test "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
54

H
Hongsheng Zeng 已提交
55
    add_test(NAME ${TARGET_NAME}_with_empty_env
B
Bo Zhou 已提交
56
        COMMAND /root/miniconda3/envs/empty_env/bin/python -u ${py_test_SRCS} ${py_test_ARGS}
H
Hongsheng Zeng 已提交
57
        WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
58 59 60 61 62 63 64

endfunction()

function(docs_test)
    add_test(NAME compling_docs_test
        COMMAND bash ./docs/test.sh
        WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
H
Hongsheng Zeng 已提交
65 66
endfunction()

H
Haonan 已提交
67
if (WITH_TESTING)
H
Hongsheng Zeng 已提交
68 69 70
    if (IS_TESTING_IMPORT)
        set(src "parl/tests/import_test")
        import_test(${src} SRCS ${src}.py ENVS ${PADDLE_PYTHON_PATH})
B
Bo Zhou 已提交
71
    elseif (IS_TESTING_DOCS)
72
        docs_test()
B
Bo Zhou 已提交
73 74 75 76 77 78
    elseif (IS_TESTING_SERIALLY)
        file(GLOB_RECURSE TEST_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*_test_alone.py")
        string(REPLACE ".py" "" TEST_OPS "${TEST_OPS}")
        foreach(src ${TEST_OPS})
            py_test(${src} SRCS ${src}.py ENVS ${PADDLE_PYTHON_PATH})
        endforeach()
L
LI Yunxiang 已提交
79 80 81 82 83 84
    elseif (IS_TESTING_TORCH)
      file(GLOB_RECURSE TEST_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*_test_torch.py")
      string(REPLACE ".py" "" TEST_OPS "${TEST_OPS}")
      foreach(src ${TEST_OPS})
          py_test(${src} SRCS ${src}.py ENVS ${PADDLE_PYTHON_PATH})
      endforeach()
H
Hongsheng Zeng 已提交
85 86 87 88
    else ()
        file(GLOB_RECURSE TEST_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*_test.py")
        string(REPLACE ".py" "" TEST_OPS "${TEST_OPS}")
        foreach(src ${TEST_OPS})
B
Bo Zhou 已提交
89 90
          if (${src} MATCHES ".*remote.*")
              if (NOT IS_TESTING_GPU)
B
Bo Zhou 已提交
91
                  py_test(${src} SRCS ${src}.py ENVS ${PADDLE_PYTHON_PATH})
B
Bo Zhou 已提交
92 93
              endif()
          else()
B
Bo Zhou 已提交
94
              py_test(${src} SRCS ${src}.py ENVS ${PADDLE_PYTHON_PATH})
B
Bo Zhou 已提交
95
          endif()
H
Hongsheng Zeng 已提交
96 97
        endforeach()
    endif()
H
Haonan 已提交
98
endif()