diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2012-10-29 18:59:05 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2012-10-29 18:59:05 (GMT) |
commit | 0cf58a4755eb6f3e7be64b0f05f2bb8ef6f7ad0d (patch) | |
tree | 7f5576b9ed8e414606093b6872ced10dd0f5bf0e /hl/test | |
parent | 78b07da7aea98598a74bce25335b9435aa29cdb9 (diff) | |
download | hdf5-0cf58a4755eb6f3e7be64b0f05f2bb8ef6f7ad0d.zip hdf5-0cf58a4755eb6f3e7be64b0f05f2bb8ef6f7ad0d.tar.gz hdf5-0cf58a4755eb6f3e7be64b0f05f2bb8ef6f7ad0d.tar.bz2 |
[svn-r22987] ported revisions from 22742 to 22986 from the trunk
Diffstat (limited to 'hl/test')
-rw-r--r-- | hl/test/test_image.c | 2 | ||||
-rw-r--r-- | hl/test/test_lite.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/hl/test/test_image.c b/hl/test/test_image.c index 4cef1b4..a4a10e4 100644 --- a/hl/test/test_image.c +++ b/hl/test/test_image.c @@ -676,7 +676,7 @@ static int test_generate(void) goto out; /* Indicate success */ - retval = 0; + return 0; /* error zone, gracefully close */ out: diff --git a/hl/test/test_lite.c b/hl/test/test_lite.c index 3fface8..a611088 100644 --- a/hl/test/test_lite.c +++ b/hl/test/test_lite.c @@ -2152,9 +2152,12 @@ int main( void ) /* test attribute functions */ nerrors += test_attr(); - /* test text-dtype functions */ + /* test valid path functions */ nerrors += test_valid_path(); + /* test text-dtype functions */ + nerrors += test_text_dtype(); + /* check for errors */ if (nerrors) goto error; |