Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add a flatifying test with a multicore cluster -- it's broken for now
[simgrid.git] / teshsuite / simix / check_defaults.c
1 /* check_defaults -- simple program displaying its context factory          */
2
3 /* Copyright (c) 2013-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "simgrid/simix.h"
10 #include "xbt/log.h"
11
12 int main(int argc, char *argv[])
13 {
14   xbt_log_control_set("root.fmt:[%c/%p]%e%m%n");
15   xbt_log_control_set("simix_context.threshold:verbose");
16   SIMIX_global_init(&argc, argv);
17   return 0;
18 }