Skip to content

Commit

Permalink
Add additional memcached benchmark memory for sharded linux
Browse files Browse the repository at this point in the history
  • Loading branch information
hunhoffe committed Nov 20, 2023
1 parent d775ff6 commit 9318ba5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/tests/s11_rackscale_benchmarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -809,12 +809,12 @@ fn rackscale_memcached_checkout() {
}

println!(
"CHECKOUT e585c23e578d79b18d703b06f26b6e10a502d129 {:?}",
"CHECKOUT a703eedd8032ff1e083e8c5972eacc95738c797b {:?}",
out_dir
);

let res = Command::new("git")
.args(&["checkout", "e585c23e578d79b18d703b06f26b6e10a502d129"])
.args(&["checkout", "a703eedd8032ff1e083e8c5972eacc95738c797b"])
.current_dir(out_dir_path.as_path())
.output()
.expect("git checkout failed");
Expand Down Expand Up @@ -919,7 +919,7 @@ fn s11_rackscale_memcached_benchmark_sharded_linux() {
"scripts/spawn-memcached-process.sh",
id.to_string().as_str(),
con_info.as_str(),
config.mem_size.to_string().as_str(),
(2 * config.mem_size).to_string().as_str(),
config.num_threads.to_string().as_str(),
]);
command.current_dir(config.path.as_path());
Expand Down

0 comments on commit 9318ba5

Please sign in to comment.