[svn-r3780] Purpose:

Update
Description:
    Changed

           #include <hdf5_file.h>

    to

           #include "hdf5_file.h"

     to be consistent with the new way of generating dependencies.
This commit is contained in:
Bill Wendling 2001-04-05 12:09:42 -05:00
parent d8bf299873
commit e8ee45fa53
6 changed files with 8 additions and 7 deletions

View File

@ -13,7 +13,7 @@
* only. Collective mode for extendible datasets are not supported yet.
*/
#include <testphdf5.h>
#include "testphdf5.h"
/*
* The following are various utility routines used by the tests.

View File

@ -4,7 +4,7 @@
* Parallel tests for file operations
*/
#include <testphdf5.h>
#include "testphdf5.h"
/*
* test file access by communicator besides COMM_WORLD.

View File

@ -1,4 +1,4 @@
#include <testphdf5.h>
#include "testphdf5.h"
#define DIM 2
#define SIZE 32

View File

@ -12,7 +12,7 @@
* Last process opens the same file and verifies the data.
*/
#include <testphdf5.h>
#include "testphdf5.h"
/* FILENAME and filenames must have the same number of names */
const char *FILENAME[2]={

View File

@ -4,7 +4,7 @@
* Main driver of the Parallel HDF5 tests
*/
#include <testphdf5.h>
#include "testphdf5.h"
#ifndef FILENAME_MAX
#define FILENAME_MAX 512

View File

@ -5,8 +5,9 @@
#include <assert.h>
#include <stdlib.h>
#include <hdf5.h>
#include <h5test.h>
#include "hdf5.h"
#include "h5test.h"
/* Define some handy debugging shorthands, routines, ... */
/* debugging tools */