diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-08-29 16:59:28 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-08-29 16:59:28 (GMT) |
commit | 3d526ab6cb594c656497fce7efe0589c0f840272 (patch) | |
tree | 147f28e7f94c60701a2374c0eb094749e11f6653 /test/tfile.c | |
parent | 9ada2de83a7a4038e4b3d0e500360eb38ee6ecaa (diff) | |
download | hdf5-3d526ab6cb594c656497fce7efe0589c0f840272.zip hdf5-3d526ab6cb594c656497fce7efe0589c0f840272.tar.gz hdf5-3d526ab6cb594c656497fce7efe0589c0f840272.tar.bz2 |
[svn-r51] ./test/tstab.c
./test/tohdr.c
./test/tmeta.c
./test/theap.c
./test/tfile.c
./test/testhdf5.h
./test/testhdf5.c
Changed the MESSAGE macro so it doesn't have a semicolon
inside the argument list and automatic indentation tools work
better.
Old call: MESSAGE (5, printfunc("foo%s %d", s, i););
New call: MESSAGE (5, ("foo%s %d", s, i));
The parentheses are required.
./test/tstab.c
Added more tests.
Diffstat (limited to 'test/tfile.c')
-rw-r--r-- | test/tfile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tfile.c b/test/tfile.c index e83424e..7fd1a3d 100644 --- a/test/tfile.c +++ b/test/tfile.c @@ -68,7 +68,7 @@ static void test_file_create(void) herr_t ret; /* Generic return value */ /* Output message about test being performed */ - MESSAGE(5, print_func("Testing Low-Level File Creation I/O\n");); + MESSAGE(5, ("Testing Low-Level File Creation I/O\n")); /* Create first file */ fid1=H5Fcreate(FILE1,H5ACC_OVERWRITE,0,0); @@ -247,7 +247,7 @@ static void test_file_open(void) herr_t ret; /* Generic return value */ /* Output message about test being performed */ - MESSAGE(5, print_func("Testing Low-Level File Opening I/O\n");); + MESSAGE(5, ("Testing Low-Level File Opening I/O\n")); /* Open second file */ fid1=H5Fopen(FILE2,H5ACC_WRITE,0); @@ -296,7 +296,7 @@ static void test_file_open(void) void test_file(void) { /* Output message about test being performed */ - MESSAGE(5, print_func("Testing Low-Level File I/O\n");); + MESSAGE(5, ("Testing Low-Level File I/O\n")); test_file_create(); /* Test file creation (also creation templates) */ test_file_open(); /* Test file opening */ |