You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test.add_argument("-l", "--list", action="store_true", help="List all available tests.")
84
84
test.add_argument("-f", "--from", default=test_cases[0].get_uuid(), type=str, help="First test UUID to run.")
85
85
test.add_argument("-t", "--to", default=test_cases[-1].get_uuid(), type=str, help="Last test UUID to run.")
86
-
test.add_argument("-o", "--only", nargs="+", type=str, default=[], metavar="L", help="Only run tests with specified properties.")
87
-
test.add_argument("-a", "--test-all", action="store_true", default=False, help="Run the Post Process Tests too.")
88
-
test.add_argument("-%", "--percent", type=int, default=100, help="Percentage of tests to run.")
89
-
test.add_argument("-m", "--max-attempts", type=int, default=1, help="Maximum number of attempts to run a test.")
90
-
test.add_argument( "--no-build", action="store_true", default=False, help="(Testing) Do not rebuild MFC.")
91
-
test.add_argument( "--no-examples", action="store_true", default=False, help="Do not test example cases." )
92
-
test.add_argument("--case-optimization", action="store_true", default=False, help="(GPU Optimization) Compile MFC targets with some case parameters hard-coded.")
93
-
test.add_argument( "--dry-run", action="store_true", default=False, help="Build and generate case files but do not run tests.")
86
+
test.add_argument("-o", "--only", nargs="+", type=str, default=[], metavar="L", help="Only run tests with specified properties.")
87
+
test.add_argument("-a", "--test-all", action="store_true", default=False, help="Run the Post Process Tests too.")
88
+
test.add_argument("-%", "--percent", type=int, default=100, help="Percentage of tests to run.")
89
+
test.add_argument("-m", "--max-attempts", type=int, default=1, help="Maximum number of attempts to run a test.")
90
+
test.add_argument( "--rdma-mpi", action="store_true", default=False, help="Run tests with RDMA MPI enabled")
91
+
test.add_argument( "--no-build", action="store_true", default=False, help="(Testing) Do not rebuild MFC.")
92
+
test.add_argument( "--no-examples", action="store_true", default=False, help="Do not test example cases." )
93
+
test.add_argument("--case-optimization", action="store_true", default=False, help="(GPU Optimization) Compile MFC targets with some case parameters hard-coded.")
94
+
test.add_argument( "--dry-run", action="store_true", default=False, help="Build and generate case files but do not run tests.")
94
95
95
96
test_meg=test.add_mutually_exclusive_group()
96
97
test_meg.add_argument("--generate", action="store_true", default=False, help="(Test Generation) Generate golden files.")
0 commit comments