Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add mpich3 test suite, to replace older one.
[simgrid.git] / teshsuite / smpi / mpich-test / pt2pt / test.h
1 /* Header for testing procedures */
2
3 #ifndef _INCLUDED_TEST_H_
4 #define _INCLUDED_TEST_H_
5
6 #include "mpi.h"
7
8 #if defined(NEEDS_STDLIB_PROTOTYPES)
9 #include "protofix.h"
10 #endif
11
12 void Test_Init (const char *, int);
13 #ifdef USE_STDARG
14 void Test_Printf (const char *, ...);
15 void Test_Errors_warn ( MPI_Comm *, int *, ... );
16 #else
17 /* No prototype */
18 void Test_Printf();
19 void Test_Errors_warn();
20 #endif
21 void Test_Message (const char *);
22 void Test_Failed (const char *);
23 void Test_Passed (const char *);
24 int Summarize_Test_Results (void);
25 void Test_Finalize (void);
26 void Test_Waitforall (void);
27
28 extern MPI_Errhandler TEST_ERRORS_WARN;
29 #endif