Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
first commit to add the mpich-test suite to smpi tesh suite. Obviously all tests...
[simgrid.git] / teshsuite / smpi / mpich-test / context / test.h
1 /* Header for testing procedures */
2
3 #ifndef _INCLUDED_TEST_H_
4 #define _INCLUDED_TEST_H_
5
6 #if defined(NEEDS_STDLIB_PROTOTYPES)
7 #include "protofix.h"
8 #endif
9
10 void Test_Init (const char *, int);
11 #ifdef USE_STDARG
12 void Test_Printf (const char *, ...);
13 #else
14 /* No prototype */
15 void Test_Printf();
16 #endif
17 void Test_Message (const char *);
18 void Test_Failed (const char *);
19 void Test_Passed (const char *);
20 int Summarize_Test_Results (void);
21 void Test_Finalize (void);
22 void Test_Waitforall (void);
23
24 #endif