summaryrefslogtreecommitdiff
path: root/src/main/ProcessCommandLine.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-04 14:21:07 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-04 14:21:07 +0000
commit571294f9df58c86a04e932d3b6e4f955260a0516 (patch)
tree112a9882b72d0a14d571d3aa954c7a6cc399c477 /src/main/ProcessCommandLine.c
parent8de8b0234927ad108156039b02c65c27d6505ba8 (diff)
ActiveThorns has been replaced by ThornList
This is because we want to specify in the parameter file which thorns are actually "active", and not just compiled. The command line arguements have been changed to -T and -t instead of -A and -a git-svn-id: http://svn.cactuscode.org/flesh/trunk@640 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/ProcessCommandLine.c')
-rw-r--r--src/main/ProcessCommandLine.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/ProcessCommandLine.c b/src/main/ProcessCommandLine.c
index 92341929..190c9f95 100644
--- a/src/main/ProcessCommandLine.c
+++ b/src/main/ProcessCommandLine.c
@@ -60,27 +60,27 @@ int ProcessCommandLine(int *inargc, char ***inargv, tFleshConfig *ConfigData)
{"warning-level", required_argument, NULL, 'W'},
{"error-level", required_argument, NULL, 'E'},
{"redirect-stderr", no_argument, NULL, 'r'},
- {"list-active-thorns", no_argument, NULL, 'A'},
- {"test-thorn-active", required_argument, NULL, 'a'},
+ {"list-thorns", no_argument, NULL, 'T'},
+ {"test-thorn-compiled", required_argument, NULL, 't'},
{"version", no_argument, NULL, 'v'},
{0, 0, 0, 0}
};
- c = getopt_long_only (argc, argv, "hOo:x::W:E:rAa:v",
+ c = getopt_long_only (argc, argv, "hOo:x::W:E:rTt:v",
long_options, &option_index);
if (c == -1)
break;
switch (c)
{
- case 'a': CCTK_CommandLineTestThornActive(optarg); break;
+ case 't': CCTK_CommandLineTestThornCompiled(optarg); break;
case 'O': CCTK_CommandLineDescribeAllParameters(); break;
case 'o': CCTK_CommandLineDescribeParameter(optarg); break;
case 'x': CCTK_CommandLineTestParameters(optarg); break;
case 'W': CCTK_CommandLineWarningLevel(optarg); break;
case 'E': CCTK_CommandLineErrorLevel(optarg); break;
case 'r': CCTK_CommandLineRedirectStderr(); break;
- case 'A': CCTK_CommandLineListActiveThorns(); break;
+ case 'T': CCTK_CommandLineListThorns(); break;
case 'v': CCTK_CommandLineVersion(); break;
case 'h':
case '?':