update options for pip installation in README.md
[liba.git] / python / CMakeLists.txt
blobd5e779d9ca62fd6b6377b0ac35bf488b38e89de1
1 function(unittest source name)
2   set(ARGS)
4   foreach(arg ${ARGN})
5     get_filename_component(ext ${arg} EXT)
7     if(NOT ext OR IS_ABSOLUTE ${arg})
8       list(APPEND ARGS ${arg})
9     else()
10       list(APPEND ARGS ${CMAKE_CURRENT_BINARY_DIR}/${arg})
11     endif()
12   endforeach()
14   add_test(NAME py_${name} WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
15     COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_LIST_DIR}/test/${source}.py ${ARGS}
16   )
17   set_tests_properties(py_${name} PROPERTIES TIMEOUT 30)
18 endfunction()
20 unittest(a a a.log)
22 unittest(crc crc)
24 unittest(hpf hpf)
26 unittest(lpf lpf)
28 unittest(mf mf)
30 unittest(pid pid)
32 unittest(pid_fuzzy pid_fuzzy)
34 unittest(pid_neuro pid_neuro)
36 unittest(poly poly)
38 unittest(tf tf)
40 unittest(trajbell trajbell)
42 unittest(trajpoly3 trajpoly3)
44 unittest(trajpoly5 trajpoly5)
46 unittest(trajpoly7 trajpoly7)
48 unittest(trajtrap trajtrap)
50 unittest(version version)