diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-06-29 19:13:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 19:13:29 (GMT) |
commit | fd933f30b1f8cd487ad790ac0b054bb779280a62 (patch) | |
tree | 9e366b2c19f1d84e28af4e588daf7bd8c075f8b6 /tools/test/h5diff | |
parent | fd56a593b7928da636b2494b25cd7478fed78c29 (diff) | |
download | hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.zip hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.gz hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.bz2 |
Remove programmer/date from comments (#3210)
* Removes Programmer: and Date: fields
* Fixes a few Modifications: fields leftover from previous work
Diffstat (limited to 'tools/test/h5diff')
-rw-r--r-- | tools/test/h5diff/h5diffgentest.c | 32 | ||||
-rw-r--r-- | tools/test/h5diff/testh5diff.sh.in | 13 |
2 files changed, 0 insertions, 45 deletions
diff --git a/tools/test/h5diff/h5diffgentest.c b/tools/test/h5diff/h5diffgentest.c index 0c253d2..4276f7a 100644 --- a/tools/test/h5diff/h5diffgentest.c +++ b/tools/test/h5diff/h5diffgentest.c @@ -30,10 +30,6 @@ size_t H5TOOLS_MALLOCSIZE = (128 * 1024 * 1024); * * Purpose: generate files for h5diff testing * - * Programmer: Pedro Vicente - * - * Date: November 12, 2003 - * *------------------------------------------------------------------------- */ @@ -2077,8 +2073,6 @@ test_special_datasets(const char *file, int make_diffs /* flag to modify data bu * Purpose: Create test files to compare links, one has longer name than * the other and short name is subset of long name. * - * Programmer: Jonathan Kim (Feb 17, 2010) - * *-------------------------------------------------------------------------*/ static int test_link_name(const char *fname1) @@ -2150,8 +2144,6 @@ out: * * Purpose: Create test files to compare soft links in various way * - * Programmer: Jonathan Kim (Feb 17, 2010) - * *-------------------------------------------------------------------------*/ static int test_soft_links(const char *fname1) @@ -2270,8 +2262,6 @@ out: * * Purpose: Create test files to compare linked soft links in various way * - * Programmer: Jonathan Kim (Feb 17, 2010) - * *-------------------------------------------------------------------------*/ static int test_linked_softlinks(const char *fname1) @@ -2452,8 +2442,6 @@ out: * * Purpose: Create test files to compare external links in various way * - * Programmer: Jonathan Kim (Feb 17, 2010) - * *-------------------------------------------------------------------------*/ static int test_external_links(const char *fname1, const char *fname2) @@ -2600,8 +2588,6 @@ out: * Purpose: Create test files to compare external links which point to * soft link in various way * - * Programmer: Jonathan Kim (Feb 17, 2010) - * *-------------------------------------------------------------------------*/ static int test_ext2soft_links(const char *fname1, const char *fname2) @@ -2820,8 +2806,6 @@ gen_dataset_idx(const char *file, int format) * * Purpose: Create test files to compare dangling links in various way * - * Programmer: Jonathan Kim (Feb 17, 2010) - * *-------------------------------------------------------------------------*/ static int test_dangle_links(const char *fname1, const char *fname2) @@ -3021,8 +3005,6 @@ out: * * Purpose: For testing comparing group member objects recursively * - * Programmer: Jonathan Kim (Aug 19, 2010) - * *-------------------------------------------------------------------------*/ static int test_group_recurse(const char *fname1, const char *fname2) @@ -3434,8 +3416,6 @@ out: * For testing comparing group member objects recursively via multiple * linked external links * - * Programmer: Jonathan Kim (Sep 16, 2010) - * *-------------------------------------------------------------------------*/ #define GRP_R_DSETNAME1 "dset1" #define GRP_R_DSETNAME2 "dset2" @@ -3748,8 +3728,6 @@ out: * Same structure, same obj names * Test : exclude obj with different value to verify the rest are same * - * Programmer: Jonathan Kim (July, 21, 2010) - * *-------------------------------------------------------------------------*/ static int test_exclude_obj1(const char *fname1, const char *fname2) @@ -3869,8 +3847,6 @@ out: * different structure and name * Test : exclude different objs to verify the rest are same * - * Programmer: Jonathan Kim (July, 21, 2010) - * *-------------------------------------------------------------------------*/ static int test_exclude_obj2(const char *fname1, const char *fname2) @@ -4001,8 +3977,6 @@ out: * Only one file contains unique objs. Common objs are same. * Test : exclude unique objs to verify the rest are same - HDFFV-7837 * - * Programmer: Jonathan Kim (Mar, 19, 2012) - * *-------------------------------------------------------------------------*/ static int test_exclude_obj3(const char *fname1, const char *fname2) @@ -4088,8 +4062,6 @@ out: * along with fixed length string/string array types in * a compound type dataset. * - * Programmer: Jonathan Kim (Oct, 26, 2010) - * *-------------------------------------------------------------------------*/ #define STR_RANK 1 #define VLEN_STR_DIM 1 @@ -4761,8 +4733,6 @@ out: * * Purpose: Test diffs of enum values which may include invalid values. * - * Programmer: Dana Robinson - * *-------------------------------------------------------------------------*/ static int @@ -4872,8 +4842,6 @@ out: * Function: test_comps_vlen_arry() * - type: compound->vlen->compound->array->compound * - * Programmer: Jonathan Kim (Sep, 1, 2011) - * *-------------------------------------------------------------------------*/ #define SDIM_DSET 2 #define SDIM_CMPD_ARRAY 2 diff --git a/tools/test/h5diff/testh5diff.sh.in b/tools/test/h5diff/testh5diff.sh.in index a5b307e..7cc82a1 100644 --- a/tools/test/h5diff/testh5diff.sh.in +++ b/tools/test/h5diff/testh5diff.sh.in @@ -12,19 +12,6 @@ # # Tests for the h5diff tool # -# Modification: -# Albert Cheng, 2005/08/17 -# Added the SKIP feature. -# Albert Cheng, 2005/2/3 -# Added -p option for parallel h5diff tests. -# Pedro Vicente Nunes: -# 10/25/2005: Added test #9 -# 11/27/2006: Added test #10, #11 -# Jonathan Kim: -# Improved to use single line -# Improved to check exit code (only serial mode, not necessary for parallel) -# Added test 400 - 425 (links with --follow-symlinks option) -# Added test 450 - 459 (dangling links) srcdir=@srcdir@ |