diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2012-03-27 21:49:08 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2012-03-27 21:49:08 (GMT) |
commit | e4291accaa899389a399c1e2370b45247b4d0c3f (patch) | |
tree | 699c9eff62d36d3495201f9eb8c33936ea382975 | |
parent | a9e2b5463d73681c4f19b2c148fbbc0d6d2dbd1e (diff) | |
download | hdf5-e4291accaa899389a399c1e2370b45247b4d0c3f.zip hdf5-e4291accaa899389a399c1e2370b45247b4d0c3f.tar.gz hdf5-e4291accaa899389a399c1e2370b45247b4d0c3f.tar.bz2 |
[svn-r22161] Added a message when the time-consuming test is skipped due to a lack of sparse file support.
Minor change: tested on 64-bit Windows 7
-rw-r--r-- | test/istore.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/istore.c b/test/istore.c index 81d7eb6..f99e835 100644 --- a/test/istore.c +++ b/test/istore.c @@ -711,6 +711,8 @@ main(int argc, char *argv[]) * e.g.: Windows NTFS filesystems */ status = test_sparse(file, "sparse", (size_t)800, (size_t)50, (size_t)50, (size_t)50, skip_test); + if(skip_test) + printf(" The current VFD does not support sparse files on this platform.\n"); nerrors += status < 0 ? 1 : 0; } |