Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
convert trace-integration test
[simgrid.git] / teshsuite / s4u / trace-integration / trace-integration.cpp
1 /* Copyright (c) 2009-2020. 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/s4u.hpp"
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 void 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>",
15              argv[0]);
16
17   double task_comp_size = std::stod(argv[1]);
18   double task_prio      = std::stod(argv[2]);
19
20   XBT_INFO("Testing the trace integration cpu model: CpuTI");
21   XBT_INFO("Task size: %f", task_comp_size);
22   XBT_INFO("Task prio: %f", task_prio);
23
24   /* Create and execute a single task. */
25   simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(task_comp_size);
26   exec->set_priority(task_prio)->wait();
27   XBT_INFO("Test finished");
28 }
29
30 int main(int argc, char* argv[])
31 {
32   simgrid::s4u::Engine e(&argc, argv);
33   xbt_assert(argc > 2, "Usage: %s test_trace_integration_model.xml deployment.xml\n", argv[0]);
34
35   e.register_function("test_trace", test_trace);
36   e.load_platform(argv[1]);
37   e.load_deployment(argv[2]);
38   e.run();
39   return 0;
40 }