This repository was archived by the owner on Jul 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -868,7 +868,7 @@ fn s11_rackscale_memcached_benchmark_sharded_linux() {
868868 }
869869 } ;
870870
871- let timeout_ms = 300_000 ;
871+ let timeout_ms = if is_smoke { 60_000 } else { 600_000 } ;
872872
873873 fn run_benchmark_internal ( config : & MemcachedShardedConfig , timeout_ms : u64 ) -> PtySession {
874874 Command :: new ( "killall" ) . args ( & [ "memcached" ] ) . status ( ) . ok ( ) ;
@@ -1324,7 +1324,7 @@ fn s11_rackscale_memcached_benchmark_sharded_nros() {
13241324 }
13251325
13261326 fn rackscale_timeout_fn ( num_cores : usize ) -> u64 {
1327- 600_000 + 4_500 * num_cores as u64
1327+ 600_000 + 60_000 * num_cores as u64
13281328 }
13291329
13301330 fn mem_fn ( num_cores : usize , is_smoke : bool ) -> usize {
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ RUST_TEST_THREADS=1 cargo test --test s11* -- s11_rackscale_shmem_vmops_maptput_
3131RUST_TEST_THREADS=1 cargo test --test s11* -- s11_rackscale_shmem_vmops_maplat_benchmark --nocapture
3232RUST_TEST_THREADS=1 cargo test --test s11* -- s11_rackscale_shmem_fxmark_bench --nocapture
3333RUST_TEST_THREADS=1 cargo test --test s11* -- s11_rackscale_memcached_benchmark_internal --nocapture
34- RUST_TEST_THREADS=1 cargo test --test s11* -- s11_rackscale_memcached_benchmark_sharded_nros --nocapture
3534RUST_TEST_THREADS=1 cargo test --test s11* -- s11_rackscale_memcached_benchmark_sharded_linux --nocapture
35+ RUST_TEST_THREADS=1 cargo test --test s11* -- s11_rackscale_memcached_benchmark_sharded_nros --nocapture
3636
3737# Clone repo
3838rm -rf gh-pages
You can’t perform that action at this time.
0 commit comments