diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2003-06-10 04:03:58 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2003-06-10 04:03:58 (GMT) |
commit | ee38b91d18e8152662597b6ff605c23cde172e65 (patch) | |
tree | 8c5699dcd016d5722dbf4264d2c404a72c477eaa /c++/test/tfile.cpp | |
parent | 989fba31d4d7457f3d62ba0269e7296c73ec5405 (diff) | |
download | hdf5-ee38b91d18e8152662597b6ff605c23cde172e65.zip hdf5-ee38b91d18e8152662597b6ff605c23cde172e65.tar.gz hdf5-ee38b91d18e8152662597b6ff605c23cde172e65.tar.bz2 |
[svn-r7012] Purpose:
Text cleanup
Description:
Re-worded some informative and error messages.
Remove/Updated outdated comments.
Platforms:
Linux 2.4 (eirene)
IRIX 6.5.11 (modi4)
Diffstat (limited to 'c++/test/tfile.cpp')
-rw-r--r-- | c++/test/tfile.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/c++/test/tfile.cpp b/c++/test/tfile.cpp index 41c7f0b..82d7338 100644 --- a/c++/test/tfile.cpp +++ b/c++/test/tfile.cpp @@ -78,7 +78,7 @@ static void test_file_create(void) { /* Output message about test being performed */ - MESSAGE(5, ("Testing Low-Level File Creation I/O\n")); + MESSAGE(5, ("Testing File Creation I/O\n")); /* Test create with various sequences of H5F_ACC_EXCL and */ /* H5F_ACC_TRUNC flags */ @@ -274,7 +274,7 @@ static void test_file_open(void) { /* Output message about test being performed */ - MESSAGE(5, ("Testing Low-Level File Opening I/O\n")); + MESSAGE(5, ("Testing File Opening I/O\n")); try { @@ -282,7 +282,6 @@ test_file_open(void) H5File fid1 (FILE2, H5F_ACC_RDWR ); /* Get the file-creation template */ - //FileCreatPropList tmpl1; FileCreatPropList tmpl1 = fid1.getCreatePlist(); /* Get the file-creation parameters */ @@ -329,7 +328,7 @@ void test_file(void) { /* Output message about test being performed */ - MESSAGE(5, ("Testing Low-Level File I/O\n")); + MESSAGE(5, ("Testing File I/O operations\n")); test_file_create(); /* Test file creation (also creation templates) */ test_file_open(); /* Test file opening */ |