xilinx tsamples test fixed for a value that a receiver can stomach for memory allocation (#1374)

This commit is contained in:
2026-01-28 13:42:54 +01:00
committed by GitHub
parent e519633e16
commit 3deb528087

View File

@@ -934,8 +934,8 @@ TEST_CASE("tsamples", "[.cmdcall]") {
} }
if (det_type == defs::XILINX_CHIPTESTBOARD) { if (det_type == defs::XILINX_CHIPTESTBOARD) {
std::ostringstream oss; std::ostringstream oss;
caller.call("tsamples", {"2147483647"}, -1, PUT, oss); caller.call("tsamples", {"10000"}, -1, PUT, oss);
REQUIRE(oss.str() == "tsamples 2147483647\n"); REQUIRE(oss.str() == "tsamples 10000\n");
} }
for (int i = 0; i != det.size(); ++i) { for (int i = 0; i != det.size(); ++i) {
det.setNumberOfTransceiverSamples(prev_val[i], {i}); det.setNumberOfTransceiverSamples(prev_val[i], {i});