diff options
Diffstat (limited to 'benchmarks/garage-s3lat')
-rwxr-xr-x | benchmarks/garage-s3lat | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/benchmarks/garage-s3lat b/benchmarks/garage-s3lat new file mode 100755 index 0000000..361ed26 --- /dev/null +++ b/benchmarks/garage-s3lat @@ -0,0 +1,12 @@ +#!/usr/bin/env python3 +from fragments import garage, s3lat, shared + +if shared.id() == 1: + garage.deploy_coord() + s3lat.on_garage() + garage.delete_key() + garage.destroy() +else: + garage.deploy_follow() + garage.sync_on_key_down() + garage.destroy() |