hdf5/test
David Young 307cb5da48 Squash my changes on branch fprintf-experiment into one commit for
reapplication to my new warnings branch, `warnings-again`.  These
changes are included:

commit 915551b7bf64e777dd2007386ec77b1d117770da
Merge: 63858c2 a8892bb
Author: David Young <dyoung@hdfgroup.org>
Date:   Mon Nov 25 17:39:49 2019 -0600

    Merge remote-tracking branch 'hdf5/develop' into fprintf-experiment

commit a8892bb42d
Merge: 5c911d8 f907b51
Author: David Young <dyoung@hdfgroup.org>
Date:   Mon Nov 25 17:33:54 2019 -0600

    Merge pull request #2055 in HDFFV/hdf5 from ~DYOUNG/vchoi_fork:add-werror-and-squash-some to develop

    * commit 'f907b511d06612dafc7814a7c30f2f3d2b76d52b':
      Oops, remove more C99 designated initializers for VS 2010 compatibility.

commit 63858c22e168acaec0af8ced6641f26102cc6bb0
Merge: 20ae787 5c911d8
Author: David Young <dyoung@hdfgroup.org>
Date:   Mon Nov 25 17:04:42 2019 -0600

    Merge remote-tracking branch 'hdf5/develop' into fprintf-experiment

commit 5c911d8baf
Merge: b8a5671 62208b0
Author: David Young <dyoung@hdfgroup.org>
Date:   Mon Nov 25 16:58:27 2019 -0600

    Merge pull request #2030 in HDFFV/hdf5 from ~DYOUNG/vchoi_fork:add-werror-and-squash-some to develop

    * commit '62208b056a09c01855fbac7f75146be58ad6bfe5': (44 commits)
      Add an #include to get a function declaration.
      Don't use C99 designated initializers, they're not compatible with Visual Studio 2010.
      Quiet some more maybe-uninitialized warnings---each is a false positive, *sigh*.  This is more code that may not compile with VS2010, *sigh sigh*.
      Always warn on maybe-uninitialized.  -Wincompatible-pointer-types was not available until GCC 5, so enable it only if that's the GCC version we're using.
      Only promote maybe-uninitialized warnings to errors on GCC 8.  Even on GCC 8, there may be false positives at low optimization levels?  I need to check.
      Only use -Werror=cast-function-type with GCC 8 and later.
      Put all of the -W options back into the order I found them in so that it's easier to compare old and new config/gnu-flags.
      Add new source files to CMakeLists.txt.
      Mention the -Werror= flags in libhdf5.settings.in.
      free -> HDfree
      Promote decleration-after-statement warnings to errors.
      Quiet decleration-after-statement warnings.
      Move a statement under some declarations since some vintages of Visual Studio don't like declarations after statements.
      Document H5D__chunk_mem_xfree_wrapper().
      Undo accidental test deletion.
      Oops, delete a debug printf that snuck in here.
      Undo my changes to the HD macros, hadn't really intended those to be on this branch....
      Make errors of some more warnings.  Move disabled warnings to DEVELOPER_WARNING_CFLAGS.  Put just one warning option on a line, and sort some of the options.
      Cast to the parameter type, H5VL_token_t *, instead of to unsigned char *.
      Change hdset_reg_ref_t and H5R_ref_t from arrays of unsigned char to structs containing those arrays.  Encapsulating the arrays in this way makes it easier to write and think about pointers to these types, casts to/from these types, etc.
      ...

commit 20ae7877e33931b95e8c3502b027d6c3fe94a11f
Merge: 46f8c61 edd5297
Author: David Young <dyoung@hdfgroup.org>
Date:   Fri Nov 22 15:34:09 2019 -0600

    Merge remote-tracking branch 'origin/add-werror-and-squash-some' into fprintf-experiment

commit 46f8c613d5117a8be5bc8385a072daa0b4262f06
Author: David Young <dyoung@hdfgroup.org>
Date:   Fri Nov 22 15:29:00 2019 -0600

    GCC really wants us to use `ll` to format `long long`, so try to make that work
    before any other format modifier.  Seems like we're not compiling the autoconf
    test program with -Werror=format ?  Probably should.

