Skip to content

Commit 3890eed

Browse files
committed
wip: log raw results
1 parent 84170f9 commit 3890eed

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

go-runner/src/results/raw_result.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
use std::path::Path;
2-
3-
use serde::{Deserialize, Serialize};
4-
1+
use crate::prelude::*;
52
use crate::results::walltime_results::WalltimeBenchmark;
3+
use serde::{Deserialize, Serialize};
4+
use std::path::Path;
65

76
// WARN: Keep in sync with Golang "testing" fork (benchmark.go)
87
#[derive(Debug, Clone, Serialize, Deserialize)]
@@ -33,6 +32,8 @@ impl RawResult {
3332
}
3433

3534
pub fn into_walltime_benchmark(self, file_path: Option<String>) -> WalltimeBenchmark {
35+
warn!("Converting RawResult to WalltimeBenchmark: {self:?}");
36+
3637
let name = self.benchmark_name;
3738

3839
let file = file_path.as_deref().unwrap_or("unknown");

0 commit comments

Comments
 (0)