Skip to content

Commit 138c4f5

Browse files
authored
Fix CI as follow-up to #3525 (#3537)
* Fix CI as follow-up to #3525 * More drcov
1 parent b739d19 commit 138c4f5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fuzzers/binary_only/qemu_coverage/src/fuzzer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ pub fn fuzz() {
134134
cov_path.set_file_name(format!("{coverage_name}-{core:03}.{coverage_extension}"));
135135

136136
let emulator_modules = tuple_list!(
137-
DrCovModule::builder().filename(cov_path.clone()).build(),
137+
DrCovModule::builder().path(cov_path).build(),
138138
SnapshotModule::new(),
139139
);
140140

fuzzers/binary_only/qemu_launcher/src/client.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ impl Client<'_> {
134134
if is_asan_host {
135135
let modules = tuple_list!(
136136
DrCovModule::builder()
137-
.filename(drcov.clone())
137+
.path(drcov.clone())
138138
.full_trace(true)
139139
.build(),
140140
unsafe {
@@ -150,7 +150,7 @@ impl Client<'_> {
150150
} else if is_asan_guest {
151151
let modules = tuple_list!(
152152
DrCovModule::builder()
153-
.filename(drcov.clone())
153+
.path(drcov.clone())
154154
.full_trace(true)
155155
.build(),
156156
AsanGuestModule::new(&env, asan_filter),
@@ -159,7 +159,7 @@ impl Client<'_> {
159159
instance_builder.build().run(args, modules, state)
160160
} else {
161161
let modules = tuple_list!(DrCovModule::builder()
162-
.filename(drcov.clone())
162+
.path(drcov.clone())
163163
.full_trace(true)
164164
.build(),);
165165

0 commit comments

Comments
 (0)