From 3deb528087c2f6fde82d5681e13b61a270c0a780 Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Wed, 28 Jan 2026 13:42:54 +0100 Subject: [PATCH] xilinx tsamples test fixed for a value that a receiver can stomach for memory allocation (#1374) --- .../tests/Caller/test-Caller-chiptestboard.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slsDetectorSoftware/tests/Caller/test-Caller-chiptestboard.cpp b/slsDetectorSoftware/tests/Caller/test-Caller-chiptestboard.cpp index e557363aa..795937ee1 100644 --- a/slsDetectorSoftware/tests/Caller/test-Caller-chiptestboard.cpp +++ b/slsDetectorSoftware/tests/Caller/test-Caller-chiptestboard.cpp @@ -934,8 +934,8 @@ TEST_CASE("tsamples", "[.cmdcall]") { } if (det_type == defs::XILINX_CHIPTESTBOARD) { std::ostringstream oss; - caller.call("tsamples", {"2147483647"}, -1, PUT, oss); - REQUIRE(oss.str() == "tsamples 2147483647\n"); + caller.call("tsamples", {"10000"}, -1, PUT, oss); + REQUIRE(oss.str() == "tsamples 10000\n"); } for (int i = 0; i != det.size(); ++i) { det.setNumberOfTransceiverSamples(prev_val[i], {i});