-
Couldn't load subscription status.
- Fork 13.9k
Use rmake for windows- run-make tests
#125613
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
Changes from all commits
1e6544a
f08e00f
e463f6f
e03f9cb
5ec0c00
f34bbde
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| //! Ensure that we aren't relying on any non-system DLLs when running | ||
| //! a "hello world" application by setting `PATH` to `C:\Windows\System32`. | ||
| //@ only-windows | ||
|
|
||
| use run_make_support::{rustc, tmp_dir}; | ||
| use std::env; | ||
| use std::path::PathBuf; | ||
| use std::process::Command; | ||
|
|
||
| fn main() { | ||
| rustc().input("hello.rs").run(); | ||
|
|
||
| let windows_dir = env::var("SystemRoot").unwrap(); | ||
| let system32: PathBuf = [&windows_dir, "System32"].iter().collect(); | ||
| // Note: This does not use the support wrappers so that we can precisely control the PATH | ||
| let exe = tmp_dir().join("hello.exe"); | ||
| let status = Command::new(exe).env("PATH", &system32).spawn().unwrap().wait().unwrap(); | ||
| if !status.success() { | ||
| panic!("Command failed!\noutput status: `{status}`"); | ||
| } | ||
| } | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| //@ only-windows | ||
| //@ needs-rust-lld | ||
|
|
||
| use run_make_support::rustc; | ||
|
|
||
| fn main() { | ||
| // Ensure that LLD can link when an .rlib contains a synthetic object | ||
| // file referencing exported or used symbols. | ||
| rustc().input("foo.rs").linker("rust-lld").run(); | ||
|
|
||
| // Ensure that LLD can link when /WHOLEARCHIVE: is used with an .rlib. | ||
| // Previously, lib.rmeta was not marked as (trivially) SAFESEH-aware. | ||
| rustc().input("baz.rs").run(); | ||
| rustc().input("bar.rs").linker("rust-lld").link_arg("/WHOLEARCHIVE:libbaz.rlib").run(); | ||
| } |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| //@ only-windows | ||
|
|
||
| use run_make_support::{run, rustc, tmp_dir}; | ||
|
|
||
| // On Windows `Command` uses `CreateProcessW` to run a new process. | ||
| // However, in the past std used to not pass in the application name, leaving | ||
| // `CreateProcessW` to use heuristics to guess the intended name from the | ||
| // command line string. Sometimes this could go very wrong. | ||
| // E.g. in Rust 1.0 `Command::new("foo").arg("bar").spawn()` will try to launch | ||
| // `foo bar.exe` if foo.exe does not exist. Which is clearly not desired. | ||
|
|
||
| fn main() { | ||
| let out_dir = tmp_dir(); | ||
| rustc().input("hello.rs").output(out_dir.join("hopefullydoesntexist bar.exe")).run(); | ||
| rustc().input("spawn.rs").run(); | ||
| run("spawn"); | ||
| } |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| //@ only-msvc | ||
|
|
||
| // Tests that WS2_32.dll is not unnecessarily linked, see issue #85441 | ||
|
|
||
| use run_make_support::object::{self, read::Object}; | ||
| use run_make_support::{rustc, tmp_dir}; | ||
| use std::fs; | ||
|
|
||
| fn main() { | ||
| rustc().input("empty.rs").run(); | ||
| rustc().input("tcp.rs").run(); | ||
|
|
||
| assert!(!links_ws2_32("empty.exe")); | ||
| assert!(links_ws2_32("tcp.exe")); | ||
| } | ||
|
|
||
| fn links_ws2_32(exe: &str) -> bool { | ||
| let path = tmp_dir().join(exe); | ||
| let binary_data = fs::read(path).unwrap(); | ||
| let file = object::File::parse(&*binary_data).unwrap(); | ||
| for import in file.imports().unwrap() { | ||
| if import.library().eq_ignore_ascii_case(b"WS2_32.dll") { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like how this test reads :3 |
||
| return true; | ||
| } | ||
| } | ||
| false | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| use std::net::TcpListener; | ||
|
|
||
| fn main() { | ||
| TcpListener::bind("127.0.0.1:80").unwrap(); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| //@ run-pass | ||
| #![windows_subsystem = "console"] | ||
|
|
||
| fn main() {} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| //@ run-pass | ||
| #![windows_subsystem = "windows"] | ||
|
|
||
| fn main() {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remark (to myself): we should probably expose the
handle_failed_outputhelper to make this less repetitive.