Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / teshsuite / msg / trace_integration / trace_integration.c
1 /* Copyright (c) 2009-2019. 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"
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(test_trace_integration, "Messages specific for this msg example");
10
11 /** test the trace integration cpu model */
12 static int test_trace(int argc, char *argv[])
13 {
14   xbt_assert (argc == 3,"Wrong number of arguments!\nUsage: %s <task computational size in FLOPS> <task priority>", argv[0]);
15
16   double task_comp_size = xbt_str_parse_double(argv[1], "Invalid computational size: %s");
17   double task_prio      = xbt_str_parse_double(argv[2], "Invalid task priority: %s");
18
19   XBT_INFO("Testing the trace integration cpu model: CpuTI");
20   XBT_INFO("Task size: %f", task_comp_size);
21   XBT_INFO("Task prio: %f", task_prio);
22
23   /* Create and execute a single task. */
24   msg_task_t task = MSG_task_create("proc 0", task_comp_size, 0, NULL);
25   MSG_task_set_priority(task, task_prio);
26   MSG_task_execute(task);
27   MSG_task_destroy(task);
28
29   XBT_INFO("Test finished");
30
31   return 0;
32 }
33
34 int main(int argc, char *argv[])
35 {
36   MSG_init(&argc, argv);
37   xbt_assert(argc > 2, "Usage: %s test_trace_integration_model.xml deployment.xml\n", argv[0]);
38
39   MSG_function_register("test_trace", test_trace);
40   MSG_create_environment(argv[1]);
41   MSG_launch_application(argv[2]);
42
43   return MSG_main() != MSG_OK;
44 }