Skip to content

Commit

Permalink
Fixed formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hunhoffe committed Nov 19, 2023
1 parent 2e4352c commit 25bc162
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion kernel/tests/s11_rackscale_benchmarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,6 @@ fn s11_rackscale_memcached_benchmark_sharded_nros() {
test.is_multi_node = true;
test.shmem_size = 0;


fn cmd_fn(num_cores: usize, num_clients: usize, arg: Option<MemcachedShardedConfig>) -> String {
let config = arg.expect("missing configuration");
let num_threads = num_cores / num_clients;
Expand Down
4 changes: 1 addition & 3 deletions kernel/testutils/src/runner_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,6 @@ pub fn log_qemu_out(args: &RunnerArgs, output: String) {
log_qemu_out_with_name(Some(args), String::from(""), output)
}



pub fn log_qemu_out_with_name(args: Option<&RunnerArgs>, name: String, output: String) {
if !output.is_empty() {
println!("\n===== QEMU LOG {}=====", name);
Expand Down Expand Up @@ -661,7 +659,7 @@ pub fn wait_for_sigterm_or_successful_exit_no_log(
}
}
}
_ => println!("{e}")
_ => println!("{e}"),
}

panic!("Qemu testing failed");
Expand Down

0 comments on commit 25bc162

Please sign in to comment.