diff --git a/ceph_bench/run.py b/ceph_bench/run.py index 7226405..4e26b97 100644 --- a/ceph_bench/run.py +++ b/ceph_bench/run.py @@ -27,7 +27,7 @@ def local(): click.echo("Running locally") for runnum in range(NUM_RUNS): for files_type in BENCH_DIR_NAMES: - test_case = "Local-InsSto to CEPH" + test_case = "Local-InsSto to local CEPH" source = f"{INST_STO_ROOT}/{files_type}" target = CEPH_ROOT + files_type run_single_bench( @@ -45,7 +45,7 @@ def distant(): click.echo("Running distant to local") for runnum in range(NUM_RUNS): for files_type in BENCH_DIR_NAMES: - test_case = "Distant-InsSto to InsSto" + test_case = "Distant-InsSto to local InsSto" source = f"{SERV_URL}/{REMOTE_INST_STO_ROOT}/{files_type}" target = INST_STO_ROOT + files_type run_single_bench( @@ -57,7 +57,7 @@ def distant(): results, ) - test_case = "Distant-InsSto to CEPH" + test_case = "Distant-InsSto to local CEPH" source = f"{SERV_URL}/{REMOTE_INST_STO_ROOT}/{files_type}" target = CEPH_ROOT + files_type run_single_bench(