mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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:
parent
dee149bfc4
commit
56951d947c
1
MANIFEST
1
MANIFEST
@ -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
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
@ -12,7 +12,8 @@
|
||||
****************************************************************************/
|
||||
|
||||
|
||||
#include "H5HL.h"
|
||||
|
||||
#include "H5IM.h"
|
||||
|
||||
#define FILE_NAME "test_image.h5"
|
||||
#define WIDTH (hsize_t)500
|
||||
|
@ -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"
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user