Add --validators flag passthrough to plcc-check.sh - #53
Conversation
PR Summary by QodoPass --validators through plcc-check.sh and fix --fbc default
AI Description
Diagram
High-Level Assessment
Files changed (1)
|
|
🤖 Finished Review · ✅ Success · Started 1:10 PM UTC · Completed 1:23 PM UTC |
Code Review by Qodo
1.
|
ReviewFindingsMedium
Low
Previous runReviewFindingsMedium
Previous run (2)ReviewFindingsMedium
Low
Previous run (3)ReviewFindingsHigh
Low
Labels: PR adds new CLI flag passthrough capability to batch runner script |
|
🤖 Finished Review · ✅ Success · Started 2:11 PM UTC · Completed 2:25 PM UTC |
Superseded by updated review
|
🤖 Finished Review · ✅ Success · Started 3:30 PM UTC · Completed 3:43 PM UTC |
Pass the plcc2fbc --validators flag through the batch runner script, and fix --fbc mode to use --validators none instead of an empty string. Signed-off-by: Francesco Giudici <fgiudici@redhat.com>
|
🤖 Finished Review · ✅ Success · Started 4:05 PM UTC · Completed 4:18 PM UTC |
| @@ -31,25 +31,39 @@ Arguments: | |||
| Options: | |||
| -o <dir> Output directory for generated files (default: current directory) | |||
| --plcc Validate PLCC data only (skip FBC generation) | |||
There was a problem hiding this comment.
[low] documentation-clarity
Help text for --plcc flag says 'Validate PLCC data only (skip FBC generation)' but does not mention it can be combined with --validators to control which validators run. The two flags are orthogonal (--plcc controls output mode, --validators controls validation scope), and users may not realize they can use both together.
Suggested fix: Update the --plcc help text to clarify it can be combined with --validators, e.g., 'Validate PLCC data only (skip FBC generation); combine with --validators to control which validators run.'
Accept the
--validatorsargument in the plcc-check script and forward it to the plcc2fbc binary.Drop the
--fbcmode as the way to drop PLCC checks is to use--validators nonenow.Fixes #57