From 2a5741931d07feab75caafe2c00cf805c4880638 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Sat, 12 Aug 2023 12:09:38 +0200 Subject: [PATCH] FPGAIntegrationTest: Use blocking mode for internal_packet_generator test --- tests/FPGAIntegrationTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/FPGAIntegrationTest.cpp b/tests/FPGAIntegrationTest.cpp index cefc10a2..609a4951 100644 --- a/tests/FPGAIntegrationTest.cpp +++ b/tests/FPGAIntegrationTest.cpp @@ -20,7 +20,7 @@ TEST_CASE("HLS_C_Simulation_internal_packet_generator", "[FPGA][Full]") { x.UseInternalPacketGenerator(true).ImagesPerTrigger(4).PedestalG0Frames(0); HLSSimulatedDevice test(0, 64); - + test.SetFPGANonBlockingMode(false); REQUIRE_NOTHROW(test.StartAction(x)); REQUIRE_NOTHROW(test.WaitForActionComplete());