1010/fix/blockadded check if reciever is running (#1502)
Build on RHEL9 docker image / build (push) Successful in 3m49s
Build on RHEL8 docker image / build (push) Successful in 4m49s
Run Simulator Tests on local RHEL8 / build (push) Failing after 8m38s
Run Simulator Tests on local RHEL9 / build (push) Successful in 18m59s

* added check if reciever is running

* added some tests

* uups dummy test - deleted test file

* changed test

* stopped receiver

* added some more tests as they also affect fifo structure

* fixed tests to work with test_simualtor for all cmdcall tests

* minor

* fix fro cmdcall back to detectorintegration

* removed the .rx marker that we did at soe point

* typo

* brekaing api change removed

---------

Co-authored-by: mazzol_a <mazzol_a@pc17378.psi.ch>
This commit is contained in:
2026-08-05 17:32:28 +02:00
committed by GitHub
co-authored by mazzol_a
parent 4d53950b09
commit 91ccb982a3
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ target_sources(tests PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/Caller/test-Caller.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Caller/test-Caller-rx.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Caller/test-Caller-rx-running.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Caller/test-Caller-pattern.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Caller/test-Caller-eiger.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Caller/test-Caller-jungfrau.cpp
@@ -554,6 +554,7 @@ int ClientInterface::set_num_analog_samples(Interface &socket) {
if (detType != CHIPTESTBOARD && detType != XILINX_CHIPTESTBOARD) {
functionNotImplemented();
}
verifyIdle(socket);
try {
impl()->setNumberofAnalogSamples(value);
} catch (const std::exception &e) {
@@ -570,6 +571,7 @@ int ClientInterface::set_num_digital_samples(Interface &socket) {
if (detType != CHIPTESTBOARD && detType != XILINX_CHIPTESTBOARD) {
functionNotImplemented();
}
verifyIdle(socket);
try {
impl()->setNumberofDigitalSamples(value);
} catch (const std::exception &e) {
@@ -1765,6 +1767,7 @@ int ClientInterface::set_num_transceiver_samples(Interface &socket) {
if (detType != CHIPTESTBOARD && detType != XILINX_CHIPTESTBOARD) {
functionNotImplemented();
}
verifyIdle(socket);
try {
impl()->setNumberofTransceiverSamples(value);
} catch (const std::exception &e) {