7eca186568
to opal_pointer_array. This commit was SVN r17023.
160 строки
4.1 KiB
C
160 строки
4.1 KiB
C
/* -*- Mode: C; c-basic-offset:4 ; -*- */
|
|
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2007 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
/*
|
|
* This test is intended to test the opal_pointer_array
|
|
* class
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
|
|
#include "support.h"
|
|
#include "opal/class/opal_pointer_array.h"
|
|
|
|
typedef union {
|
|
int ivalue;
|
|
char *cvalue;
|
|
} value_t;
|
|
|
|
static void test(bool thread_usage){
|
|
|
|
/* local variables */
|
|
opal_pointer_array_t *array;
|
|
value_t *test_data;
|
|
int len_test_data,i,test_len_in_array,error_cnt;
|
|
int ele_index;
|
|
int use_threads,error_code;
|
|
value_t value;
|
|
|
|
/* initialize thread levels */
|
|
use_threads=(int)opal_set_using_threads(thread_usage);
|
|
|
|
array=OBJ_NEW(opal_pointer_array_t);
|
|
assert(array);
|
|
|
|
len_test_data=5;
|
|
test_data=malloc(sizeof(value_t)*len_test_data);
|
|
assert(test_data);
|
|
|
|
for(i=0 ; i < len_test_data ; i++ ) {
|
|
test_data[i].ivalue = (i+1);
|
|
}
|
|
|
|
/* add data to table */
|
|
test_len_in_array=3;
|
|
assert(len_test_data>=test_len_in_array);
|
|
for(i=0 ; i < test_len_in_array ; i++ ) {
|
|
opal_pointer_array_add(array,test_data[i].cvalue);
|
|
}
|
|
/* check to see that test_len_in_array are in array */
|
|
if( (array->size - array->number_free) == test_len_in_array) {
|
|
test_success();
|
|
} else {
|
|
test_failure("check on number of elments in array");
|
|
}
|
|
|
|
/* check order of data */
|
|
error_cnt=0;
|
|
for(i=0 ; i < test_len_in_array ; i++ ) {
|
|
value.cvalue = array->addr[i];
|
|
if( (i+1) != value.ivalue ) {
|
|
error_cnt++;
|
|
}
|
|
}
|
|
if( 0 == error_cnt ) {
|
|
test_success();
|
|
} else {
|
|
test_failure(" data check ");
|
|
}
|
|
|
|
/* free 2nd element and make sure that value is reset correctly,
|
|
* and that the lowest_index is also reset correctly */
|
|
ele_index=1;
|
|
error_code=opal_pointer_array_set_item(array,ele_index,NULL);
|
|
if( 0 == error_code ) {
|
|
test_success();
|
|
} else {
|
|
test_failure(" opal_pointer_array_set_item ");
|
|
}
|
|
if( NULL == array->addr[ele_index]){
|
|
test_success();
|
|
} else {
|
|
test_failure(" set pointer value");
|
|
}
|
|
if( ele_index == array->lowest_free ) {
|
|
test_success();
|
|
} else {
|
|
test_failure(" lowest free ");
|
|
}
|
|
|
|
/* test opal_pointer_array_get_item */
|
|
array->number_free=array->size;
|
|
array->lowest_free=0;
|
|
for(i=0 ; i < array->size ; i++ ) {
|
|
array->addr[i] = NULL;
|
|
}
|
|
error_cnt=0;
|
|
for(i=0 ; i < array->size ; i++ ) {
|
|
value.ivalue = i + 2;
|
|
ele_index=opal_pointer_array_add(array, value.cvalue);
|
|
if( i != ele_index ) {
|
|
error_cnt++;
|
|
}
|
|
}
|
|
if( 0 == error_cnt ) {
|
|
test_success();
|
|
} else {
|
|
test_failure(" opal_pointer_array_add 2nd ");
|
|
}
|
|
|
|
error_cnt=0;
|
|
for(i=0 ; i < array->size ; i++ ) {
|
|
value.cvalue = opal_pointer_array_get_item(array,i);
|
|
if( (i+2) != value.ivalue ) {
|
|
error_cnt++;
|
|
}
|
|
}
|
|
if( 0 == error_cnt ) {
|
|
test_success();
|
|
} else {
|
|
test_failure(" data check - 2nd ");
|
|
}
|
|
|
|
free (array);
|
|
free(test_data);
|
|
}
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
test_init("opal_pointer_array");
|
|
|
|
/* run through tests with thread usage set to false */
|
|
test(false);
|
|
|
|
/* run through tests with thread usage set to true */
|
|
test(true);
|
|
|
|
return test_finalize();
|
|
}
|