| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #797 +/- ##
==========================================
- Coverage 92.31% 92.25% -0.07%
==========================================
Files 35 35
Lines 7466 7471 +5
Branches 388 388
==========================================
Hits 6892 6892
- Misses 433 437 +4
- Partials 141 142 +1 ☔ View full report in Codecov by Harness.
|
Sorry, something went wrong.
Merging this PR will not alter performance✅ 20 untouched benchmarks Comparing wtcpython:fix/xargs-reject-multiline-quotes (eeb7ead) with main (3de01a0) |
Sorry, something went wrong.
|
Commit 37bf474 has test result changes: bfs testsuite: Test results comparison: Current: TOTAL: 314 / PASSED: 266 / FAILED: 42 / SKIPPED: 6 Reference: TOTAL: 314 / PASSED: 267 / FAILED: 41 / SKIPPED: 6 Changes from main branch: TOTAL: +0 PASSED: -1 FAILED: +1 New test failures (1): - gnu/okdir_path_relative |
Sorry, something went wrong.
|
Commit c564172 has test result changes: bfs testsuite: Test results comparison: Current: TOTAL: 317 / PASSED: 274 / FAILED: 37 / SKIPPED: 6 Reference: TOTAL: 313 / PASSED: 267 / FAILED: 40 / SKIPPED: 6 Changes from main branch: TOTAL: +4 PASSED: +7 FAILED: -3 Test improvements (3): + gnu/execdir_path_dot + gnu/execdir_path_empty + gnu/execdir_path_relative |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Fixes #776.
The whitespace-delimited argument reader allowed single and double quotes to span input lines. Quotes opened on one line could be closed on a later line, so malformed input was combined into arguments instead of rejected.
Reject a newline while a quote is open, matching GNU and BSD xargs behavior. Add regression coverage for both quote types when reading through --arg-file.