|
From: <kin...@us...> - 2025-09-30 04:27:31
|
Revision: 7528
http://sourceforge.net/p/teem/code/7528
Author: kindlmann
Date: 2025-09-30 04:27:30 +0000 (Tue, 30 Sep 2025)
Log Message:
-----------
adding airEnum test
Modified Paths:
--------------
teem/trunk/src/hest/parsest.c
Modified: teem/trunk/src/hest/parsest.c
===================================================================
--- teem/trunk/src/hest/parsest.c 2025-09-30 04:26:12 UTC (rev 7527)
+++ teem/trunk/src/hest/parsest.c 2025-09-30 04:27:30 UTC (rev 7528)
@@ -1446,6 +1446,20 @@
HPARM->verbosity);
}
+#if 0
+ { // checking on the private airEnums
+ char err[AIR_STRLEN_LARGE + 1];
+ static const airEnum *saenm[2] = {argst_ae, nast_ae};
+ for (uint ei = 0; ei < 2; ei++) {
+ if (airEnumCheck(err, saenm[ei])) {
+ fprintf(stderr, "%s: problem with enum \"%s\" (%u):\n%s", __func__,
+ saenm[ei]->name, ei, err);
+ exit(1);
+ }
+ }
+ }
+#endif
+
// error string song and dance
#define DO_ERR(WUT) \
biffAddf(HEST, "%s%s" WUT, _MEV_(HPARM->verbosity)); \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|