[svn-r10461]

Purpose:
Bug fix -- ensure that C++ packet table test cleans up its output file.

Platforms tested:
sleipnir (minor change)
This commit is contained in:
James Laird 2005-03-28 12:07:18 -05:00
parent 0639a0d474
commit 0faa9455fc

View File

@ -1,12 +1,14 @@
#include "ptableTest.h"
#define TEST_FILE "packettest.h5"
/* Main test function */
int main(void)
{
herr_t err;
/* Create new HDF5 file */
fileID = H5Fcreate("test.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
fileID = H5Fcreate(TEST_FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
if(fileID <0)
fprintf(stderr, "Couldn't open file.\n");
else {
@ -29,6 +31,9 @@ int main(void)
err = H5Fclose(fileID);
if( err < 0 )
fprintf(stderr, "Failed to close file.\n");
/* Delete the file */
remove(TEST_FILE);
}
}