summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/CommandLine.c6
-rw-r--r--src/main/ProcessCommandLine.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/src/main/CommandLine.c b/src/main/CommandLine.c
index 3bcbfe5c..e701b57a 100644
--- a/src/main/CommandLine.c
+++ b/src/main/CommandLine.c
@@ -61,7 +61,7 @@ int cctki_paramcheck_nprocs;
********************* Defines **********************
********************************************************************/
#define CACTUS_COMMANDLINE_OPTIONS \
- "[-h] [-O] [-o paramname] [-x [nprocs]] [-W n] [-E n] [-r] [-T] " \
+ "[-h] [-O] [-o paramname] [-W n] [-E n] [-r] [-T] " \
"[-t name] [-parameter-level <level>] [-v] <parameter_file_name>"
@@ -466,7 +466,6 @@ void CCTKi_CommandLineHelp (void)
"-h, -help : gets this help.\n"
"-O, -describe-all-parameters : describes all the parameters.\n"
"-o, -describe-parameter <paramname> : describe the given parameter.\n"
- "-x, -test-parameters [nprocs] : does a quick test of the parameter file\n"
" pretending to be on nprocs processors, \n"
" or 1 if not given.\n"
"-W, -warning-level <n> : Sets the warning level to n.\n"
@@ -479,6 +478,9 @@ void CCTKi_CommandLineHelp (void)
"-v, -version : Prints the version.\n"
"-i, -ignore-next : Ignores the next argument.\n";
+ /* test-parameter option to be added back when implemented
+ "-x, -test-parameters [nprocs] : does a quick test of the parameter file\n"
+ */
if (CCTK_MyProc (NULL) == 0)
{
diff --git a/src/main/ProcessCommandLine.c b/src/main/ProcessCommandLine.c
index 973d5cab..c0b6aab3 100644
--- a/src/main/ProcessCommandLine.c
+++ b/src/main/ProcessCommandLine.c
@@ -116,7 +116,7 @@ int CCTKi_ProcessCommandLine(int *inargc, char ***inargv, tFleshConfig *ConfigDa
{"help", no_argument, NULL, 'h'},
{"describe-all-parameters", optional_argument, NULL, 'O'},
{"describe-parameter", required_argument, NULL, 'o'},
- {"test-parameters", optional_argument, NULL, 'x'},
+ /*{"test-parameters", optional_argument, NULL, 'x'},*/
{"warning-level", required_argument, NULL, 'W'},
{"error-level", required_argument, NULL, 'E'},
{"parameter-level", required_argument, NULL, 256},