/* Check the case where the file was flushed, but more data was added afterward.  This should give an error
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 * Programmer:  Robb Matzke <matzke@llnl.gov>
 *              Friday, October 23, 1998
 *
 * Purpose: This is the second half of a two-part test that makes sure
 *      that a file can be read after an application crashes as long
 *      as the file was flushed first.  This half tries to read the
 *      file created by the first half.
 */
#include "h5test.h"
const char *FILENAME[] = {
    "flush",
    "noflush",
    "noflush_extend",
    NULL
};
static double   the_data[100][100];
/*-------------------------------------------------------------------------
 * Function:    check_dset
 *
 * Purpose: Part 2 of a two-part H5Fflush() test, checks if the data in a dataset
 *      is what it is supposed to be.
 *
 * Return:  Success:    0
 *
 *      Failure:    1
 *
 * Programmer:  Leon Arber
 *              Oct. 4, 2006.
 *
 *-------------------------------------------------------------------------
 */
static int