Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix typos in warning
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Wed, 27 Feb 2019 08:15:11 +0000 (09:15 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Wed, 27 Feb 2019 08:15:11 +0000 (09:15 +0100)
examples/deprecated/msg/platform-failures/platform-failures.tesh
examples/s4u/platform-failures/s4u-platform-failures.tesh
src/surf/sg_platf.cpp

index 0dbaee5..9e36930 100644 (file)
@@ -5,7 +5,7 @@ p Testing a simple master/worker example application handling failures TCP cross
 ! output sort 19
 $ $SG_TEST_EXENV ${bindir:=.}/platform-failures$EXEEXT --log=xbt_cfg.thres:critical --log=no_loc ${platfdir}/small_platform_failures.xml ${srcdir}/../app-masterworker/app-masterworker_d.xml --cfg=path:${srcdir} --cfg=network/crosstraffic:0 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" --log=surf_cpu.t:verbose
 > [  0.000000] (0:maestro@) Cannot launch actor 'worker' on failed host 'Fafard'
-> [  0.000000] (0:maestro@) Deployment include some initially turned off Hosts, nevermind.
+> [  0.000000] (0:maestro@) Deployment includes some initially turned off Hosts ... nevermind.
 > [  0.000000] (1:master@Tremblay) Got 5 workers and 20 tasks to process
 > [  0.000000] (1:master@Tremblay) Send a message to worker-0
 > [  0.010309] (1:master@Tremblay) Send to worker-0 completed
@@ -113,7 +113,7 @@ p Testing a simple master/worker example application handling failures. TCP cros
 ! output sort 19
 $ $SG_TEST_EXENV ${bindir:=.}/platform-failures$EXEEXT --log=xbt_cfg.thres:critical --log=no_loc ${platfdir}/small_platform_failures.xml ${srcdir}/../app-masterworker/app-masterworker_d.xml --cfg=path:${srcdir} "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" --log=surf_cpu.t:verbose
 > [  0.000000] (0:maestro@) Cannot launch actor 'worker' on failed host 'Fafard'
-> [  0.000000] (0:maestro@) Deployment include some initially turned off Hosts, nevermind.
+> [  0.000000] (0:maestro@) Deployment includes some initially turned off Hosts ... nevermind.
 > [  0.000000] (1:master@Tremblay) Got 5 workers and 20 tasks to process
 > [  0.000000] (1:master@Tremblay) Send a message to worker-0
 > [  0.000000] (2:worker@Tremblay) Waiting a message on worker-0
index cf6ff66..007a7c1 100644 (file)
@@ -5,7 +5,7 @@ p Testing a simple master/worker example application handling failures TCP cross
 ! output sort 19
 $ $SG_TEST_EXENV ${bindir:=.}/s4u-platform-failures$EXEEXT --log=xbt_cfg.thres:critical --log=no_loc ${platfdir}/small_platform_failures.xml ${srcdir:=.}/s4u-platform-failures_d.xml --cfg=path:${srcdir} --cfg=network/crosstraffic:0 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" --log=surf_cpu.t:verbose
 > [  0.000000] (0:maestro@) Cannot launch actor 'worker' on failed host 'Fafard'
-> [  0.000000] (0:maestro@) Deployment include some initially turned off Hosts, nevermind.
+> [  0.000000] (0:maestro@) Deployment includes some initially turned off Hosts ... nevermind.
 > [  0.000000] (1:master@Tremblay) Got 5 workers and 20 tasks to process
 > [  0.000000] (1:master@Tremblay) Send a message to worker-0
 > [  0.010309] (1:master@Tremblay) Send to worker-0 completed
@@ -113,7 +113,7 @@ p Testing a simple master/worker example application handling failures. TCP cros
 ! output sort 19
 $ $SG_TEST_EXENV ${bindir:=.}/s4u-platform-failures$EXEEXT --log=xbt_cfg.thres:critical --log=no_loc ${platfdir}/small_platform_failures.xml ${srcdir:=.}/s4u-platform-failures_d.xml --cfg=path:${srcdir} "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" --log=surf_cpu.t:verbose
 > [  0.000000] (0:maestro@) Cannot launch actor 'worker' on failed host 'Fafard'
-> [  0.000000] (0:maestro@) Deployment include some initially turned off Hosts, nevermind.
+> [  0.000000] (0:maestro@) Deployment includes some initially turned off Hosts ... nevermind.
 > [  0.000000] (1:master@Tremblay) Got 5 workers and 20 tasks to process
 > [  0.000000] (1:master@Tremblay) Send a message to worker-0
 > [  0.000000] (2:worker@Tremblay) Waiting a message on worker-0
index 7d09fa5..e3379c9 100644 (file)
@@ -469,7 +469,7 @@ void sg_platf_new_actor(simgrid::kernel::routing::ActorCreationArgs* actor)
       actor = simgrid::kernel::actor::ActorImpl::create(arg->name.c_str(), std::move(code), nullptr, host,
                                                         arg->properties.get(), nullptr);
     } catch (simgrid::HostFailureException const&) {
-      XBT_WARN("Deployment include some initially turned off Hosts, nevermind.");
+      XBT_WARN("Deployment includes some initially turned off Hosts ... nevermind.");
     }
     /* The actor creation will fail if the host is currently dead, but that's fine */
     if (actor != nullptr) {