Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
207ee73
std: refactor UNIX random data generation
joboet Aug 4, 2024
ba3cb15
Remove unused lifetime parameter from spawn_unchecked
dtolnay Aug 6, 2024
715728f
Refactor `powerpc64` call ABI handling
beetrees Aug 4, 2024
99c0d76
std: use `/scheme/rand` on Redox
joboet Aug 12, 2024
83727ec
don't use rustflags for `--rustc-args`
lqd Aug 8, 2024
754f565
don't use `--rustc-args` to test the stdlib's size optimizations feature
lqd Aug 8, 2024
bc9ca29
clarify that `--rustc-args` is for compiletest tests
lqd Aug 8, 2024
0ad798a
remove unexpected `--rustc-args` from `./x miri`
lqd Aug 12, 2024
5e87256
rename `./x test`'s `--rustc-args` to `--compiletest-rustc-args`
lqd Aug 12, 2024
ee5d15c
regenerate `./x` completions
lqd Aug 12, 2024
2abfa35
add change tracker notice
lqd Aug 12, 2024
66c93ac
CFI: Move CFI ui tests to cfi directory
rcvalle Aug 12, 2024
6d91017
Extract a helper method for blessing in `Diff`
Zalathar Aug 13, 2024
cc58cf6
Fix blessing of rmake tests
Zalathar Aug 13, 2024
0cfbfa9
Create a `TargetSelection` method for recognizing `*-windows-gnu` tar…
Kobzol Aug 11, 2024
1c0c2c3
Implement `AsRef<Path>` for `TargetSelection`
Kobzol Aug 11, 2024
00d040e
Rollup merge of #128643 - beetrees:ppc64-abi-fix, r=bjorn3
matthiaskrgr Aug 13, 2024
c977deb
Rollup merge of #128655 - joboet:play_with_the_dice, r=ChrisDenton
matthiaskrgr Aug 13, 2024
37b9567
Rollup merge of #128745 - dtolnay:spawnunchecked, r=workingjubilee
matthiaskrgr Aug 13, 2024
0643c3b
Rollup merge of #128841 - lqd:rustc-args, r=onur-ozkan
matthiaskrgr Aug 13, 2024
9d9c9ac
Rollup merge of #128983 - Kobzol:bootstrap-target, r=onur-ozkan
matthiaskrgr Aug 13, 2024
41aa963
Rollup merge of #129026 - rcvalle:rust-cfi-move-cfi-ui-tests-to-cfi-d…
matthiaskrgr Aug 13, 2024
42f70c2
Rollup merge of #129040 - Zalathar:bless-rmake, r=jieyouxu
matthiaskrgr Aug 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
clarify that --rustc-args is for compiletest tests
  • Loading branch information
lqd committed Aug 12, 2024
commit bc9ca2902ea3fa25b93989ccfae737a40db3c544
2 changes: 1 addition & 1 deletion src/bootstrap/src/core/config/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ pub enum Subcommand {
/// extra arguments to be passed for the test tool being used
/// (e.g. libtest, compiletest or rustdoc)
test_args: Vec<String>,
/// extra options to pass the compiler when running tests
/// extra options to pass the compiler when running compiletest tests
#[arg(long, value_name = "ARGS", allow_hyphen_values(true))]
rustc_args: Vec<String>,
#[arg(long)]
Expand Down
2 changes: 1 addition & 1 deletion src/etc/completions/x.py.fish
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ complete -c x.py -n "__fish_seen_subcommand_from doc" -l enable-bolt-settings -d
complete -c x.py -n "__fish_seen_subcommand_from doc" -l skip-stage0-validation -d 'Skip stage0 compiler validation'
complete -c x.py -n "__fish_seen_subcommand_from doc" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c x.py -n "__fish_seen_subcommand_from test" -l test-args -d 'extra arguments to be passed for the test tool being used (e.g. libtest, compiletest or rustdoc)' -r
complete -c x.py -n "__fish_seen_subcommand_from test" -l rustc-args -d 'extra options to pass the compiler when running tests' -r
complete -c x.py -n "__fish_seen_subcommand_from test" -l rustc-args -d 'extra options to pass the compiler when running compiletest tests' -r
complete -c x.py -n "__fish_seen_subcommand_from test" -l extra-checks -d 'comma-separated list of other files types to check (accepts py, py:lint, py:fmt, shell)' -r
complete -c x.py -n "__fish_seen_subcommand_from test" -l compare-mode -d 'mode describing what file the actual ui output will be compared to' -r
complete -c x.py -n "__fish_seen_subcommand_from test" -l pass -d 'force {check,build,run}-pass tests to this mode' -r
Expand Down
2 changes: 1 addition & 1 deletion src/etc/completions/x.py.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ Register-ArgumentCompleter -Native -CommandName 'x.py' -ScriptBlock {
}
'x.py;test' {
[CompletionResult]::new('--test-args', 'test-args', [CompletionResultType]::ParameterName, 'extra arguments to be passed for the test tool being used (e.g. libtest, compiletest or rustdoc)')
[CompletionResult]::new('--rustc-args', 'rustc-args', [CompletionResultType]::ParameterName, 'extra options to pass the compiler when running tests')
[CompletionResult]::new('--rustc-args', 'rustc-args', [CompletionResultType]::ParameterName, 'extra options to pass the compiler when running compiletest tests')
[CompletionResult]::new('--extra-checks', 'extra-checks', [CompletionResultType]::ParameterName, 'comma-separated list of other files types to check (accepts py, py:lint, py:fmt, shell)')
[CompletionResult]::new('--compare-mode', 'compare-mode', [CompletionResultType]::ParameterName, 'mode describing what file the actual ui output will be compared to')
[CompletionResult]::new('--pass', 'pass', [CompletionResultType]::ParameterName, 'force {check,build,run}-pass tests to this mode')
Expand Down
2 changes: 1 addition & 1 deletion src/etc/completions/x.py.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ _arguments "${_arguments_options[@]}" \
(test)
_arguments "${_arguments_options[@]}" \
'*--test-args=[extra arguments to be passed for the test tool being used (e.g. libtest, compiletest or rustdoc)]:ARGS: ' \
'*--rustc-args=[extra options to pass the compiler when running tests]:ARGS: ' \
'*--rustc-args=[extra options to pass the compiler when running compiletest tests]:ARGS: ' \
'--extra-checks=[comma-separated list of other files types to check (accepts py, py\:lint, py\:fmt, shell)]:EXTRA_CHECKS: ' \
'--compare-mode=[mode describing what file the actual ui output will be compared to]:COMPARE MODE: ' \
'--pass=[force {check,build,run}-pass tests to this mode]:check | build | run: ' \
Expand Down