Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove older mpich test suite
[simgrid.git] / teshsuite / smpi / mpich-test / pt2pt / test.c
diff --git a/teshsuite/smpi/mpich-test/pt2pt/test.c b/teshsuite/smpi/mpich-test/pt2pt/test.c
deleted file mode 100644 (file)
index c9d7f28..0000000
+++ /dev/null
@@ -1,162 +0,0 @@
-/* Procedures for recording and printing test results */
-
-#include <stdio.h>
-#include <string.h>
-#include "test.h"
-
-#if defined(USE_STDARG)
-#include <stdarg.h>
-#endif
-
-static int tests_passed = 0;
-static int tests_failed = 0;
-static char failed_tests[255][81];
-static char suite_name[255];
-FILE *fileout = NULL;
-
-void Test_Init(const char *suite, int rank)
-{
-    char filename[512];
-
-    sprintf(filename, "%s-%d.out", suite, rank);
-    strncpy(suite_name, suite, 255);
-    fileout = fopen(filename, "w");
-    if (!fileout) {
-       fprintf( stderr, "Could not open %s on node %d\n", filename, rank );
-       MPI_Abort( MPI_COMM_WORLD, 1 );
-    }
-
-    //MPI_Errhandler_create( Test_Errors_warn, &TEST_ERRORS_WARN );
-}
-
-void Test_Message(const char *mess)
-{
-    fprintf(fileout, "[%s]: %s\n", suite_name, mess);
-    fflush(fileout);
-}
-
-void Test_Failed(const char *test)
-{
-    fprintf(fileout, "[%s]: *** Test '%s' Failed! ***\n", suite_name, test);
-    strncpy(failed_tests[tests_failed], test, 81);
-    fflush(fileout);
-    tests_failed++;
-}
-
-void Test_Passed(const char *test)
-{
-#ifdef VERBOSE
-    fprintf(fileout, "[%s]: Test '%s' Passed.\n", suite_name, test);
-    fflush(fileout);
-#endif
-    tests_passed++;
-}
-
-int Summarize_Test_Results()
-{
-#ifdef VERBOSE
-    fprintf(fileout, "For test suite '%s':\n", suite_name);
-#else
-    if (tests_failed > 0)
-#endif
-    {
-       fprintf(fileout, "Of %d attempted tests, %d passed, %d failed.\n", 
-               tests_passed + tests_failed, tests_passed, tests_failed);
-    }
-    if (tests_failed > 0) {
-       int i;
-
-       fprintf(fileout, "*** Tests Failed:\n");
-       for (i = 0; i < tests_failed; i++)
-           fprintf(fileout, "*** %s\n", failed_tests[i]);
-    }
-    return tests_failed;
-}
-
-void Test_Finalize( void )
-{
-    //if (TEST_ERRORS_WARN != MPI_ERRHANDLER_NULL) 
-       //MPI_Errhandler_free( &TEST_ERRORS_WARN );
-    if (fileout) {
-       fflush(fileout);
-       //fclose(fileout);
-    }
-}
-
-#include "mpi.h"
-/* Wait for every process to pass through this point.  This test is used
-   to make sure that all processes complete, and that a test "passes" because
-   it executed, not because it some process failed.  
- */
-void Test_Waitforall( void )
-{
-    int m, one, myrank, n;
-
-    MPI_Comm_rank( MPI_COMM_WORLD, &myrank );
-    MPI_Comm_size( MPI_COMM_WORLD, &n );
-    one = 1;
-    MPI_Allreduce( &one, &m, 1, MPI_INT, MPI_SUM, MPI_COMM_WORLD );
-
-    if (m != n) {
-       printf( "[%d] Expected %d processes to wait at end, got %d\n", myrank, 
-               n, m );
-    }
-    if (myrank == 0) 
-       printf( " No Errors\n" );
-}
-
-/*
-   Handler prints warning messsage and returns.  Internal.  Not
-   a part of the standard.
- */
-MPI_Errhandler TEST_ERRORS_WARN ;
-
-#ifdef USE_STDARG
-void Test_Errors_warn(  MPI_Comm *comm, int *code, ... )
-{  
-  char buf[MPI_MAX_ERROR_STRING];
-  int  myid; 
-  char *string;
-#ifdef MPIR_DEBUG
-  char *file;
-  int  *line;
-#endif
-  static int in_handler = 0;
-  va_list Argp;
-
-#ifdef USE_OLDSTYLE_STDARG
-  va_start( Argp );
-#else
-  va_start( Argp, code );
-#endif
-  string = va_arg(Argp,char *);
-#ifdef MPIR_DEBUG
-  /* These are only needed for debugging output */
-  file   = va_arg(Argp,char *);
-  line   = va_arg(Argp,int *);
-#endif
-  va_end( Argp );
-#else
-void Test_Errors_warn( MPI_Comm *comm, int *code, char *string, char *file, 
-                      int *line )
-{
-  char buf[MPI_MAX_ERROR_STRING];
-  int  myid, result_len; 
-  static int in_handler = 0;
-#endif
-
-  if (in_handler) return;
-  in_handler = 1;
-
-  MPI_Comm_rank( MPI_COMM_WORLD, &myid );
-  //MPI_Error_string( *code, buf, &result_len );
-#ifdef MPIR_DEBUG
-  /* Generate this information ONLY when debugging MPIR */
-  fprintf( stderr, "%d -  File: %s   Line: %d\n", myid, 
-                  file, *line );
-#endif
-  fprintf( stderr, "%d - %s : %s\n", myid, 
-          string ? string : "<NO ERROR MESSAGE>", buf );
-  fflush( stderr );
-  in_handler = 0;
-}