Dev/fix actual tests (#1285)
Some checks failed
Build on RHEL9 / build (push) Failing after 3m50s
Build on RHEL8 / build (push) Failing after 5m8s

- fix acquire fail in tests (adcreg test)
- roi tests fail after overlapping invalid test and acquire after
- print udp dest mac in server properly
- fixed udp dst list get (server was not sending entry proper size to match proper struct size in client)
- updated server binaries and updated hard links in serverBin
- added documentation regarding gui:  zmqport and zmqip in terms of gui, rx_zmqstream
- removed print - probably ended there for debuggung

---------

Co-authored-by: Alice <alice.mazzoleni@psi.ch>
This commit is contained in:
2025-09-04 10:44:32 +02:00
committed by GitHub
parent 5b069d85a8
commit 6e3acbdf79
17 changed files with 84 additions and 26 deletions

View File

@@ -5342,7 +5342,8 @@ int set_dest_udp_mac(int file_des) {
if (receiveData(file_des, &arg, sizeof(arg), INT64) < 0)
return printSocketReadError();
LOG(logINFO, ("Setting udp destination mac: 0x%lx\n", arg));
LOG(logINFO,
("Setting udp destination mac: 0x%llx\n", (long long unsigned)arg));
// only set
if (Server_VerifyLock() == OK) {
@@ -5363,7 +5364,8 @@ int get_dest_udp_mac(int file_des) {
LOG(logDEBUG1, ("Getting udp destination mac\n"));
// get only
retval = udpDetails[0].dstmac;
LOG(logDEBUG1, ("udp destination mac retval: 0x%lx\n", retval));
LOG(logDEBUG1,
("udp destination mac retval: 0x%llx\n", (long long unsigned)retval));
return Server_SendResult(file_des, INT64, &retval, sizeof(retval));
}
@@ -9190,7 +9192,7 @@ int get_dest_udp_list(int file_des) {
memset(mess, 0, sizeof(mess));
uint32_t arg = 0;
uint16_t retvals16[2] = {};
uint32_t retvals32[3] = {};
uint32_t retvals32[2] = {};
uint64_t retvals64[2] = {};
if (receiveData(file_des, &arg, sizeof(arg), INT32) < 0)