Skip to content

Commit ab71510

Browse files
committed
rewrite incremental-debugger-visualiser to rmake
1 parent a3b7c29 commit ab71510

File tree

4 files changed

+83
-50
lines changed

4 files changed

+83
-50
lines changed

src/tools/run-make-support/src/lib.rs

+22
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,28 @@ pub fn set_host_rpath(cmd: &mut Command) {
271271
});
272272
}
273273

274+
/// Read the contents of a file that cannot simply be read by
275+
/// read_to_string, due to invalid utf8 data, then assert that it contains `expected`.
276+
#[track_caller]
277+
pub fn invalid_utf8_contains_str<P: AsRef<Path>>(path: P, expected: &str) {
278+
use std::io::Read;
279+
let mut file = std::fs::File::open(path).unwrap();
280+
let mut buffer = Vec::new();
281+
file.read_to_end(&mut buffer).unwrap();
282+
assert!(String::from_utf8_lossy(&buffer).contains(expected));
283+
}
284+
285+
/// Read the contents of a file that cannot simply be read by
286+
/// read_to_string, due to invalid utf8 data, then assert that it does not contain `expected`.
287+
#[track_caller]
288+
pub fn invalid_utf8_not_contains_str<P: AsRef<Path>>(path: P, expected: &str) {
289+
use std::io::Read;
290+
let mut file = std::fs::File::open(path).unwrap();
291+
let mut buffer = Vec::new();
292+
file.read_to_end(&mut buffer).unwrap();
293+
assert!(!String::from_utf8_lossy(&buffer).contains(expected));
294+
}
295+
274296
/// Copy a directory into another.
275297
pub fn copy_dir_all(src: impl AsRef<Path>, dst: impl AsRef<Path>) {
276298
fn copy_dir_all_inner(src: impl AsRef<Path>, dst: impl AsRef<Path>) -> io::Result<()> {

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ run-make/inaccessible-temp-dir/Makefile
6767
run-make/include_bytes_deps/Makefile
6868
run-make/incr-add-rust-src-component/Makefile
6969
run-make/incr-foreign-head-span/Makefile
70-
run-make/incremental-debugger-visualizer/Makefile
7170
run-make/incremental-session-fail/Makefile
7271
run-make/inline-always-many-cgu/Makefile
7372
run-make/interdependent-c-libraries/Makefile

tests/run-make/incremental-debugger-visualizer/Makefile

-49
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
// This test makes sure that changes to files referenced via //[debugger_visualizer]
2+
// are picked up when compiling incrementally.
3+
4+
// We have to copy the source to $(TMPDIR) because Github CI mounts the source
5+
// directory as readonly. We need to apply modifications to some of the source
6+
// file.
7+
8+
use run_make_support::{
9+
fs_wrapper, invalid_utf8_contains_str, invalid_utf8_not_contains_str, rustc,
10+
};
11+
use std::io::Read;
12+
13+
fn main() {
14+
fs_wrapper::create_file("foo.py");
15+
fs_wrapper::write("foo.py", "GDB script v1");
16+
fs_wrapper::create_file("foo.natvis");
17+
fs_wrapper::write("foo.py", "Natvis v1");
18+
rustc()
19+
.input("foo.rs")
20+
.crate_type("rlib")
21+
.emit("metadata")
22+
.incremental("incremental")
23+
.arg("-Zincremental-verify-ich")
24+
.run();
25+
26+
invalid_utf8_contains_str("libfoo.rmeta", "GDB script v1");
27+
invalid_utf8_contains_str("libfoo.rmeta", "Natvis v1");
28+
29+
// Change only the GDB script and check that the change has been picked up
30+
fs_wrapper::remove_file("foo.py");
31+
fs_wrapper::create_file("foo.py");
32+
fs_wrapper::write("foo.py", "GDB script v2");
33+
rustc()
34+
.input("foo.rs")
35+
.crate_type("rlib")
36+
.emit("metadata")
37+
.incremental("incremental")
38+
.arg("-Zincremental-verify-ich")
39+
.run();
40+
41+
invalid_utf8_contains_str("libfoo.rmeta", "GDB script v2");
42+
invalid_utf8_not_contains_str("libfoo.rmeta", "GDB script v1");
43+
invalid_utf8_contains_str("libfoo.rmeta", "Natvis v1");
44+
45+
// Now change the Natvis version and check that the change has been picked up
46+
fs_wrapper::remove_file("foo.natvis");
47+
fs_wrapper::create_file("foo.natvis");
48+
fs_wrapper::write("foo.py", "Natvis v2");
49+
rustc()
50+
.input("foo.rs")
51+
.crate_type("rlib")
52+
.emit("metadata")
53+
.incremental("incremental")
54+
.arg("-Zincremental-verify-ich")
55+
.run();
56+
57+
invalid_utf8_contains_str("libfoo.rmeta", "GDB script v2");
58+
invalid_utf8_not_contains_str("libfoo.rmeta", "GDB script v1");
59+
invalid_utf8_not_contains_str("libfoo.rmeta", "Natvis v1");
60+
invalid_utf8_contains_str("libfoo.rmeta", "Natvis v2");
61+
}

0 commit comments

Comments
 (0)