diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-08-09 16:47:25 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-08-09 16:47:25 (GMT) |
commit | bae16b355d04b0c25bca728cb19b3a998501663b (patch) | |
tree | 2414187c958e76914a434e8e0aab0faff4214b78 /test/testhdf5.h | |
parent | a260c7849c1ca59bd32cde9d12380e89afd70770 (diff) | |
download | hdf5-bae16b355d04b0c25bca728cb19b3a998501663b.zip hdf5-bae16b355d04b0c25bca728cb19b3a998501663b.tar.gz hdf5-bae16b355d04b0c25bca728cb19b3a998501663b.tar.bz2 |
[svn-r18] ./src/hdf5plat.h
Added defn for int64 and uint64 on irix. It seems to be
wrong, but at least things compile and run. This file will go
away with autoconf anyway.
./test/testhdf5.c
./test/Makefile
Added tstab.c
./test/testhdf5.h
Added tstab.c
Fixed bugs with CHECK_I() and CHECK_PTR().
Diffstat (limited to 'test/testhdf5.h')
-rw-r--r-- | test/testhdf5.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/test/testhdf5.h b/test/testhdf5.h index 63ea109..ae83311 100644 --- a/test/testhdf5.h +++ b/test/testhdf5.h @@ -48,23 +48,23 @@ if(ret == val) {print_func("*** UNEXPECTED RETURN from %s is %ld at line %4d in if (Verbosity>9) { \ print_func(" Call to routine: %15s at line %4d in %s returned %ld\n", \ (where), (int)__LINE__, __FILE__, (long)(ret)); \ - if ((ret)<0) { \ - print_func ("*** UNEXPECTED RETURN from %s is %ld line %4d in %s\n", \ - (where), (long)(ret), (int)__LINE__, __FILE__); \ - num_errs++; \ - } \ + } \ + if ((ret)<0) { \ + print_func ("*** UNEXPECTED RETURN from %s is %ld line %4d in %s\n", \ + (where), (long)(ret), (int)__LINE__, __FILE__); \ + num_errs++; \ } \ } #define CHECK_PTR(ret,where) { \ if (Verbosity>9) { \ print_func(" Call to routine: %15s at line %4d in %s returned %p\n", \ - (where), (int)__LINE__, __FILE__, (ret)); \ - if (!(ret)) { \ - print_func ("*** UNEXPECTED RETURN from %s is NULL line %4d in %s\n",\ - (where), (int)__LINE__, __FILE__); \ - num_errs++; \ - } \ + (where), (int)__LINE__, __FILE__, (ret)); \ + } \ + if (!(ret)) { \ + print_func ("*** UNEXPECTED RETURN from %s is NULL line %4d in %s\n", \ + (where), (int)__LINE__, __FILE__); \ + num_errs++; \ } \ } @@ -111,6 +111,7 @@ void test_metadata(void); void test_file(void); void test_heap (void); void test_ohdr (void); +void test_stab (void); #endif /* HDF5TEST_H */ |