diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-05-31 18:46:04 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-05-31 18:46:04 (GMT) |
commit | 28b214719b3177dad6600c49be78a776bf64b08e (patch) | |
tree | eeb625bee26d96e613489b19d2242684ef669622 /test/cache_api.c | |
parent | 8bfe9e54bd23add27076290f59bdc09c3d3ee2bb (diff) | |
download | hdf5-28b214719b3177dad6600c49be78a776bf64b08e.zip hdf5-28b214719b3177dad6600c49be78a776bf64b08e.tar.gz hdf5-28b214719b3177dad6600c49be78a776bf64b08e.tar.bz2 |
[svn-r18927] Description:
Get down to just one "resize_configs_are_equal" comparison routine.
Tested on:
Mac OS X/32 10.6.3 (amazon)
(too minor to require h5committest)
Diffstat (limited to 'test/cache_api.c')
-rw-r--r-- | test/cache_api.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cache_api.c b/test/cache_api.c index 8ad3635..8fd2912 100644 --- a/test/cache_api.c +++ b/test/cache_api.c @@ -263,8 +263,8 @@ check_fapl_mdc_api_calls(void) /* conpare the cache's internal configuration with the expected value */ if ( pass ) { - if ( ! RESIZE_CONFIGS_ARE_EQUAL(default_auto_size_ctl, \ - cache_ptr->resize_ctl, TRUE) ) { + if ( ! resize_configs_are_equal(&default_auto_size_ctl, \ + &cache_ptr->resize_ctl, TRUE) ) { pass = FALSE; @@ -412,8 +412,8 @@ check_fapl_mdc_api_calls(void) /* conpare the cache's internal configuration with the expected value */ if ( pass ) { - if ( ! RESIZE_CONFIGS_ARE_EQUAL(mod_auto_size_ctl, \ - cache_ptr->resize_ctl, TRUE) ) { + if ( ! resize_configs_are_equal(&mod_auto_size_ctl, \ + &cache_ptr->resize_ctl, TRUE) ) { pass = FALSE; |