CMakeLists.txt 343 字节
Newer Older
D
Dang Qingqing 已提交
1 2 3 4
file(GLOB TEST_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "test_*.py")
string(REPLACE ".py" "" TEST_OPS "${TEST_OPS}")

foreach(src ${TEST_OPS})
Z
Zhang, Guoming 已提交
5
        py_test(${src} SRCS ${src}.py)
D
Dang Qingqing 已提交
6
endforeach()
Y
YUNSHEN XIE 已提交
7 8
set_tests_properties(test_image_classification_fp16 PROPERTIES TIMEOUT 120)
set_tests_properties(test_weight_decay_extend PROPERTIES TIMEOUT 120)