more precision

This commit is contained in:
alex
2023-09-06 16:40:52 +02:00
parent 53c2f0335b
commit 5ebd84332d

View File

@@ -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(