Skip to content

Commit

Permalink
appying formatter
Browse files Browse the repository at this point in the history
Signed-off-by: Reto Achermann <[email protected]>
  • Loading branch information
achreto committed Jul 18, 2023
1 parent 3f694ec commit 43beef5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions kernel/tests/s11_rackscale_benchmarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,8 @@ fn rackscale_memcached_benchmark(is_shmem: bool) {
output += prev.as_str();
output += matched.as_str();

let (prev, matched) = p.exp_regex(r#"Executing (\d+) queries with (\d+) threads"#)?;
let (prev, matched) =
p.exp_regex(r#"Executing (\d+) queries with (\d+) threads"#)?;
println!("> {}", matched);

output += prev.as_str();
Expand Down Expand Up @@ -1366,7 +1367,8 @@ fn rackscale_memcached_benchmark(is_shmem: bool) {
output += prev.as_str();
output += matched.as_str();

let (prev, matched) = p.exp_regex(r#"Executing (\d+) queries with (\d+) threads"#)?;
let (prev, matched) =
p.exp_regex(r#"Executing (\d+) queries with (\d+) threads"#)?;
println!("> {}", matched);

output += prev.as_str();
Expand Down
5 changes: 4 additions & 1 deletion usr/rkapps/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ fn main() {
.status()
.unwrap();

println!("CHECKOUT b6cea024897ef73a6f06935e6dd660ea74a5fe3c {:?}", out_dir);
println!(
"CHECKOUT b6cea024897ef73a6f06935e6dd660ea74a5fe3c {:?}",
out_dir
);
Command::new("git")
.args(&["checkout", "b6cea024897ef73a6f06935e6dd660ea74a5fe3c"])
.current_dir(&Path::new(&out_dir))
Expand Down

0 comments on commit 43beef5

Please sign in to comment.