2004-05-26 02:20:05 +00:00
|
|
|
/*
|
2004-11-22 01:38:40 +00: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 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-05-26 02:20:05 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-10-20 01:03:09 +00:00
|
|
|
#include "ompi_config.h"
|
2004-05-26 02:20:05 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2004-10-20 01:03:09 +00:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
2004-05-26 02:20:05 +00:00
|
|
|
#include <sys/param.h>
|
2004-10-20 01:03:09 +00:00
|
|
|
#endif
|
2004-05-26 02:20:05 +00:00
|
|
|
|
|
|
|
#include "util/sys_info.h"
|
2004-08-09 21:47:27 +00:00
|
|
|
#include "support.h"
|
2004-05-26 02:20:05 +00:00
|
|
|
|
|
|
|
static bool test1(void); /* verify it returns info */
|
|
|
|
static bool test2(void); /* test second time through */
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
|
2005-03-29 19:58:32 +00:00
|
|
|
test_init("orte_sys_info_t");
|
2004-05-26 02:20:05 +00:00
|
|
|
|
|
|
|
if (test1()) {
|
2004-08-09 21:47:27 +00:00
|
|
|
test_success();
|
|
|
|
}
|
|
|
|
else {
|
2005-03-29 19:58:32 +00:00
|
|
|
test_failure("orte_sys_info_t test1 failed");
|
2004-05-26 02:20:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (test2()) {
|
2004-08-09 21:47:27 +00:00
|
|
|
test_success();
|
2004-05-26 02:20:05 +00:00
|
|
|
}
|
2004-08-09 21:47:27 +00:00
|
|
|
else {
|
2005-03-29 19:58:32 +00:00
|
|
|
test_failure("orte_sys_info_t test2 failed");
|
2004-05-26 02:20:05 +00:00
|
|
|
}
|
|
|
|
|
2004-08-09 21:47:27 +00:00
|
|
|
test_finalize();
|
|
|
|
return 0;
|
2004-05-26 02:20:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool test1(void)
|
|
|
|
{
|
|
|
|
/* Test trivial functionality. Program should return with init=true and all ptrs non-NULL */
|
|
|
|
|
2005-03-29 19:58:32 +00:00
|
|
|
orte_sys_info();
|
|
|
|
if (orte_system_info.init == false)
|
2004-05-26 02:20:05 +00:00
|
|
|
return(false);
|
|
|
|
|
2005-03-29 19:58:32 +00:00
|
|
|
if (orte_system_info.sysname == NULL ||
|
|
|
|
orte_system_info.nodename == NULL ||
|
|
|
|
orte_system_info.release == NULL ||
|
|
|
|
orte_system_info.version == NULL ||
|
|
|
|
orte_system_info.machine == NULL ||
|
|
|
|
orte_system_info.user == NULL ||
|
|
|
|
orte_system_info.path_sep == NULL)
|
2004-05-26 02:20:05 +00:00
|
|
|
return(false);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool test2(void)
|
|
|
|
{
|
|
|
|
/* test it a second time. system should return without crashing and with init=true */
|
2005-03-29 19:58:32 +00:00
|
|
|
orte_sys_info();
|
|
|
|
return(orte_system_info.init);
|
2004-05-26 02:20:05 +00:00
|
|
|
}
|