mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-13 23:44:59 +00:00

This adds a "limbo_stress" tool for stress testing Limbo in non-deterministic way together with support code to run the tests under Antithesis (which makes them deterministic). The stress tester does not really do anything useful yet, this is just a step to make sure we can run tests under Antithesis.
10 lines
510 B
Bash
Executable file
10 lines
510 B
Bash
Executable file
#!/bin/sh
|
|
|
|
curl --fail -u "$ANTITHESIS_USER:$ANTITHESIS_PASSWD" \
|
|
-X POST https://$ANTITHESIS_TENANT.antithesis.com/api/v1/launch/basic_test \
|
|
-d "{\"params\": { \"antithesis.description\":\"basic_test on main\",
|
|
\"antithesis.duration\":\"1\",
|
|
\"antithesis.config_image\":\"$ANTITHESIS_DOCKER_REPO/limbo-config:antithesis-latest\",
|
|
\"antithesis.images\":\"$ANTITHESIS_DOCKER_REPO/limbo-workload:antithesis-latest\",
|
|
\"antithesis.report.recipients\":\"$ANTITHESIS_EMAIL\"
|
|
} }"
|