aboutsummaryrefslogtreecommitdiffstats
path: root/tests/run_test.sh
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-02-19 00:14:25 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-02-19 00:14:25 +0100
commita9ebc3b434b7979163fdf83984b32f1e513dacb8 (patch)
treec801a98f44689669c905e833371fa539f4934a1f /tests/run_test.sh
parentbdc2305c2376c8b6697b6ecfecce104c956bdfcf (diff)
downloadBobinkCOpcUa-a9ebc3b434b7979163fdf83984b32f1e513dacb8.tar.gz
BobinkCOpcUa-a9ebc3b434b7979163fdf83984b32f1e513dacb8.zip
Rename client executable to bobink_opcua_client
Diffstat (limited to 'tests/run_test.sh')
-rwxr-xr-xtests/run_test.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/run_test.sh b/tests/run_test.sh
index 8f6c21b..85eb291 100755
--- a/tests/run_test.sh
+++ b/tests/run_test.sh
@@ -51,7 +51,7 @@ wait_for_port "$SR_PORT" "$SR_PID" "bobink_opcua_server"
# ── FindServers ───────────────────────────────────────────────
TMPFILE=$(mktemp)
-build/client "$CONFIG_DIR/client.conf" find-servers "opc.tcp://localhost:$LDS_PORT" >"$TMPFILE" 2>&1
+build/bobink_opcua_client "$CONFIG_DIR/client.conf" find-servers "opc.tcp://localhost:$LDS_PORT" >"$TMPFILE" 2>&1
FS_RC=$?
FS_OUTPUT=$(<"$TMPFILE")
@@ -62,7 +62,7 @@ echo "$FS_OUTPUT" | grep -q "urn:localhost:bobink:ServerRegister"
check "find-servers contains urn:localhost:bobink:ServerRegister" $?
# ── GetEndpoints ──────────────────────────────────────────────
-build/client "$CONFIG_DIR/client.conf" get-endpoints "opc.tcp://localhost:$SR_PORT" >"$TMPFILE" 2>&1
+build/bobink_opcua_client "$CONFIG_DIR/client.conf" get-endpoints "opc.tcp://localhost:$SR_PORT" >"$TMPFILE" 2>&1
GE_RC=$?
GE_OUTPUT=$(<"$TMPFILE")
@@ -73,7 +73,7 @@ echo "$GE_OUTPUT" | grep -q "$EXPECTED_POLICY"
check "get-endpoints contains $EXPECTED_POLICY" $?
# ── ReadTime ──────────────────────────────────────────────────
-build/client "$CONFIG_DIR/client.conf" read-time "opc.tcp://localhost:$SR_PORT" >"$TMPFILE" 2>&1
+build/bobink_opcua_client "$CONFIG_DIR/client.conf" read-time "opc.tcp://localhost:$SR_PORT" >"$TMPFILE" 2>&1
RT_RC=$?
RT_OUTPUT=$(<"$TMPFILE")