diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-08-10 13:25:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-08-10 13:25:19 (GMT) |
commit | d9a305afb76ca86ba0cdbeed689ef8e82d3a14a3 (patch) | |
tree | 180198682a7fd3c30b562a5218028d25b782b509 /test | |
parent | c756d89cf8356f31de870301095821735beeff69 (diff) | |
download | hdf5-d9a305afb76ca86ba0cdbeed689ef8e82d3a14a3.zip hdf5-d9a305afb76ca86ba0cdbeed689ef8e82d3a14a3.tar.gz hdf5-d9a305afb76ca86ba0cdbeed689ef8e82d3a14a3.tar.bz2 |
[svn-r19207] Description:
Switch from using "UINT16_MAX" to "64 * 1024" for assert macro.
Tested on:
None, just eyeballed.
Diffstat (limited to 'test')
-rw-r--r-- | test/tselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tselect.c b/test/tselect.c index 89cd9e5..1fa98bf 100644 --- a/test/tselect.c +++ b/test/tselect.c @@ -2795,7 +2795,7 @@ test_select_hyper_checker_board_dr__run_test(int test_num, const uint16_t *cube_ * hence the following assertion. Delete it if we convert * to 32 bit values. */ - HDassert(large_cube_size < (size_t)(UINT16_MAX)); + HDassert(large_cube_size < (size_t)(64 * 1024)); /* Allocate & initialize buffers */ |