mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[svn-r16423] bug fix: a open call was not made the expected FAPL
tested: windows, linux (split, sec2)
This commit is contained in:
parent
50fa98277d
commit
89f033b661
@ -122,7 +122,7 @@ int main( void )
|
|||||||
/* Close 2nd FAPL */
|
/* Close 2nd FAPL */
|
||||||
if(H5Pclose(fapl2) < 0) TEST_ERROR
|
if(H5Pclose(fapl2) < 0) TEST_ERROR
|
||||||
|
|
||||||
h5_cleanup(FILENAME, fapl);
|
/*h5_cleanup(FILENAME, fapl);*/
|
||||||
|
|
||||||
HDremove(EXT_FILE_NAME1);
|
HDremove(EXT_FILE_NAME1);
|
||||||
HDremove(EXT_FILE_NAME2);
|
HDremove(EXT_FILE_NAME2);
|
||||||
@ -605,7 +605,7 @@ static int test_rank1( hbool_t do_compress,
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((fid = H5Fopen( filename, H5F_ACC_RDWR, H5P_DEFAULT ))<0)
|
if ((fid = H5Fopen( filename, H5F_ACC_RDWR, fapl ))<0)
|
||||||
{
|
{
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
@ -928,11 +928,7 @@ static int test_rank2( hbool_t do_compress,
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* close property list */
|
|
||||||
if(H5Pclose(fcpl) < 0)
|
|
||||||
{
|
|
||||||
goto error;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* create the data space with unlimited dimensions. */
|
/* create the data space with unlimited dimensions. */
|
||||||
if ((sid = H5Screate_simple(RANK2, dims_o, maxdims)) < 0)
|
if ((sid = H5Screate_simple(RANK2, dims_o, maxdims)) < 0)
|
||||||
@ -1181,7 +1177,7 @@ static int test_rank2( hbool_t do_compress,
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((fid = H5Fopen( filename, H5F_ACC_RDWR, H5P_DEFAULT ))<0)
|
if ((fid = H5Fopen( filename, H5F_ACC_RDWR, fapl ))<0)
|
||||||
{
|
{
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
@ -1423,6 +1419,12 @@ static int test_rank2( hbool_t do_compress,
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* close file creation property list */
|
||||||
|
if(H5Pclose(fcpl) < 0)
|
||||||
|
{
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
|
|
||||||
if (H5Fclose( fid ) < 0)
|
if (H5Fclose( fid ) < 0)
|
||||||
{
|
{
|
||||||
goto error;
|
goto error;
|
||||||
@ -1760,7 +1762,7 @@ static int test_rank3( hbool_t do_compress,
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((fid = H5Fopen( filename, H5F_ACC_RDWR, H5P_DEFAULT ))<0)
|
if ((fid = H5Fopen( filename, H5F_ACC_RDWR, fapl ))<0)
|
||||||
{
|
{
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user