From: Frederic Suter Date: Fri, 20 Jul 2018 18:29:57 +0000 (+0200) Subject: fix comment in example X-Git-Tag: v3_21~374 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/796f0db8f54b52f6f18b9f74253f4e545384fce5?hp=e8faf8c3b8824e08cc40e0ae9b71b090c085ad60 fix comment in example --- diff --git a/examples/s4u/exec-remote/s4u-exec-remote.cpp b/examples/s4u/exec-remote/s4u-exec-remote.cpp index a119a8dc6e..2956dc076f 100644 --- a/examples/s4u/exec-remote/s4u-exec-remote.cpp +++ b/examples/s4u/exec-remote/s4u-exec-remote.cpp @@ -13,7 +13,7 @@ static void wizard() simgrid::s4u::Host* ginette = simgrid::s4u::Host::by_name("Ginette"); simgrid::s4u::Host* boivin = simgrid::s4u::Host::by_name("Boivin"); - XBT_INFO("I'm a wizard! I can run a task on the Fafard host from the Ginette one! Look!"); + XBT_INFO("I'm a wizard! I can run a task on the Ginette host from the Fafard one! Look!"); simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(48.492e6); exec->set_host(ginette); exec->start(); diff --git a/examples/s4u/exec-remote/s4u-exec-remote.tesh b/examples/s4u/exec-remote/s4u-exec-remote.tesh index 363fb20ae2..9164daaceb 100644 --- a/examples/s4u/exec-remote/s4u-exec-remote.tesh +++ b/examples/s4u/exec-remote/s4u-exec-remote.tesh @@ -2,7 +2,7 @@ ! output sort 19 $ $SG_TEST_EXENV ${bindir:=.}/s4u-exec-remote$EXEEXT ${platfdir}/small_platform.xml "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" -> [ 0.000000] (1:test@Fafard) I'm a wizard! I can run a task on the Fafard host from the Ginette one! Look! +> [ 0.000000] (1:test@Fafard) I'm a wizard! I can run a task on the Ginette host from the Fafard one! Look! > [ 0.000000] (1:test@Fafard) It started. Running 48.492Mf takes exactly one second on Ginette (but not on Fafard). > [ 0.100000] (1:test@Fafard) Loads in flops/s: Boivin=0; Fafard=0; Ginette=48492000 > [ 1.000000] (1:test@Fafard) Done!