Skip to content

Commit

Permalink
fixing bug in memcached compilation
Browse files Browse the repository at this point in the history
Signed-off-by: Reto Achermann <[email protected]>
  • Loading branch information
achreto committed Aug 3, 2023
1 parent 4182528 commit 4416a53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions kernel/tests/s11_rackscale_benchmarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -782,11 +782,11 @@ fn rackscale_memcached_benchmark_sharded(is_shmem: bool) {
.unwrap();

println!(
"CHECKOUT 19a0dcef7a053565afa551dd0e8a74f24839471b {:?}",
"CHECKOUT b9f44cc1a100597b431783d3682b71f55a154337 {:?}",
out_dir
);
Command::new("git")
.args(&["checkout", "19a0dcef7a053565afa551dd0e8a74f24839471b"])
.args(&["checkout", "b9f44cc1a100597b431783d3682b71f55a154337"])
.current_dir(out_dir_path.as_path())
.status()
.unwrap();
Expand Down
4 changes: 2 additions & 2 deletions usr/rkapps/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ fn main() {
.unwrap();

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

0 comments on commit 4416a53

Please sign in to comment.