commit eee35b8ef3759c391327cd48a9b3c56b6f8abc99
Author: David Young <dyoung@hdfgroup.org>
Date:   Fri Nov 22 15:28:05 2019 -0600

    It's hard to know just how wide an HDoff_t will be, and I don't think POSIX or
    C standards provide a PRI macro for it, so cast to intmax_t and format using
    PRIdMAX.

commit 86eab12df7a89b546a38e99f8178dd2adbcb3433
Author: David Young <dyoung@hdfgroup.org>
Date:   Fri Nov 22 15:26:25 2019 -0600

    URemove some casts.se the right format string for the argument.  Here and there
    stop casting a printf argument.

commit f722f7cbecbaa99449941484b014426f62f1bed5
Merge: 58e3743 6d5ec83
Author: David Young <dyoung@hdfgroup.org>
Date:   Fri Nov 22 14:44:16 2019 -0600

    Merge branch 'add-werror-and-squash-some' into fprintf-experiment

commit 58e3743b7faa9836606ee91798fe80dfc0040da7
Author: David Young <dyoung@hdfgroup.org>
Date:   Wed Nov 20 21:07:21 2019 -0600

    Remove custom HDfprintf implementation, using the standard library's,
    instead.  Take a swipe at repairing fprintf format strings, mainly
    replacing "%Hu" with "%" PRIuHSIZE, "%a" with "%" PRIuHADDR, "%Zu" with
    "%zu".

    Here and there remove an awkward cast of a printf argument to `long
    long` and use PRI[doux]8, PRI[doux]32, or PRI[doux]64, instead.

    Change occurrences of "%t" to "%s" and perform a suitable change of
    argument, `cond` -> `cond ? "TRUE" : "FALSE"`.

    Some occurrences of %Hu, %a, and %t remain, they just weren't flagged by
    the compiler because of #ifdef'age.

commit d4366909293fa970c23512ac80e5d865d76cddbf
Author: David Young <dyoung@hdfgroup.org>
Date:   Wed Nov 20 20:54:32 2019 -0600

    Promote format-string warnigns to errors.
