Skip to content

Commit

Permalink
GH-2100 Support ring, line, star; not just mesh
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Jan 18, 2024
1 parent f698122 commit 7df49a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestHarness/TestHelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def createArgumentParser(includeArgs, applicationSpecificArgs=AppArgs(), suppres
if "--nodes-file" in includeArgs:
thGrp.add_argument("--nodes-file", type=str, help=argparse.SUPPRESS if suppressHelp else "File containing nodes info in JSON format.")
if "-s" in includeArgs:
thGrp.add_argument("-s", type=str, help=argparse.SUPPRESS if suppressHelp else "topology", choices=["mesh"], default="mesh")
thGrp.add_argument("-s", type=str, help=argparse.SUPPRESS if suppressHelp else "topology", choices=['star', 'mesh', 'ring', 'line'], default="mesh")
if "-c" in includeArgs:
thGrp.add_argument("-c", type=str, help=argparse.SUPPRESS if suppressHelp else "chain strategy",
choices=[Utils.SyncResyncTag, Utils.SyncReplayTag, Utils.SyncNoneTag, Utils.SyncHardReplayTag],
Expand Down

0 comments on commit 7df49a4

Please sign in to comment.