Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix expected output
[simgrid.git] / teshsuite / gras / empty_main / empty_main.c
1 /* $Id: gras.c 3859 2007-07-18 12:29:51Z donassbr $ */
2
3 /* empty_main.c -- check what happens when the processes do nothing         */
4 /* Thanks to Loris Marshal for reporting a problem in that case             */
5
6 /* Copyright (c) 2007 Martin Quinson.                                       */
7 /* All rights reserved.                                                     */
8
9 /* This program is free software; you can redistribute it and/or modify it
10  * under the terms of the license (GNU LGPL) which comes with this package. */
11
12
13 #include "gras.h"
14
15 int function (int argc,char *argv[]);
16
17 int function (int argc,char *argv[]) { 
18   gras_init(&argc,argv);
19   //  gras_os_sleep(3);
20   gras_exit();
21   return 0;
22
23
24