-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Misc print request handling cleanups + a centralized test for print request stability gating #138552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Misc print request handling cleanups + a centralized test for print request stability gating #138552
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
ab7fb0d
Add a centralized test for print request stability gating
jieyouxu 5f8e092
Alphabetically sort `PrintKind` and enforce with tidy
jieyouxu f9eabc2
Extract print request stability gating and unknown print request help…
jieyouxu 24edbfb
Rename `PrintKind::{AllTargetSpecs,TargetSpec}` to `{AllTargetSpecsJs…
jieyouxu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
//! Check that we properly gate unstable print requests (`--print=KIND`) and require the user to | ||
//! specify `-Z unstable-options` to use unstable print requests. | ||
|
||
// We don't care about the exact *stdout* output (i.e. what the print requests actually give back) | ||
// for the purposes of this test. | ||
//@ dont-check-compiler-stdout | ||
|
||
// We want to check for the core error message of the unstable print requests being `-Z | ||
// unstable-options`-gated and not the help because the help can change with addition of a new print | ||
// request, which is not important for the purposes of this test. | ||
//@ dont-check-compiler-stderr | ||
|
||
// ======================= | ||
// Unstable print requests | ||
// ======================= | ||
|
||
//@ revisions: all_target_specs_json | ||
//@[all_target_specs_json] compile-flags: --print=all-target-specs-json | ||
//@[all_target_specs_json] error-pattern: the `-Z unstable-options` flag must also be passed | ||
|
||
//@ revisions: check_cfg | ||
//@[check_cfg] compile-flags: --print=check-cfg | ||
//@[check_cfg] error-pattern: the `-Z unstable-options` flag must also be passed | ||
|
||
//@ revisions: target_spec_json | ||
//@[target_spec_json] compile-flags: --print=target-spec-json | ||
//@[target_spec_json] error-pattern: the `-Z unstable-options` flag must also be passed | ||
|
||
// ======================= | ||
// Stable print requests | ||
// ======================= | ||
|
||
//@ revisions: calling_conventions | ||
//@[calling_conventions] compile-flags: --print=calling-conventions | ||
//@[calling_conventions] check-pass | ||
|
||
//@ revisions: cfg | ||
//@[cfg] compile-flags: --print=cfg | ||
//@[cfg] check-pass | ||
|
||
//@ revisions: code_models | ||
//@[code_models] compile-flags: --print=code-models | ||
//@[code_models] check-pass | ||
|
||
//@ revisions: crate_name | ||
//@[crate_name] compile-flags: --print=crate-name | ||
//@[crate_name] check-pass | ||
|
||
// Note: `--print=deployment_target` is only accepted on Apple targets. | ||
//@ revisions: deployment_target | ||
//@[deployment_target] only-apple | ||
//@[deployment_target] compile-flags: --print=deployment-target | ||
//@[deployment_target] check-pass | ||
|
||
//@ revisions: file_names | ||
//@[file_names] compile-flags: --print=file-names | ||
//@[file_names] check-pass | ||
|
||
//@ revisions: host_tuple | ||
//@[host_tuple] compile-flags: --print=host-tuple | ||
//@[host_tuple] check-pass | ||
|
||
//@ revisions: link_args | ||
//@[link_args] compile-flags: --print=link-args | ||
//@[link_args] check-pass | ||
|
||
//@ revisions: native_static_libs | ||
//@[native_static_libs] compile-flags: --print=native-static-libs | ||
//@[native_static_libs] check-pass | ||
|
||
//@ revisions: relocation_models | ||
//@[relocation_models] compile-flags: --print=relocation-models | ||
//@[relocation_models] check-pass | ||
|
||
//@ revisions: split_debuginfo | ||
//@[split_debuginfo] compile-flags: --print=split-debuginfo | ||
//@[split_debuginfo] check-pass | ||
|
||
//@ revisions: stack_protector_strategies | ||
//@[stack_protector_strategies] compile-flags: --print=stack-protector-strategies | ||
//@[stack_protector_strategies] check-pass | ||
|
||
//@ revisions: target_cpus | ||
//@[target_cpus] compile-flags: --print=target-cpus | ||
//@[target_cpus] check-pass | ||
|
||
//@ revisions: target_features | ||
//@[target_features] compile-flags: --print=target-features | ||
//@[target_features] check-pass | ||
|
||
//@ revisions: target_libdir | ||
//@[target_libdir] compile-flags: --print=target-libdir | ||
//@[target_libdir] check-pass | ||
|
||
//@ revisions: target_list | ||
//@[target_list] compile-flags: --print=target-list | ||
//@[target_list] check-pass | ||
|
||
//@ revisions: tls_models | ||
//@[tls_models] compile-flags: --print=tls-models | ||
//@[tls_models] check-pass | ||
|
||
fn main() {} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.