aboutsummaryrefslogtreecommitdiff
path: root/prepare.py
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2022-09-23 22:50:50 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2022-09-23 22:50:50 +0200
commita40c12354257418e686892a7612d7e11a1a58235 (patch)
tree9d765db5573a262bfa3c3ced72a0ea7edc63c5c7 /prepare.py
parent700025e4795f2d9bd25173c619905dbfe26f7ec8 (diff)
downloadmknet-a40c12354257418e686892a7612d7e11a1a58235.tar.gz
mknet-a40c12354257418e686892a7612d7e11a1a58235.zip
Add S3TTFB
Diffstat (limited to 'prepare.py')
-rwxr-xr-xprepare.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/prepare.py b/prepare.py
index 60d58c1..d6e2ab9 100755
--- a/prepare.py
+++ b/prepare.py
@@ -14,6 +14,8 @@ os.chdir(me / "benchmarks" / "s3concurrent")
shared.exec("go build")
os.chdir(me / "benchmarks" / "s3lat")
shared.exec("go build")
+os.chdir(me / "benchmarks" / "s3ttfb")
+shared.exec("go build")
os.chdir(me)
print("--- install python dependencies ---")
@@ -29,8 +31,9 @@ print("--- download artifacts ---")
from scenarios.fragments import flavor
flavor.download()
-print("""done! now, run:
+print(f"""done! now, run:
> sudo -i
+> cd {os.getcwd()}
> source ./.venv/bin/activate
> ./mknet scenario ./topo/with-vdsl.yml ./scenarios/garage-s3lat garage-v0.8
""")