Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 724f627

Browse files
committedFeb 7, 2025·
test
1 parent 523a89b commit 724f627

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed
 

‎host/src/unloading/module.rs

-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ impl<E: ModuleExportsForHost> Module<E> {
6161
let library = self.library.take();
6262
let handle = WindowsLibrary::from(library).into_raw();
6363

64-
// TODO: is it needed if dbg help remove module will be moved?
6564
// re-initializing self.library because windows_dealloc::set
6665
// takes module instance by value
6766
// (shouldn't be expensive, just looks weird)
@@ -80,8 +79,6 @@ impl<E: ModuleExportsForHost> Module<E> {
8079
windows_dealloc::successfully_called(),
8180
"windows dealloc callback must be called in library.close()"
8281
);
83-
84-
// dbghelp::refresh_modules(dbghelp);
8582
}
8683

8784
// final unload check

‎testing/runner/src/code_change.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ pub fn main() {
1414

1515
build_debug();
1616
run_host("debug");
17-
// reset_iteration();
17+
reset_iteration();
1818

19-
// build_release();
20-
// run_host("release");
19+
build_release();
20+
run_host("release");
2121
}
2222

2323
fn run_host(directory: &str) {

‎testing/runner/src/main.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ const TEST_FEATURES: &[&str] = &[
2626
];
2727

2828
fn main() {
29-
// test_features("debug");
30-
// test_features("release");
29+
test_features("debug");
30+
test_features("release");
3131

32-
// multiple_modules::main();
32+
multiple_modules::main();
3333
code_change::main();
34-
// panic_in_interface_host::main();
34+
panic_in_interface_host::main();
3535

36-
// backtrace_unloading_host_as_dylib::main();
36+
backtrace_unloading_host_as_dylib::main();
3737

3838
println!();
3939
println!();

0 commit comments

Comments
 (0)
Please sign in to comment.