[svn-r9562] Purpose:

bug fix

Description:
the Makefile.in of the hl tests was not including a "srcdir"  include path
the test table .c file was missing also the srcdir path


Solution:
add it

Platforms tested:

Misc. update:
This commit is contained in:
Pedro Vicente Nunes 2004-11-23 10:50:53 -05:00
parent dee149bfc4
commit 56951d947c
6 changed files with 42 additions and 33 deletions

View File

@ -1550,7 +1550,6 @@
./hl/Makefile.in
./hl/src/Dependencies
./hl/src/Makefile.in
./hl/src/H5HL.h
./hl/src/H5IM.c
./hl/src/H5IM.h
./hl/src/H5LT.c

View File

@ -1,25 +0,0 @@
/****************************************************************************
* NCSA HDF *
* Scientific Data Technologies *
* National Center for Supercomputing Applications *
* University of Illinois at Urbana-Champaign *
* 605 E. Springfield, Champaign IL 61820 *
* *
* For conditions of distribution and use, see the accompanying *
* hdf/COPYING file. *
* *
****************************************************************************/
#ifndef _H5HL_H
#define _H5HL_H
#include "H5LT.h"
#include "H5IM.h"
#include "H5TA.h"
#endif

View File

@ -11,7 +11,8 @@ srcdir=@srcdir@
## Add include directory to the C preprocessor flags and the h5test and hdf5
## libraries to the library list.
CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src @CPPFLAGS@
CPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/hl/src @CPPFLAGS@
## These are our main targets. They should be listed in the order to be
## executed, generally most specific tests to least specific tests.

View File

@ -12,7 +12,8 @@
****************************************************************************/
#include "H5HL.h"
#include "H5IM.h"
#define FILE_NAME "test_image.h5"
#define WIDTH (hsize_t)500

View File

@ -13,7 +13,9 @@
#include <stdlib.h>
#include "H5HL.h"
#include "H5LT.h"
#define FILE_NAME "test_lite1.h5"
#define FILE_NAME2 "test_lite2.h5"

View File

@ -11,7 +11,10 @@
* *
****************************************************************************/
#include "H5HL.h"
#include "H5TA.h"
#include <stdlib.h>
#include <assert.h>
@ -1443,6 +1446,10 @@ int main(void)
{
hid_t fid; /* identifier for the file */
unsigned flags=H5F_ACC_RDONLY;
char *srcdir = getenv("srcdir"); /* the source directory */
char data_file[512]=""; /* buffer to hold name of existing data file */
/*-------------------------------------------------------------------------
* test1: create a file for the write/read test
@ -1467,7 +1474,15 @@ int main(void)
*/
puts("Testing table with file open mode (read big-endian data):");
fid=h5file_open("test_table_be.hdf5",flags);
/* compose the name of the file to open, using the srcdir, if appropriate */
if ( srcdir )
{
strcpy(data_file, srcdir);
strcat(data_file, "/");
}
strcat( data_file, "test_table_be.hdf5");
fid=h5file_open(data_file,flags);
/* test, do not write */
if (test_table(fid,0)<0)
@ -1482,7 +1497,15 @@ int main(void)
*/
puts("Testing table with file open mode (read little-endian data):");
fid=h5file_open("test_table_le.hdf5",flags);
/* compose the name of the file to open, using the srcdir, if appropriate */
if ( srcdir )
{
strcpy(data_file, srcdir);
strcat(data_file, "/");
}
strcat( data_file, "test_table_le.hdf5");
fid=h5file_open(data_file,flags);
/* test, do not write */
if (test_table(fid,0)<0)
@ -1497,7 +1520,15 @@ int main(void)
*/
puts("Testing table with file open mode (read Cray data):");
fid=h5file_open("test_table_cray.hdf5",flags);
/* compose the name of the file to open, using the srcdir, if appropriate */
if ( srcdir )
{
strcpy(data_file, srcdir);
strcat(data_file, "/");
}
strcat( data_file, "test_table_cray.hdf5");
fid=h5file_open(data_file,flags);
/* test, do not write */
if (test_table(fid,0)<0)