Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of github.com:simgrid/simgrid
[simgrid.git] / teshsuite / s4u / CMakeLists.txt
1 foreach(x actor actor-autorestart actor-migration
2         activity-lifecycle
3         comm-pt2pt
4         cloud-interrupt-migration
5         concurrent_rw storage_client_server listen_async pid )
6   add_executable       (${x}  ${x}/${x}.cpp)
7   target_link_libraries(${x}  simgrid)
8   set_target_properties(${x}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
9
10   set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.cpp)
11 endforeach()
12
13 ## Add the tests.
14 ## Some need to be run with all factories, some need not tesh to run
15 foreach(x actor actor-autorestart actor-migration 
16         activity-lifecycle
17         cloud-interrupt-migration concurrent_rw) # TODO: actor-autorestart is disabled for now
18   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
19   ADD_TESH_FACTORIES(tesh-s4u-${x} "thread;ucontext;raw;boost" --setenv srcdir=${CMAKE_HOME_DIRECTORY}/teshsuite/s4u/${x} --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms --cd ${CMAKE_BINARY_DIR}/teshsuite/s4u/${x} ${CMAKE_HOME_DIRECTORY}/teshsuite/s4u/${x}/${x}.tesh)
20 endforeach()
21
22 # Manually add this file, but the test is broken and must be disabled for now (TODO)
23 set(tesh_files    ${tesh_files} ${CMAKE_CURRENT_SOURCE_DIR}/actor-autorestart/actor-autorestart.tesh)
24
25
26 foreach(x listen_async pid storage_client_server)
27   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
28   ADD_TESH(tesh-s4u-${x} --setenv srcdir=${CMAKE_HOME_DIRECTORY}/teshsuite/s4u/${x} --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms --cd ${CMAKE_BINARY_DIR}/teshsuite/s4u/${x} ${CMAKE_HOME_DIRECTORY}/teshsuite/s4u/${x}/${x}.tesh)
29 endforeach()
30
31 # The output is not relevant
32 ADD_TEST(tesh-s4u-comm-pt2pt    ${CMAKE_BINARY_DIR}/teshsuite/s4u/comm-pt2pt/comm-pt2pt    ${CMAKE_HOME_DIRECTORY}/examples/platforms/cluster_backbone.xml)
33
34
35
36 set(teshsuite_src ${teshsuite_src}  PARENT_SCOPE)
37 set(tesh_files    ${tesh_files}     PARENT_SCOPE)
38 set(xml_files     ${xml_files}      ${CMAKE_CURRENT_SOURCE_DIR}/activity-lifecycle/testing_platform.xml PARENT_SCOPE)