h5hltest.h

00001 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
00002  * Copyright by The HDF Group.                                               *
00003  * Copyright by the Board of Trustees of the University of Illinois.         *
00004  * All rights reserved.                                                      *
00005  *                                                                           *
00006  * This file is part of HDF5.  The full HDF5 copyright notice, including     *
00007  * terms governing use, modification, and redistribution, is contained in    *
00008  * the files COPYING and Copyright.html.  COPYING can be found at the root   *
00009  * of the source code distribution tree; Copyright.html can be found at the  *
00010  * root level of an installed copy of the electronic HDF5 document set and   *
00011  * is linked from the top-level documents page.  It can also be found at     *
00012  * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
00013  * access to either file, you may request a copy from help@hdfgroup.org.     *
00014  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
00015 
00016 /*
00017  * Programmer:  Quincey Koziol <koziol@ncsa.uiuc.edu>
00018  *              Friday, April 28, 2006
00019  *
00020  * Purpose:     Test support stuff.
00021  */
00022 
00023 #ifndef _H5HLTEST_H
00024 #define _H5HLTEST_H
00025 
00026 /* Get the HDF5 public header */
00027 #include "hdf5.h"
00028 
00029 /* Get the HDF5 test header */
00030 #include "h5test.h"
00031 
00032 /* Include the High-Level private header */
00033 #include "H5HLprivate2.h"
00034 
00035 /* Macros used in HL tests */
00036 #define TESTING2(WHAT)  {printf("%-70s", "Testing     " WHAT); fflush(stdout);}
00037 #define TESTING3(WHAT)  {printf("%-70s", "" WHAT); fflush(stdout);}
00038 
00039 #endif /* _H5HLTEST_H */
00040