examples/msg/energy-ptask/energy-ptask
examples/msg/energy-vm/energy-vm
examples/msg/gtnets/gtnets
-examples/msg/io/file
-examples/msg/io/file_unlink
-examples/msg/io/remote
-examples/msg/io/storage
+examples/msg/io-file/io-file
+examples/msg/io-file-unlink/io-file-unlink
+examples/msg/io-remote/io-remote
+examples/msg/io-storage/io-storage
examples/msg/irc_isend/peer
examples/msg/irc_isend/toto.txt
examples/msg/masterslave/masterslave_arg
foreach(x actions-mpi actions-storage async-wait async-waitall async-waitany dht-chord dht-pastry
- exception energy-consumption energy-onoff energy-pstate energy-ptask energy-vm pmm priority process-kill
- process-migration process-suspend properties sendrecv set-maestro start_kill_time synchro token_ring)
+ exception energy-consumption energy-onoff energy-pstate energy-ptask energy-vm io-file io-file-unlink
+ io-remote io-storage pmm priority process-kill process-migration process-suspend properties sendrecv
+ set-maestro start_kill_time synchro token_ring)
add_executable (${x} ${x}/${x}.c)
target_link_libraries(${x} simgrid)
set_target_properties(${x} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/chord10.xml
${CMAKE_CURRENT_SOURCE_DIR}/dht-pastry/pastry10.xml
${CMAKE_CURRENT_SOURCE_DIR}/energy-onoff/platform_onoff.xml
+ ${CMAKE_CURRENT_SOURCE_DIR}/io-remote/io-remote_d.xml
${CMAKE_CURRENT_SOURCE_DIR}/priority/priority_d.xml
${CMAKE_CURRENT_SOURCE_DIR}/properties/properties_d.xml
${CMAKE_CURRENT_SOURCE_DIR}/sendrecv/sendrecv_d.xml
${CMAKE_CURRENT_SOURCE_DIR}/start_kill_time/start_d.xml
${CMAKE_CURRENT_SOURCE_DIR}/start_kill_time/start_kill_d.xml PARENT_SCOPE)
-foreach(x actions-mpi actions-storage async-wait async-waitall async-waitany dht-chord priority process-kill
- process-migration process-suspend properties sendrecv synchro start_kill_time token_ring)
+foreach(x actions-mpi actions-storage async-wait async-waitall async-waitany dht-chord io-file io-file-unlink io-remote
+ io-storage priority process-kill process-migration process-suspend properties sendrecv synchro start_kill_time
+ token_ring)
ADD_TESH_FACTORIES(msg-${x} "thread;ucontext;raw;boost" --setenv bindir=${CMAKE_BINARY_DIR}/examples/msg/${x} --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/platforms --cd ${CMAKE_HOME_DIRECTORY}/examples/msg/${x} ${x}.tesh)
endforeach()
#! ./tesh
-$ ${bindir:=.}/io/file_unlink ${srcdir:=.}/examples/platforms/storage/storage.xml "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n"
+$ ${bindir:=.}/io-file-unlink ${srcdir:=.}/storage/storage.xml "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n"
> [ 0.000000] (0:maestro@) Number of host '4'
> [ 0.000000] (1:0@denise) Open file '/home/doc/simgrid/examples/platforms/g5k.xml'
> [ 0.000000] (1:0@denise) Unlink file '/home/doc/simgrid/examples/platforms/g5k.xml'
#! ./tesh
-$ ${bindir:=.}/io/file ${srcdir:=.}/examples/platforms/storage/storage.xml "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n"
+$ ${bindir:=.}/io-file ${srcdir:=.}/storage/storage.xml "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n"
> [ 0.000000] (0:maestro@) Number of host '4'
> [ 0.000000] (2:1@alice) Open file 'c:\Windows\setupact.log'
> [ 0.000000] (3:2@carl) Open file '/home/doc/simgrid/examples/platforms/g5k_cabinets.xml'
#! ./tesh
-$ ${bindir:=.}/io/remote$EXEEXT ${srcdir:=.}/examples/platforms/storage/remote_io.xml ${srcdir:=.}/examples/msg/io/remote_io.deployment.xml "--log=root.fmt:[%10.6r]%e(%i@%5h)%e%m%n"
+$ ${bindir:=.}/io-remote$EXEEXT ${srcdir:=.}/storage/remote_io.xml ${srcdir:=.}/../msg/io-remote/io-remote_d.xml "--log=root.fmt:[%10.6r]%e(%i@%5h)%e%m%n"
> [ 0.000000] (0@ ) Init: 12 MiB used on 'Disk1'
> [ 0.000000] (0@ ) Init: 2280 MiB used on 'Disk2'
> [ 0.000000] (1@alice) Opened file 'c:\Windows\setupact.log'
#! ./tesh
-$ ${bindir:=.}/io/storage$EXEEXT ${srcdir:=.}/examples/platforms/storage/storage.xml "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n"
+$ ${bindir:=.}/io-storage$EXEEXT ${srcdir:=.}/storage/storage.xml "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n"
> [ 0.000000] (1:(null)@denise) *** Storage info on denise ***
> [ 0.000000] (1:(null)@denise) Storage name: Disk2, mount name: c:
> [ 0.000000] (1:(null)@denise) Total size: 536870912000 bytes
+++ /dev/null
-foreach (example file file_unlink storage remote)
- add_executable (${example} ${example}.c)
- target_link_libraries(${example} simgrid)
- set(examples_src ${examples_src} ${CMAKE_CURRENT_SOURCE_DIR}/${example}.c)
- set(tesh_files ${tesh_files} ${CMAKE_CURRENT_SOURCE_DIR}/${example}.tesh)
-
- ADD_TESH(msg-${example} --setenv bindir=${CMAKE_BINARY_DIR}/examples/msg/ --setenv srcdir=${CMAKE_HOME_DIRECTORY}/ --cd ${CMAKE_HOME_DIRECTORY}/examples/ ${CMAKE_HOME_DIRECTORY}/examples/msg/io/${example}.tesh)
-endforeach()
-
-set(examples_src ${examples_src} PARENT_SCOPE)
-set(tesh_files ${tesh_files} PARENT_SCOPE)
-set(xml_files ${xml_files} examples/msg/io/remote_io.deployment.xml PARENT_SCOPE)
examples/msg/cloud/CMakeLists.txt
examples/msg/dht-kademlia/CMakeLists.txt
examples/msg/gtnets/CMakeLists.txt
- examples/msg/io/CMakeLists.txt
examples/msg/masterslave/CMakeLists.txt
examples/msg/mc/CMakeLists.txt
examples/msg/ns3/CMakeLists.txt