We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84170f9 commit 3890eedCopy full SHA for 3890eed
go-runner/src/results/raw_result.rs
@@ -1,8 +1,7 @@
1
-use std::path::Path;
2
-
3
-use serde::{Deserialize, Serialize};
4
+use crate::prelude::*;
5
use crate::results::walltime_results::WalltimeBenchmark;
+use serde::{Deserialize, Serialize};
+use std::path::Path;
6
7
// WARN: Keep in sync with Golang "testing" fork (benchmark.go)
8
#[derive(Debug, Clone, Serialize, Deserialize)]
@@ -33,6 +32,8 @@ impl RawResult {
33
32
}
34
35
pub fn into_walltime_benchmark(self, file_path: Option<String>) -> WalltimeBenchmark {
+ warn!("Converting RawResult to WalltimeBenchmark: {self:?}");
36
+
37
let name = self.benchmark_name;
38
39
let file = file_path.as_deref().unwrap_or("unknown");
0 commit comments