-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #124658 - GuillaumeGomez:migrate-to-run-make, r=jieyouxu
Migrate `run-make/doctests-keep-binaries` to new rmake.rs format r? ```@jieyouxu```
- Loading branch information
Showing
4 changed files
with
74 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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 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 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,68 @@ | ||
// Check that valid binaries are persisted by running them, regardless of whether the | ||
// --run or --no-run option is used. | ||
|
||
use run_make_support::{run, rustc, rustdoc, tmp_dir}; | ||
use std::fs::{create_dir, remove_dir_all}; | ||
use std::path::Path; | ||
|
||
fn setup_test_env<F: FnOnce(&Path, &Path)>(callback: F) { | ||
let out_dir = tmp_dir().join("doctests"); | ||
create_dir(&out_dir).expect("failed to create doctests folder"); | ||
rustc().input("t.rs").crate_type("rlib").run(); | ||
callback(&out_dir, &tmp_dir().join("libt.rlib")); | ||
remove_dir_all(out_dir); | ||
} | ||
|
||
fn check_generated_binaries() { | ||
run("doctests/t_rs_2_0/rust_out"); | ||
run("doctests/t_rs_8_0/rust_out"); | ||
} | ||
|
||
fn main() { | ||
setup_test_env(|out_dir, extern_path| { | ||
rustdoc() | ||
.input("t.rs") | ||
.arg("-Zunstable-options") | ||
.arg("--test") | ||
.arg("--persist-doctests") | ||
.arg(out_dir) | ||
.arg("--extern") | ||
.arg(format!("t={}", extern_path.display())) | ||
.run(); | ||
check_generated_binaries(); | ||
}); | ||
setup_test_env(|out_dir, extern_path| { | ||
rustdoc() | ||
.input("t.rs") | ||
.arg("-Zunstable-options") | ||
.arg("--test") | ||
.arg("--persist-doctests") | ||
.arg(out_dir) | ||
.arg("--extern") | ||
.arg(format!("t={}", extern_path.display())) | ||
.arg("--no-run") | ||
.run(); | ||
check_generated_binaries(); | ||
}); | ||
// Behavior with --test-run-directory with relative paths. | ||
setup_test_env(|_out_dir, extern_path| { | ||
let run_dir = "rundir"; | ||
let run_dir_path = tmp_dir().join("rundir"); | ||
create_dir(&run_dir_path).expect("failed to create rundir folder"); | ||
|
||
rustdoc() | ||
.current_dir(tmp_dir()) | ||
.input(std::env::current_dir().unwrap().join("t.rs")) | ||
.arg("-Zunstable-options") | ||
.arg("--test") | ||
.arg("--persist-doctests") | ||
.arg("doctests") | ||
.arg("--test-run-directory") | ||
.arg(run_dir) | ||
.arg("--extern") | ||
.arg("t=libt.rlib") | ||
.run(); | ||
|
||
remove_dir_all(run_dir_path); | ||
}); | ||
} |