Skip to content

Commit a732fa6

Browse files
committed
feat: bump valgrind-codspeed to 3.25.1-3codspeed1
adding inlined function detection
1 parent d5fae3d commit a732fa6

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ use log::log_enabled;
1919
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
2020
pub const MONGODB_TRACER_VERSION: &str = "cs-mongo-tracer-v0.2.0";
2121

22-
const VALGRIND_CODSPEED_BASE_VERSION: &str = "3.24.0";
22+
const VALGRIND_CODSPEED_BASE_VERSION: &str = "3.25.1";
2323
lazy_static! {
2424
pub static ref VALGRIND_CODSPEED_VERSION: String =
2525
format!("{VALGRIND_CODSPEED_BASE_VERSION}.codspeed");
2626
pub static ref VALGRIND_CODSPEED_DEB_VERSION: String =
27-
format!("{VALGRIND_CODSPEED_BASE_VERSION}-0codspeed1");
27+
format!("{VALGRIND_CODSPEED_BASE_VERSION}-3codspeed1");
2828
}
2929

3030
#[tokio::main(flavor = "current_thread")]

src/run/runner/valgrind/measure.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ lazy_static! {
2525
"-q",
2626
"--tool=callgrind",
2727
"--trace-children=yes",
28+
"--read-inline-info=yes",
2829
"--cache-sim=yes",
2930
"--I1=32768,8,64",
3031
"--D1=32768,8,64",

src/run/runner/valgrind/setup.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ mod tests {
103103
};
104104
assert_snapshot!(
105105
get_codspeed_valgrind_filename(&system_info).unwrap(),
106-
@"valgrind_3.24.0-0codspeed1_ubuntu-22.04_amd64.deb"
106+
@"valgrind_3.25.1-3codspeed1_ubuntu-22.04_amd64.deb"
107107
);
108108
}
109109

@@ -117,7 +117,7 @@ mod tests {
117117
};
118118
assert_snapshot!(
119119
get_codspeed_valgrind_filename(&system_info).unwrap(),
120-
@"valgrind_3.24.0-0codspeed1_ubuntu-24.04_amd64.deb"
120+
@"valgrind_3.25.1-3codspeed1_ubuntu-24.04_amd64.deb"
121121
);
122122
}
123123

@@ -131,7 +131,7 @@ mod tests {
131131
};
132132
assert_snapshot!(
133133
get_codspeed_valgrind_filename(&system_info).unwrap(),
134-
@"valgrind_3.24.0-0codspeed1_ubuntu-22.04_amd64.deb"
134+
@"valgrind_3.25.1-3codspeed1_ubuntu-22.04_amd64.deb"
135135
);
136136
}
137137

@@ -145,7 +145,7 @@ mod tests {
145145
};
146146
assert_snapshot!(
147147
get_codspeed_valgrind_filename(&system_info).unwrap(),
148-
@"valgrind_3.24.0-0codspeed1_ubuntu-22.04_arm64.deb"
148+
@"valgrind_3.25.1-3codspeed1_ubuntu-22.04_arm64.deb"
149149
);
150150
}
151151
}

0 commit comments

Comments
 (0)