|
From: <kin...@us...> - 2025-10-01 00:29:52
|
Revision: 7556
http://sourceforge.net/p/teem/code/7556
Author: kindlmann
Date: 2025-10-01 00:29:49 +0000 (Wed, 01 Oct 2025)
Log Message:
-----------
now working to show usage info
Modified Paths:
--------------
teem/trunk/tests/ctest/ten/tendlist.c
Modified: teem/trunk/tests/ctest/ten/tendlist.c
===================================================================
--- teem/trunk/tests/ctest/ten/tendlist.c 2025-09-30 23:32:00 UTC (rev 7555)
+++ teem/trunk/tests/ctest/ten/tendlist.c 2025-10-01 00:29:49 UTC (rev 7556)
@@ -47,9 +47,11 @@
fprintf(out, "%s: ################### END tend (ret=%d)\n", me, ret);
tci = 0;
+ hparm->respectDashDashHelp = AIR_TRUE;
+ const char *hargv[2] = {"--help", NULL};
do {
fprintf(out, "%s: ################### BEGIN tend %s\n", me, tendCmdList[tci]->name);
- ret = tendCmdList[tci]->main(0, NULL, tendCmdList[tci]->name, hparm);
+ ret = tendCmdList[tci]->main(1, hargv, tendCmdList[tci]->name, hparm);
fprintf(out, "%s: ################### END tend %s (ret=%d)\n", me,
tendCmdList[tci]->name, ret);
tci++;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|