2020-07-07 10:49:55 -05:00
..
testfiles Correct error test spelling and use 2019-08-13 10:25:05 -05:00
accum_swmr_reader.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
accum.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
aggr.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
app_ref.c C and POSIX call cleanup 2019-01-10 17:51:42 -08:00
atomic_reader.c OESS-29 Update HD prefix mostly 2019-08-24 14:07:33 -05:00
atomic_writer.c OESS-29 Update HD prefix mostly 2019-08-24 14:07:33 -05:00
AtomicWriterReader.txt Moved remaining SWMR-related test files to develop. 2017-01-26 14:34:12 -05:00
bad_compound.h5 [svn-r20513] Description: 2011-04-15 14:06:38 -05:00
bad_offset.h5 Modifications based on comments from pull request review 2017-08-23 16:23:09 -05:00
be_data.h5 [svn-r20855] Issue 2599 - Cross-test BE and LE data. I added the test for deflate, szip, fletcher32, shuffle and nbit filter in cross_read.c and gen_cross.c. I also took out the data file for OpenVMS because the data isn't native but IEEE for floating-numbers. 2011-05-17 17:18:05 -05:00
be_extlink1.h5
be_extlink2.h5
big.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
bittests.c Fixed some exit calls. 2019-09-06 18:06:26 -07:00
btree2.c Add HD prefix to tests 2019-08-15 16:46:15 -05:00
btree_idx_1_6.h5 [svn-r29722] Description: 2016-04-17 02:26:51 -05:00
btree_idx_1_8.h5 [svn-r29722] Description: 2016-04-17 02:26:51 -05:00
cache_api.c Revert "Revert "Moved -Wunsuffixed-float-constants to the developer warnings."" 2020-01-23 14:40:47 -08:00
cache_common.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
cache_common.h testpar/t_2Gio.c: Fix a typo that I think was introduced by a 2020-01-29 11:44:39 -06:00
cache_image.c fix unused related warnings 2020-01-13 13:20:19 -06:00
cache_logging.c Add support for GCC 7.x warnings, update warnhist script to account for them, 2019-06-21 10:05:34 -05:00
cache_tagging.c merge and fix 2020-01-20 21:11:32 -06:00
cache.c So that I can use PASSED(); anywhere a statement can go, #define PASSED() with 2020-02-28 16:51:55 -06:00
chunk_info.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
CMakeLists.txt Add new source files to CMake build 2020-06-27 22:14:52 -05:00
CMakePassthroughVOLTests.cmake HDFFV-10529 Update CMake tests to use test fixtures 2019-07-23 16:24:56 -05:00
CMakeTests.cmake Align contents of CMake and autotools testfile cleanup lists. 2020-05-02 20:42:33 -05:00
CMakeVFDTests.cmake HDFFV-11001 Add fine control over testing 2020-01-15 11:38:06 -06:00
cmpd_dset.c OESS-29 Update HD prefix mostly 2019-08-24 14:07:33 -05:00
COPYING Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
cork.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
corrupt_stab_msg.h5 [svn-r22110] Removed incorrect 'executable' svn properties. 2012-03-21 14:50:28 -05:00
cross_read.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
dangle.c Normalization with vol_integration (test code and H5Xtest.c) 2018-09-20 10:40:51 -07:00
deflate.h5
del_many_dense_attrs.c Misc warning fixes. 2020-05-10 09:48:30 -07:00
direct_chunk.c Revert "Revert "Moved -Wunsuffixed-float-constants to the developer warnings."" 2020-01-23 14:40:47 -08:00
dsets.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
dt_arith.c testpar/t_2Gio.c: Fix a typo that I think was introduced by a 2020-01-29 11:44:39 -06:00
dtransform.c So that I can use PASSED(); anywhere a statement can go, #define PASSED() with 2020-02-28 16:51:55 -06:00
dtypes.c merge and fix 2020-01-20 21:11:32 -06:00
earray.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
efc.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
enc_dec_plist_cross_platform.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
enc_dec_plist.c Yanked -Wc++-compat from the flags used to build the C library in both 2019-12-04 00:49:52 -08:00
enum.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
err_compat.c Fixed stack and frame size warnings. Not complete, but fixes most of 2020-01-15 09:32:01 -08:00
error_test.c Reduce differences between my -Werror branch and develop: 2020-01-28 20:35:28 -06:00
evict_on_close.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
extend.c Fixed stack and frame size warnings. Not complete, but fixes most of 2020-01-15 09:32:01 -08:00
external_common.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
external_common.h Fix missing export tag 2019-07-31 16:50:45 -05:00
external_env.c Modify external_env.c to prevent deleting test file of external.c. 2020-01-09 16:29:24 -06:00
external_fname.h Add support for GCC9, update warnhist script, and clean up warnings. 2019-07-02 23:43:45 -05:00
external.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
family_v16_00000.h5
family_v16_00001.h5
family_v16_00002.h5
family_v16_00003.h5
farray.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
fheap.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
file_image_core_test.h5 [svn-r22219] Description: 2012-03-31 03:49:35 -05:00
file_image.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
filenotclosed.c Fixed some exit calls. 2019-09-06 18:06:26 -07:00
filespace_1_6.h5
filespace_1_8.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
fill18.h5 Fix for HDFFV-10800 H5Ocopy failure: 2019-06-12 12:55:12 -05:00
fill_old.h5
fillval.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
filter_error.h5 [svn-r20930] Issue 4278 - When reading data fails, the error message should say which filter isn't registered. This is the follow-up commit. When I checked in the fix and test (revision 20929), I forgot to add the data file test/filter_error.h5. 2011-06-03 14:59:34 -05:00
filter_fail.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
filter_plugin1_dsets.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
filter_plugin2_dsets.c Plugin test rework 2017-11-08 17:52:44 -08:00
filter_plugin3_dsets.c Plugin test rework 2017-11-08 17:52:44 -08:00
filter_plugin4_groups.c Plugin test rework 2017-11-08 17:52:44 -08:00
filter_plugin.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
flush1.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
flush2.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
flushrefresh.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
flushrefreshTest.cmake Fix EXISTS test syntax 2019-08-29 14:43:35 -05:00
freespace.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
fsm_aggr_nopersist.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
fsm_aggr_persist.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
gen_bad_compound.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
gen_bad_offset.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
gen_bad_ohdr.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_bogus.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
gen_bounds.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
gen_cross.c Fixed some exit calls. 2019-09-06 18:06:26 -07:00
gen_deflate.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_file_image.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_filespace.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
gen_filters.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
gen_mergemsg.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_new_array.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_new_fill.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_new_group.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_new_mtime.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_new_super.c H5_HAVE_PARALLEL, _DEBUG_API, etc. Add attributes to some variables and 2020-02-10 14:41:20 -06:00
gen_noencoder.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_nullspace.c H5_HAVE_PARALLEL, _DEBUG_API, etc. Add attributes to some variables and 2020-02-10 14:41:20 -06:00
gen_old_array.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_old_group.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_old_layout.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_old_mtime.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_plist.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
gen_sizes_lheap.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
gen_specmetaread.c H5_HAVE_PARALLEL, _DEBUG_API, etc. Add attributes to some variables and 2020-02-10 14:41:20 -06:00
gen_udlinks.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
genall5.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
genall5.h Trim trailing whitespace 2020-04-20 18:12:00 -05:00
getname.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
gheap.c Merge reconciliation and VFD test fixes 2019-08-04 15:19:51 -05:00
group_old.h5
h5fc_ext1_f.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
h5fc_ext1_i.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
h5fc_ext2_if.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
h5fc_ext2_sf.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
h5fc_ext3_isf.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
h5fc_ext_none.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
h5test.c * Fix intermittent error with Splitter VFD. 2020-06-25 12:24:05 -05:00
h5test.h * Fix intermittent error with Splitter VFD. 2020-06-25 12:24:05 -05:00
H5srcdir_str.h.in Avoid unused-variable warnings: change static const strings in a couple 2019-11-13 11:31:20 -06:00
H5srcdir.h fix unused function warning 2020-01-28 14:25:40 -06:00
hdfs.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
hyperslab.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
istore.c Fixed some exit calls. 2019-09-06 18:06:26 -07:00
le_data.h5 [svn-r20855] Issue 2599 - Cross-test BE and LE data. I added the test for deflate, szip, fletcher32, shuffle and nbit filter in cross_read.c and gen_cross.c. I also took out the data file for OpenVMS because the data isn't native but IEEE for floating-numbers. 2011-05-17 17:18:05 -05:00
le_extlink1.h5
le_extlink2.h5
lheap.c Add HD prefix to tests 2019-08-15 16:46:15 -05:00
links_env.c Fixed some exit calls. 2019-09-06 18:06:26 -07:00
links.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
Makefile.am Merge remote-tracking branch 'origin/develop' into monotonic_timer 2020-06-26 18:57:38 -05:00
memleak_H5O_dtype_decode_helper_H5Odtype.h5 Added data file for test and updated MANIFEST 2019-01-25 00:19:16 -06:00
mergemsg.h5
mf.c Squash my changes on branch fprintf-experiment into one commit for 2020-07-07 10:49:55 -05:00
mirror_vfd.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
mount.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
mtime.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
multi_file_v16-r.h5 [svn-r21015] Bug fix for Issue 2598 - In v1.6 library, there was EOA for the whole MULTI file saved in the 2011-06-22 10:47:57 -05:00
multi_file_v16-s.h5 [svn-r21015] Bug fix for Issue 2598 - In v1.6 library, there was EOA for the whole MULTI file saved in the 2011-06-22 10:47:57 -05:00
noencoder.h5
none.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
ntypes.c remove unnecessary check macro 2019-12-06 14:12:57 -06:00
null_vol_connector.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
null_vol_connector.h Added a simple test for registration of VOL connector plugins. 2018-12-27 15:50:04 -08:00
objcopy_ref.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
objcopy.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
ohdr.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
page_buffer.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
paged_nopersist.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
paged_persist.h5 Final merge of page buffering branch to develop 2017-03-13 21:30:37 -07:00
pool.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
POSIX_Order_Write_Test_Report.docx Moved remaining SWMR-related test files to develop. 2017-01-26 14:34:12 -05:00
POSIX_Order_Write_Test_Report.pdf Moved remaining SWMR-related test files to develop. 2017-01-26 14:34:12 -05:00
reserved.c Add HD prefix to tests 2019-08-15 16:46:15 -05:00
ros3.c Untangle #ifdef mess in ROS3 code. 2019-08-19 18:02:47 -07:00
s3comms.c Untangle #ifdef mess in ROS3 code. 2019-08-19 18:02:47 -07:00
set_extent.c So that I can use PASSED(); anywhere a statement can go, #define PASSED() with 2020-02-28 16:51:55 -06:00
ShellTests.cmake Fix for HDFFV-10659: The library abort with "infinite loop closing library" 2018-12-28 16:49:11 -06:00
space_overflow.c Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
specmetaread.h5
stab.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
swmr_addrem_writer.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr_check_compat_vfd.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr_common.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr_common.h Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr_generator.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
SWMR_POSIX_Order_UG.txt Moved remaining SWMR-related test files to develop. 2017-01-26 14:34:12 -05:00
swmr_reader.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr_remove_reader.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr_remove_writer.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr_sparse_reader.c For compatibility with non-C99 Visual Studio versions, use "%" PRIuMAX 2020-04-24 18:49:37 -05:00
swmr_sparse_writer.c Fixed some exit calls. 2019-09-06 18:06:26 -07:00
swmr_start_write.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
SWMR_UseCase_UG.txt Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr_writer.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
swmr.c Checkpoint progress on stacking VOL plugins - all standalone regression tests 2018-10-26 16:09:06 -05:00
tarray.c Make wrappers, tests and tools use H5Treclaim() instead of H5Dvlen_reclaim() 2019-10-08 14:30:24 -05:00
tarrold.h5
tattr.c Revert "Revert "Moved -Wunsuffixed-float-constants to the developer warnings."" 2020-01-23 14:40:47 -08:00
tbad_msg_count.h5
tbogus.h5 Delay checking if decoded message's "shareable" flag is appropriate for 2019-01-07 15:40:44 -06:00
tcheck_version.c Add HD prefix to tests 2019-08-15 16:46:15 -05:00
tchecksum.c Updated configure & CMake compiler flags for GCC 8.x, along with corresponding 2019-06-28 09:10:43 -05:00
tconfig.c Updated configure & CMake compiler flags for GCC 8.x, along with corresponding 2019-06-28 09:10:43 -05:00
tcoords.c Minor warning fixes 2017-11-15 02:58:16 -08:00
test_filter_plugin.sh.in Trim trailing whitespace 2020-04-20 18:12:00 -05:00
test_filters_be.h5 [svn-r23147] ported revisions 23081:23145 from the trunk 2013-01-09 15:23:07 -05:00
test_filters_le.h5 [svn-r23147] ported revisions 23081:23145 from the trunk 2013-01-09 15:23:07 -05:00
test_mirror.sh.in Tidying of Mirror VFD. 2020-04-07 10:20:44 -05:00
test_usecases.sh.in HDFFV-10740 - skip copying dirs in for loops 2019-09-18 11:04:09 -05:00
test_vol_plugin.sh.in Trim trailing whitespace 2020-04-20 18:12:00 -05:00
testabort_fail.sh.in Trim trailing whitespace 2020-04-20 18:12:00 -05:00
testcheck_version.sh.in Add flags from config/clang-warnings/*general files to H5 C and CXX flags for all versions of Clang and Clang++ compilers. 2020-06-06 14:36:44 -05:00
testerror.sh.in Trim trailing whitespace 2020-04-20 18:12:00 -05:00
testexternal_env.sh.in Some coding style changes. 2019-04-11 15:51:21 -05:00
testflushrefresh.sh.in HDFFV-10740 - skip copying dirs in for loops 2019-09-18 11:04:09 -05:00
testframe.c Fixed some exit calls. 2019-09-06 18:06:26 -07:00
testhdf5.c Add new H5R API that abstracts object, region and attribute reference types 2019-10-08 14:30:24 -05:00
testhdf5.h Add new H5R API that abstracts object, region and attribute reference types 2019-10-08 14:30:24 -05:00
testlibinfo.sh.in Trim trailing whitespace 2020-04-20 18:12:00 -05:00
testlinks_env.sh.in Correct name of folder 2019-08-15 11:07:24 -05:00
testmeta.c OESS-29 Update HD prefix mostly 2019-08-24 14:07:33 -05:00
testswmr.sh.in HDFFV-10740 - skip copying dirs in for loops 2019-09-18 11:04:09 -05:00
testvds_env.sh.in Mostly whitespace in testpar, addl changes for tmp dir 2019-08-15 10:28:40 -05:00
testvdsswmr.sh.in HDFFV-10740 - skip copying dirs in for loops 2019-09-18 11:04:09 -05:00
tfile.c merge and fix 2020-01-20 21:11:32 -06:00
tgenprop.c Add HD prefix to tests 2019-08-15 16:46:15 -05:00
th5o.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
th5s.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
th5s.h5
theap.c Added CHECK_PTR_EQ macro to testhdf5 to quiet cast warnings on Windows. 2017-11-27 08:57:26 -08:00
thread_id.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
tid.c Cleaned up warnings in test/tid.c. 2020-01-23 21:19:24 -08:00
timer.c Clean up warnings 2020-06-27 20:02:51 -05:00
titerate.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
tlayouto.h5
tmeta.c Updated configure & CMake compiler flags for GCC 8.x, along with corresponding 2019-06-28 09:10:43 -05:00
tmisc.c Refactor to reduce verbosity. 2020-03-26 11:51:26 -05:00
tmtimen.h5
tmtimeo.h5
trefer_deprec.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
trefer_shutdown.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
trefer.c Minor tweaks to testhdf5 code after normalization with 1.10. 2020-05-27 17:41:59 -07:00
trefstr.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
tselect.c Detect when there's the same-shaped selection of a single block of elements on 2020-06-05 12:36:20 -05:00
tsizeslheap.h5 [svn-r19076] Purpose: Fix bug 1951 2010-07-16 11:32:49 -05:00
tskiplist.c Added CHECK_PTR_EQ macro to testhdf5 to quiet cast warnings on Windows. 2017-11-27 08:57:26 -08:00
tsohm.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
ttime.c C and POSIX call cleanup 2019-01-10 17:51:42 -08:00
ttsafe_acreate.c Updated the threadsafety test to use error macros instead 2018-05-14 00:44:02 -07:00
ttsafe_cancel.c H5_HAVE_PARALLEL, _DEBUG_API, etc. Add attributes to some variables and 2020-02-10 14:41:20 -06:00
ttsafe_dcreate.c Updated the threadsafety test to use error macros instead 2018-05-14 00:44:02 -07:00
ttsafe_error.c Add support for GCC9, update warnhist script, and clean up warnings. 2019-07-02 23:43:45 -05:00
ttsafe.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
ttsafe.h HDFFV-10384 and includes cleanup merged from devlop 2018-02-16 09:25:51 -06:00
ttst.c Fixed misc Warnings flagged by VS2017. 2017-11-26 18:13:18 -08:00
tunicode.c Make wrappers, tests and tools use H5Treclaim() instead of H5Dvlen_reclaim() 2019-10-08 14:30:24 -05:00
tvlstr.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
tvltypes.c initialization discards const warning 2020-01-29 13:31:14 -06:00
twriteorder.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
unlink.c Squashed commit of the token_refactoring branch: 2020-01-16 13:29:34 -08:00
unregister.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
use_append_chunk_mirror.c Add Splitter VFD to library. 2020-03-13 17:13:17 -05:00
use_append_chunk.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
use_append_mchunks.c Add Splitter VFD to library. 2020-03-13 17:13:17 -05:00
use_common.c Misc warning fixes. 2020-05-10 09:48:30 -07:00
use_disable_mdc_flushes.c squash cast warning fix 2020-01-23 15:12:00 -06:00
use.h Misc warning fixes. 2020-05-10 09:48:30 -07:00
vds_env.c Yanked -Wc++-compat from the flags used to build the C library in both 2019-12-04 00:49:52 -08:00
vds_swmr_gen.c squash cast warning fix 2020-01-23 15:12:00 -06:00
vds_swmr_reader.c squash cast warning fix 2020-01-23 15:12:00 -06:00
vds_swmr_writer.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
vds_swmr.h squash cast warning fix 2020-01-23 15:12:00 -06:00
vds.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00
vfd.c * Fix intermittent error with Splitter VFD. 2020-06-25 12:24:05 -05:00
vol_plugin.c Introduce new H5VL _by_value routines 2020-01-28 18:18:38 -06:00
vol.c Trim trailing whitespace 2020-04-20 18:12:00 -05:00