summaryrefslogtreecommitdiffstats
path: root/k6-tests/setup.sh
diff options
context:
space:
mode:
authorhalil.cakal <halil.cakal@est.tech>2024-07-11 14:54:57 +0100
committerhalil.cakal <halil.cakal@est.tech>2024-07-12 14:09:27 +0100
commitfcc81ee3a4b9ae937e0f447ee574b676506b6390 (patch)
tree0c81ec5a24766c6e49a75dff4a11bf1e6abca0a0 /k6-tests/setup.sh
parent1519ce5850a4a1f127d18ebf8b37e4a96d365a28 (diff)
Add passthrough write (CUD) operations to k6
- the delay for dmi has been hanlded in seprate commit - for simplicity only the POST request is considered Issue-ID: CPS-2267 Change-Id: I62ede04dd8e2744fc723566742396df31c42ea5d Signed-off-by: halil.cakal <halil.cakal@est.tech>
Diffstat (limited to 'k6-tests/setup.sh')
-rwxr-xr-xk6-tests/setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/k6-tests/setup.sh b/k6-tests/setup.sh
index 86f6d26acd..346b9c0690 100755
--- a/k6-tests/setup.sh
+++ b/k6-tests/setup.sh
@@ -26,5 +26,5 @@ CONTAINER_IDS=$(docker ps --filter "name=cps-and-ncmp" --format "{{.ID}}")
# Check the logs for each container
for CONTAINER_ID in $CONTAINER_IDS; do
echo "Checking logs for container: $CONTAINER_ID"
- docker logs "$CONTAINER_ID" -f | grep -m 1 "$READY_MESSAGE" >/dev/null || true
+ docker logs "$CONTAINER_ID" -f | grep -m 1 "$READY_MESSAGE" >/dev/null && echo "CPS is ready in container: $CONTAINER_ID" || true
done