-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Migrate raw-dylib-alt-calling-convention
, raw-dylib-c
and redundant-libs
run-make
tests to rmake
#128107
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
Migrate raw-dylib-alt-calling-convention
, raw-dylib-c
and redundant-libs
run-make
tests to rmake
#128107
Changes from all commits
Commits
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 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,32 @@ | ||
// `raw-dylib` is a Windows-specific attribute which emits idata sections for the items in the | ||
// attached extern block, | ||
// so they may be linked against without linking against an import library. | ||
// To learn more, read https://github.com/rust-lang/rfcs/blob/master/text/2627-raw-dylib-kind.md | ||
// This test uses this feature alongside alternative calling conventions, checking that both | ||
// features are compatible and result in the expected output upon execution of the binary. | ||
// See https://github.com/rust-lang/rust/pull/84171 | ||
|
||
//@ only-x86 | ||
//@ only-windows | ||
|
||
use run_make_support::{build_native_dynamic_lib, diff, is_msvc, run, run_with_args, rustc}; | ||
|
||
fn main() { | ||
rustc() | ||
.crate_type("lib") | ||
.crate_name("raw_dylib_alt_calling_convention_test") | ||
.input("lib.rs") | ||
.run(); | ||
rustc().crate_type("bin").input("driver.rs").run(); | ||
build_native_dynamic_lib("extern"); | ||
let out = run("driver").stdout_utf8(); | ||
diff().expected_file("output.txt").actual_text("actual", out).normalize(r#"\r"#, "").run(); | ||
if is_msvc() { | ||
let out_msvc = run_with_args("driver", &["true"]).stdout_utf8(); | ||
diff() | ||
.expected_file("output.msvc.txt") | ||
.actual_text("actual", out_msvc) | ||
.normalize(r#"\r"#, "") | ||
.run(); | ||
} | ||
} |
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,29 @@ | ||
// `raw-dylib` is a Windows-specific attribute which emits idata sections for the items in the | ||
// attached extern block, | ||
// so they may be linked against without linking against an import library. | ||
// To learn more, read https://github.com/rust-lang/rfcs/blob/master/text/2627-raw-dylib-kind.md | ||
// This test is the simplest of the raw-dylib tests, simply smoke-testing that the feature | ||
// can be used to build an executable binary with an expected output with native C files | ||
// compiling into dynamic libraries. | ||
// See https://github.com/rust-lang/rust/pull/86419 | ||
|
||
//@ only-windows | ||
|
||
use run_make_support::{build_native_dynamic_lib, diff, run, rustc}; | ||
|
||
fn main() { | ||
rustc().crate_type("lib").crate_name("raw_dylib_test").input("lib.rs").run(); | ||
rustc().crate_type("bin").input("driver.rs").run(); | ||
rustc().crate_type("bin").crate_name("raw_dylib_test_bin").input("lib.rs").run(); | ||
build_native_dynamic_lib("extern_1"); | ||
build_native_dynamic_lib("extern_2"); | ||
let out_driver = run("driver").stdout_utf8(); | ||
let out_raw = run("raw_dylib_test_bin").stdout_utf8(); | ||
|
||
diff() | ||
.expected_file("output.txt") | ||
.actual_text("actual", out_driver) | ||
.normalize(r#"\r"#, "") | ||
.run(); | ||
diff().expected_file("output.txt").actual_text("actual", out_raw).normalize(r#"\r"#, "").run(); | ||
} |
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,34 @@ | ||
// rustc will remove one of the two redundant references to foo below. Depending | ||
// on which one gets removed, we'll get a linker error on SOME platforms (like | ||
// Linux). On these platforms, when a library is referenced, the linker will | ||
// only pull in the symbols needed _at that point in time_. If a later library | ||
// depends on additional symbols from the library, they will not have been pulled | ||
// in, and you'll get undefined symbols errors. | ||
// | ||
// So in this example, we need to ensure that rustc keeps the _later_ reference | ||
// to foo, and not the former one. | ||
|
||
//@ ignore-cross-compile | ||
// Reason: the compiled binary is executed | ||
//@ ignore-windows-msvc | ||
// Reason: this test links libraries via link.exe, which only accepts the import library | ||
// for the dynamic library, i.e. `foo.dll.lib`. However, build_native_dynamic_lib only | ||
// produces `foo.dll` - the dynamic library itself. To make this test work on MSVC, one | ||
// would need to derive the import library from the dynamic library. | ||
// See https://stackoverflow.com/questions/9360280/ | ||
|
||
use run_make_support::{ | ||
build_native_dynamic_lib, build_native_static_lib, cwd, is_msvc, rfs, run, rustc, | ||
}; | ||
|
||
fn main() { | ||
build_native_dynamic_lib("foo"); | ||
build_native_static_lib("bar"); | ||
build_native_static_lib("baz"); | ||
rustc() | ||
.args(&["-lstatic=bar", "-lfoo", "-lstatic=baz", "-lfoo"]) | ||
.input("main.rs") | ||
.print("link-args") | ||
.run(); | ||
run("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.