-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate
run-make/doctests-runtool
to rmake
- Loading branch information
1 parent
4ebd78b
commit 4328880
Showing
3 changed files
with
39 additions
and
21 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 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,39 @@ | ||
// Tests behavior of rustdoc `--runtool`. | ||
|
||
use run_make_support::{rustc, rustdoc, tmp_dir}; | ||
use std::env::current_dir; | ||
use std::fs::{create_dir, remove_dir_all}; | ||
use std::path::PathBuf; | ||
|
||
fn mkdir(name: &str) -> PathBuf { | ||
let dir = tmp_dir().join(name); | ||
create_dir(&dir).expect("failed to create doctests folder"); | ||
dir | ||
} | ||
|
||
// Behavior with --runtool with relative paths and --test-run-directory. | ||
fn main() { | ||
let run_dir_name = "rundir"; | ||
let run_dir = mkdir(run_dir_name); | ||
let run_tool = mkdir("runtool"); | ||
let run_tool_binary = run_tool.join("runtool"); | ||
|
||
rustc().input("t.rs").crate_type("rlib").run(); | ||
rustc().input("runtool.rs").arg("-o").arg(&run_tool_binary).run(); | ||
|
||
rustdoc() | ||
.input(current_dir().unwrap().join("t.rs")) | ||
.arg("-Zunstable-options") | ||
.arg("--test") | ||
.arg("--test-run-directory") | ||
.arg(run_dir_name) | ||
.arg("--runtool") | ||
.arg(&run_tool_binary) | ||
.arg("--extern") | ||
.arg("t=libt.rlib") | ||
.current_dir(tmp_dir()) | ||
.run(); | ||
|
||
remove_dir_all(run_dir); | ||
remove_dir_all(run_tool); | ||
} |