2004-05-26 06:20:05 +04:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-05-26 06:20:05 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-10-20 05:03:09 +04:00
|
|
|
#include "ompi_config.h"
|
2004-05-26 06:20:05 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2004-10-20 05:03:09 +04:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
2004-05-26 06:20:05 +04:00
|
|
|
#include <sys/param.h>
|
2004-10-20 05:03:09 +04:00
|
|
|
#endif
|
2004-05-26 06:20:05 +04:00
|
|
|
|
2005-03-22 17:41:45 +03:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
printf("Test disabled - Does not compile.\n");
|
|
|
|
return 77;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
2004-05-26 06:20:05 +04:00
|
|
|
#include "util/sys_info.h"
|
2004-08-10 01:47:27 +04:00
|
|
|
#include "support.h"
|
2004-05-26 06:20:05 +04:00
|
|
|
|
|
|
|
static bool test1(void); /* verify it returns info */
|
|
|
|
static bool test2(void); /* test second time through */
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
|
2004-08-10 01:47:27 +04:00
|
|
|
test_init("ompi_sys_info_t");
|
2004-05-26 06:20:05 +04:00
|
|
|
|
|
|
|
if (test1()) {
|
2004-08-10 01:47:27 +04:00
|
|
|
test_success();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
test_failure("ompi_sys_info_t test1 failed");
|
2004-05-26 06:20:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (test2()) {
|
2004-08-10 01:47:27 +04:00
|
|
|
test_success();
|
2004-05-26 06:20:05 +04:00
|
|
|
}
|
2004-08-10 01:47:27 +04:00
|
|
|
else {
|
|
|
|
test_failure("ompi_sys_info_t test2 failed");
|
2004-05-26 06:20:05 +04:00
|
|
|
}
|
|
|
|
|
2004-08-10 01:47:27 +04:00
|
|
|
test_finalize();
|
|
|
|
return 0;
|
2004-05-26 06:20:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool test1(void)
|
|
|
|
{
|
|
|
|
/* Test trivial functionality. Program should return with init=true and all ptrs non-NULL */
|
|
|
|
|
|
|
|
ompi_sys_info();
|
|
|
|
if (ompi_system_info.init == false)
|
|
|
|
return(false);
|
|
|
|
|
|
|
|
if (ompi_system_info.sysname == NULL ||
|
|
|
|
ompi_system_info.nodename == NULL ||
|
|
|
|
ompi_system_info.release == NULL ||
|
|
|
|
ompi_system_info.version == NULL ||
|
|
|
|
ompi_system_info.machine == NULL ||
|
|
|
|
ompi_system_info.path_sep == NULL)
|
|
|
|
return(false);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool test2(void)
|
|
|
|
{
|
|
|
|
/* test it a second time. system should return without crashing and with init=true */
|
|
|
|
ompi_sys_info();
|
|
|
|
return(ompi_system_info.init);
|
|
|
|
}
|
2005-03-22 17:41:45 +03:00
|
|
|
#endif
|