Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix duplicated entries.
[simgrid.git] / teshsuite / s4u / CMakeLists.txt
1 foreach(x actor actor-autorestart actor-migration
2         activity-lifecycle
3         comm-pt2pt
4         cloud-interrupt-migration cloud-sharing
5         concurrent_rw storage_client_server listen_async pid )
6   add_executable       (${x}  EXCLUDE_FROM_ALL ${x}/${x}.cpp)
7   target_link_libraries(${x}  simgrid)
8   set_target_properties(${x}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
9   add_dependencies(tests ${x})
10
11   set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.cpp)
12 endforeach()
13
14 ## Add the tests.
15 ## Some need to be run with all factories, some need not tesh to run
16 foreach(x actor actor-autorestart actor-migration 
17         activity-lifecycle
18         cloud-interrupt-migration concurrent_rw) # TODO: actor-autorestart is disabled for now
19   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
20   ADD_TESH_FACTORIES(tesh-s4u-${x} "thread;ucontext;raw;boost" --setenv bindir=${CMAKE_BINARY_DIR}/teshsuite/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)
21 endforeach()
22
23 foreach(x listen_async pid storage_client_server cloud-sharing)
24   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
25   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)
26 endforeach()
27
28 # The output is not relevant
29 ADD_TEST(tesh-s4u-comm-pt2pt    ${CMAKE_BINARY_DIR}/teshsuite/s4u/comm-pt2pt/comm-pt2pt    ${CMAKE_HOME_DIRECTORY}/examples/platforms/cluster_backbone.xml)
30
31
32
33 set(teshsuite_src ${teshsuite_src}  PARENT_SCOPE)
34 set(tesh_files    ${tesh_files}     PARENT_SCOPE)
35 set(xml_files     ${xml_files}      ${CMAKE_CURRENT_SOURCE_DIR}/activity-lifecycle/testing_platform.xml PARENT_SCOPE)