X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3c1ebdb5d5e4370a0efd5f4c0dd4f7131fe8370..3356a5d7d4ab2de2e1454a42718319754bb3c68f:/teshsuite/msg/trace/test_trace_integration.c diff --git a/teshsuite/msg/trace/test_trace_integration.c b/teshsuite/msg/trace/test_trace_integration.c index 396dda20b8..135509bf5d 100644 --- a/teshsuite/msg/trace/test_trace_integration.c +++ b/teshsuite/msg/trace/test_trace_integration.c @@ -18,7 +18,7 @@ int test_trace(int argc, char *argv[]); /** test the trace integration cpu model */ int test_trace(int argc, char *argv[]) { - m_task_t task; + msg_task_t task; double task_comp_size = 2800; double task_prio = 1.0; @@ -50,7 +50,7 @@ int test_trace(int argc, char *argv[]) /** Main function */ int main(int argc, char *argv[]) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; /* Verify if the platform xml file was passed by command line. */ MSG_init(&argc, argv); @@ -67,8 +67,6 @@ int main(int argc, char *argv[]) /* Run the example. */ res = MSG_main(); - MSG_clean(); - if (res == MSG_OK) return 0; else