summaryrefslogtreecommitdiffstats
path: root/src/H5HFtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5HFtest.c')
-rw-r--r--src/H5HFtest.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/H5HFtest.c b/src/H5HFtest.c
index d6eecd7..14b20eb 100644
--- a/src/H5HFtest.c
+++ b/src/H5HFtest.c
@@ -11,7 +11,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol <koziol@ncsa.uiuc.edu>
+/* Programmer: Quincey Koziol
* Thursday, February 3, 2006
*
* Purpose: Fractal heap testing functions.
@@ -189,13 +189,10 @@ H5HF_cmp_cparam_test(const H5HF_create_t *cparam1, const H5HF_create_t *cparam2)
/* Don't worry about comparing the filter names right now... */
/* (they are expanded during the encode/decode process, but aren't copied
- * during the H5Z_append operation, generating false positive failures)
+ * during the H5Z_append operation, generating false positive failures -QAK)
*/
-#ifdef QAK
+#if 0
/* Check filter name */
-HDfprintf(stderr, "%s: Check 1.0\n", "H5HF_cmp_cparam_test");
-HDfprintf(stderr, "%s: cparam1->pline.filter[%Zu].name = %s\n", "H5HF_cmp_cparam_test", u, (cparam1->pline.filter[u].name ? cparam1->pline.filter[u].name : "<nil>"));
-HDfprintf(stderr, "%s: cparam2->pline.filter[%Zu].name = %s\n", "H5HF_cmp_cparam_test", u, (cparam2->pline.filter[u].name ? cparam2->pline.filter[u].name : "<nil>"));
if(!cparam1->pline.filter[u].name && cparam2->pline.filter[u].name)
HGOTO_DONE(-1)
else if(cparam1->pline.filter[u].name && !cparam2->pline.filter[u].name)
@@ -204,7 +201,7 @@ HDfprintf(stderr, "%s: cparam2->pline.filter[%Zu].name = %s\n", "H5HF_cmp_cparam
if((ret_value = HDstrcmp(cparam1->pline.filter[u].name, cparam2->pline.filter[u].name)))
HGOTO_DONE(ret_value)
} /* end if */
-#endif /* QAK */
+#endif
/* Check # of filter parameters */
if(cparam1->pline.filter[u].cd_nelmts < cparam2->pline.filter[u].cd_nelmts)
d>-0/+54 |\ \ | |/ | * Added a cookbook entry on logging audible messages.Vinay Sajip2015-02-011-0/+54 * | Merge: Fix asyncio doc typo.R David Murray2015-01-301-1/+1 |\ \ | |/ | * Fix asyncio doc typo.R David Murray2015-01-301-1/+1 * | Merge 3.4 (asyncio doc)Victor Stinner2015-01-301-0/+11 |\ \ | |/ | * asyncio doc: document the new ResourceWarning warningsVictor Stinner2015-01-301-0/+11 * | Merge 3.4 (asyncio doc)Victor Stinner2015-01-291-0/+37 |\ \ | |/ | * asyncio doc: add a section about task cancellationVictor Stinner2015-01-291-0/+37 * | Merge 3.4 (asyncio doc)Victor Stinner2015-01-291-0/+23 |\ \ | |/ | * Issue #21962, asyncio doc: Suggest the usage of wait_for() to replaceVictor Stinner2015-01-291-0/+23 * | Closes #22668: Merge from 3.4.Stefan Krah2015-01-291-0/+6 |\ \ | |/ * | Merge 3.4 (asyncio doc)Victor Stinner2015-01-291-0/+8 |\ \ | |/ | * asyncio doc: document Protocol state machineVictor Stinner2015-01-291-0/+8 * | Merged documentation update from 3.4.Vinay Sajip2015-01-281-0/+55 |\ \ | |/ | * Added a logging cookbook entry on customized exception formatting.Vinay Sajip2015-01-281-0/+55 * | Add whatsnew entry for issue #5309.Berker Peksag2015-01-271-0/+7 * | Issue #23286: Fix typo in the tutorial.Berker Peksag2015-01-271-1/+1 |\ \ | |/ | * Issue #23286: Fix typo in the tutorial.Berker Peksag2015-01-271-1/+1 | * Issue #14099: Backout changeset e5bb3044402b (except adapted tests).Serhiy Storchaka2015-01-261-2/+8 * | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.Serhiy Storchaka2015-01-262-3/+39 * | Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-6/+0 |\ \ | |/ | * Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-6/+0 * | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-255-16/+25 * | Merge: #23215: note that time.sleep affects the current thread only.R David Murray2015-01-25