From: Arnaud Giersch Date: Thu, 6 Mar 2014 17:46:43 +0000 (+0100) Subject: Add more tests in msg-suspend. X-Git-Tag: v3_11~220^2~5 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/613cd4ffa7ffbfdd4f21bf7ecb6053daf666b95e Add more tests in msg-suspend. Test is failing for now as MSG_process_suspend is ignored while the process is sleeping. --- diff --git a/examples/msg/suspend/suspend.c b/examples/msg/suspend/suspend.c index 1ce043b7ca..b12fbf4a1e 100644 --- a/examples/msg/suspend/suspend.c +++ b/examples/msg/suspend/suspend.c @@ -12,6 +12,12 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example"); +#define SLEEP(duration) \ + if (MSG_process_sleep(duration) != MSG_OK) \ + xbt_die("What's going on??? I failed to sleep!"); \ + else \ + (void)0 + /** @addtogroup MSG_examples * * - suspend/suspend.c: Demonstrates how to suspend and resume processes using @ref MSG_process_suspend and @ref MSG_process_resume. @@ -23,6 +29,15 @@ static int lazy_guy(int argc, char *argv[]) XBT_INFO("Nobody's watching me ? Let's go to sleep."); MSG_process_suspend(MSG_process_self()); XBT_INFO("Uuuh ? Did somebody call me ?"); + + XBT_INFO("Going to sleep..."); + SLEEP(10.0); + XBT_INFO("Mmm... waking up."); + + XBT_INFO("Going to sleep one more time..."); + SLEEP(10.0); + XBT_INFO("Waking up once for all!"); + XBT_INFO("Mmmh, goodbye now."); return 0; } /* end_of_lazy_guy */ @@ -36,9 +51,26 @@ static int dream_master(int argc, char *argv[]) XBT_INFO("Let's create a lazy guy."); lazy = MSG_process_create("Lazy", lazy_guy, NULL, MSG_host_self()); XBT_INFO("Let's wait a little bit..."); - MSG_process_sleep(10.0); + SLEEP(10.0); XBT_INFO("Let's wake the lazy guy up! >:) BOOOOOUUUHHH!!!!"); MSG_process_resume(lazy); + + SLEEP(5.0); + XBT_INFO("Suspend the lazy guy while he's sleeping..."); + MSG_process_suspend(lazy); + XBT_INFO("Let him finish his siesta."); + SLEEP(10.0); + XBT_INFO("Wake up, lazy guy!"); + MSG_process_resume(lazy); + + SLEEP(5.0); + XBT_INFO("Suspend again the lazy guy while he's sleeping..."); + MSG_process_suspend(lazy); + XBT_INFO("This time, don't let him finish his siesta."); + SLEEP(2.0); + XBT_INFO("Wake up, lazy guy!"); + MSG_process_resume(lazy); + XBT_INFO("OK, goodbye now."); return 0; } /* end_of_dram_master */ diff --git a/examples/msg/suspend/suspend.tesh b/examples/msg/suspend/suspend.tesh index d6177b10d2..8a6014f7a1 100644 --- a/examples/msg/suspend/suspend.tesh +++ b/examples/msg/suspend/suspend.tesh @@ -7,8 +7,18 @@ $ $SG_TEST_EXENV suspend/suspend ${srcdir:=.}/msg_platform.xml ${srcdir:=.}/susp > [ 0.000000] (1:dream_master@Jacquelin) Let's create a lazy guy. > [ 0.000000] (1:dream_master@Jacquelin) Let's wait a little bit... > [ 0.000000] (2:Lazy@Jacquelin) Nobody's watching me ? Let's go to sleep. -> [ 10.000000] (0:@) Simulation time 10 > [ 10.000000] (1:dream_master@Jacquelin) Let's wake the lazy guy up! >:) BOOOOOUUUHHH!!!! -> [ 10.000000] (1:dream_master@Jacquelin) OK, goodbye now. > [ 10.000000] (2:Lazy@Jacquelin) Uuuh ? Did somebody call me ? -> [ 10.000000] (2:Lazy@Jacquelin) Mmmh, goodbye now. +> [ 10.000000] (2:Lazy@Jacquelin) Going to sleep... +> [ 15.000000] (1:dream_master@Jacquelin) Suspend the lazy guy while he's sleeping... +> [ 15.000000] (1:dream_master@Jacquelin) Let him finish his siesta. +> [ 25.000000] (1:dream_master@Jacquelin) Wake up, lazy guy! +> [ 25.000000] (2:Lazy@Jacquelin) Mmm... waking up. +> [ 25.000000] (2:Lazy@Jacquelin) Going to sleep one more time... +> [ 30.000000] (1:dream_master@Jacquelin) Suspend again the lazy guy while he's sleeping... +> [ 30.000000] (1:dream_master@Jacquelin) This time, don't let him finish his siesta. +> [ 32.000000] (1:dream_master@Jacquelin) Wake up, lazy guy! +> [ 32.000000] (1:dream_master@Jacquelin) OK, goodbye now. +> [ 35.000000] (0:@) Simulation time 35 +> [ 35.000000] (2:Lazy@Jacquelin) Waking up once for all! +> [ 35.000000] (2:Lazy@Jacquelin) Mmmh, goodbye now.