1
1

Skip this test if OMPI was compiled without thread support

This commit was SVN r5048.
Этот коммит содержится в:
Jeff Squyres 2005-03-27 11:52:09 +00:00
родитель 948d3709c1
Коммит fe9601cb51

Просмотреть файл

@ -8,6 +8,16 @@
static volatile int count = 0;
#if !OMPI_HAVE_THREAD_SUPPORT
int main(int argc, char *argv[])
{
printf("OMPI was compiled without thread support -- skipping this test\n");
return 77;
}
#else
static void* thr1_run(ompi_object_t* obj)
{
ompi_atomic_add(&count, 1);
@ -50,5 +60,4 @@ int main(int argc, char** argv)
return test_finalize();
}
#endif /* OMPI_HAVE_THREAD_SUPPORT */