1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/*
* Copyright (C) by Argonne National Laboratory
* See COPYRIGHT in top-level directory
*/
#include <stdio.h>
#include <mpi.h>
#include <string.h>
#include "mpitest.h"
int main(int argc, char *argv[])
{
int errorclass;
char errorstring[MPI_MAX_ERROR_STRING] = { 64, 0 };
int slen;
int errs = 0;
MTest_Init(&argc, &argv);
MPI_Add_error_class(&errorclass);
MPI_Error_string(errorclass, errorstring, &slen);
if (strncmp(errorstring, "", 1)) {
fprintf(stderr, "errorclass:%d errorstring:'%s' len:%d\n", errorclass, errorstring, slen);
errs++;
}
MTest_Finalize(errs);
return MTestReturnValue(errs);
}
|