Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
revamp the start_kill test to greatly improve the coverage
[simgrid.git] / examples / msg / start_kill_time / sk_time.c
1 /* Copyright (c) 2007, 2009-2010, 2012-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/msg.h"        /* Yeah! If you want to use msg, you need to include simgrid/msg.h */
8 #include "xbt/sysdep.h"         /* calloc */
9
10 /* Create a log channel to have nice outputs. */
11 #include "xbt/log.h"
12 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
13                              "Messages specific for this msg example");
14
15 static int my_onexit(void* ignored1, void *ignored2) {
16   XBT_INFO("Exiting now (done sleeping or got killed).");
17   return 0;
18 }
19
20 static int sleeper(int argc, char *argv[])
21 {
22   XBT_INFO("Hello! I go to sleep.");
23   MSG_process_on_exit(my_onexit, NULL);
24    
25   MSG_process_sleep(atoi(argv[1]));
26   XBT_INFO("Done sleeping.");
27   return 0;
28 }
29
30 /** Test function */
31 static msg_error_t test_all(const char *platform_file,
32                             const char *application_file)
33 {
34   msg_error_t res = MSG_OK;
35
36   MSG_create_environment(platform_file);
37   MSG_function_register("sleeper", sleeper);
38   MSG_launch_application(application_file);
39
40   res = MSG_main();
41
42   XBT_INFO("Simulation time %g", MSG_get_clock());
43   return res;
44 }                               /* end_of_test_all */
45
46
47 /** Main function */
48 int main(int argc, char *argv[])
49 {
50   msg_error_t res = MSG_OK;
51
52   MSG_init(&argc, argv);
53   if (argc < 3) {
54     XBT_CRITICAL("Usage: %s platform_file deployment_file\n", argv[0]);
55     XBT_CRITICAL("example: %s msg_platform.xml msg_deployment_suspend.xml\n",
56               argv[0]);
57     exit(1);
58   }
59   test_all(argv[1], argv[2]);
60
61   if (res == MSG_OK)
62     return 0;
63   else
64     return 1;
65 }                               /* end_of_main */