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
Rollup merge of #134809 - clubby789:nocapture, r=jieyouxu
Add `--no-capture`/`--nocapture` as bootstrap arguments
I often try `x test ... --nocapture` => 'unknown argument' => `x test ... -- --nocapture`. As we forward several other compiletest flags, let's recognise this one in bootstrap as well.
summary:"`build.vendor` is now enabled by default for dist/tarball sources when 'vendor' directory and '.cargo/config.toml' file are present.",
317
317
},
318
+
ChangeInfo{
319
+
change_id:134809,
320
+
severity:ChangeSeverity::Warning,
321
+
summary:"compiletest now takes `--no-capture` instead of `--nocapture`; bootstrap now accepts `--no-capture` as an argument to test commands directly",
Copy file name to clipboardExpand all lines: src/etc/completions/x.fish
+1
Original file line number
Diff line number
Diff line change
@@ -319,6 +319,7 @@ complete -c x -n "__fish_x_using_subcommand test" -l bless -d 'whether to automa
319
319
complete-c x -n"__fish_x_using_subcommand test"-l force-rerun -d'rerun tests even if the inputs are unchanged'
320
320
complete-c x -n"__fish_x_using_subcommand test"-l only-modified -d'only run tests that result has been changed'
321
321
complete-c x -n"__fish_x_using_subcommand test"-l rustfix-coverage -d'enable this to generate a Rustfix coverage file, which is saved in `/<build_base>/rustfix_missing_coverage.txt`'
322
+
complete-c x -n"__fish_x_using_subcommand test"-l no-capture -d'don\'t capture stdout/stderr of tests'
322
323
complete-c x -n"__fish_x_using_subcommand test"-s v -l verbose -d'use verbose output (-vv for very verbose)'
323
324
complete-c x -n"__fish_x_using_subcommand test"-s i -l incremental -d'use incremental compilation'
324
325
complete-c x -n"__fish_x_using_subcommand test"-l include-default-paths -d'include default paths in addition to the provided ones'
[CompletionResult]::new('--force-rerun','--force-rerun', [CompletionResultType]::ParameterName,'rerun tests even if the inputs are unchanged')
367
367
[CompletionResult]::new('--only-modified','--only-modified', [CompletionResultType]::ParameterName,'only run tests that result has been changed')
368
368
[CompletionResult]::new('--rustfix-coverage','--rustfix-coverage', [CompletionResultType]::ParameterName,'enable this to generate a Rustfix coverage file, which is saved in `/<build_base>/rustfix_missing_coverage.txt`')
369
+
[CompletionResult]::new('--no-capture','--no-capture', [CompletionResultType]::ParameterName,'don''t capture stdout/stderr of tests')
369
370
[CompletionResult]::new('-v','-v', [CompletionResultType]::ParameterName,'use verbose output (-vv for very verbose)')
370
371
[CompletionResult]::new('--verbose','--verbose', [CompletionResultType]::ParameterName,'use verbose output (-vv for very verbose)')
complete-c x.py -n"__fish_x.py_using_subcommand test"-l force-rerun -d'rerun tests even if the inputs are unchanged'
320
320
complete-c x.py -n"__fish_x.py_using_subcommand test"-l only-modified -d'only run tests that result has been changed'
321
321
complete-c x.py -n"__fish_x.py_using_subcommand test"-l rustfix-coverage -d'enable this to generate a Rustfix coverage file, which is saved in `/<build_base>/rustfix_missing_coverage.txt`'
322
+
complete-c x.py -n"__fish_x.py_using_subcommand test"-l no-capture -d'don\'t capture stdout/stderr of tests'
322
323
complete-c x.py -n"__fish_x.py_using_subcommand test"-s v -l verbose -d'use verbose output (-vv for very verbose)'
323
324
complete-c x.py -n"__fish_x.py_using_subcommand test"-s i -l incremental -d'use incremental compilation'
324
325
complete-c x.py -n"__fish_x.py_using_subcommand test"-l include-default-paths -d'include default paths in addition to the provided ones'
[CompletionResult]::new('--force-rerun','--force-rerun', [CompletionResultType]::ParameterName,'rerun tests even if the inputs are unchanged')
367
367
[CompletionResult]::new('--only-modified','--only-modified', [CompletionResultType]::ParameterName,'only run tests that result has been changed')
368
368
[CompletionResult]::new('--rustfix-coverage','--rustfix-coverage', [CompletionResultType]::ParameterName,'enable this to generate a Rustfix coverage file, which is saved in `/<build_base>/rustfix_missing_coverage.txt`')
369
+
[CompletionResult]::new('--no-capture','--no-capture', [CompletionResultType]::ParameterName,'don''t capture stdout/stderr of tests')
369
370
[CompletionResult]::new('-v','-v', [CompletionResultType]::ParameterName,'use verbose output (-vv for very verbose)')
370
371
[CompletionResult]::new('--verbose','--verbose', [CompletionResultType]::ParameterName,'use verbose output (-vv for very verbose)')
0 commit comments