Skip to content

Commit

Permalink
add --no-build to test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
henryleberre committed Mar 8, 2024
1 parent a1f9900 commit afbb5f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolchain/mfc/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def add_common_arguments(p, mask = None):
test.add_argument("-a", "--test-all", action="store_true", default=False, help="Run the Post Process Tests too.")
test.add_argument("-%", "--percent", type=int, default=100, help="Percentage of tests to run.")
test.add_argument("-m", "--max-attempts", type=int, default=3, help="Maximum number of attempts to run a test.")

test.add_argument("--case-optimization", action="store_true", default=False, help="(GPU Optimization) Compile MFC targets with some case parameters hard-coded.")
test.add_argument( "--no-build", action="store_true", default=False, help="(Testing) Do not rebuild MFC.")
test.add_argument("--case-optimization", action="store_true", default=False, help="(GPU Optimization) Compile MFC targets with some case parameters hard-coded.")

test_meg = test.add_mutually_exclusive_group()
test_meg.add_argument("--generate", action="store_true", default=False, help="(Test Generation) Generate golden files.")
Expand Down

0 comments on commit afbb5f0

Please sign in to comment.