From 976bc81e5432e1834e9cef7469dd42564a8d475c Mon Sep 17 00:00:00 2001 From: Rainer Zaiser Date: Sun, 29 Sep 2024 15:16:47 +0200 Subject: [PATCH] Windows build break fixes --- tests/xcp_test_executor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/xcp_test_executor.rs b/tests/xcp_test_executor.rs index 501b663..9fdcf3f 100644 --- a/tests/xcp_test_executor.rs +++ b/tests/xcp_test_executor.rs @@ -25,8 +25,8 @@ pub const OPTION_LOG_LEVEL: xcp::XcpLogLevel = xcp::XcpLogLevel::Info; pub const OPTION_XCP_LOG_LEVEL: xcp::XcpLogLevel = xcp::XcpLogLevel::Info; // Test parameters -pub const MULTI_THREAD_TASK_COUNT: usize = 32; // Number of threads -pub const DAQ_TEST_TASK_SLEEP_TIME_US: u64 = 100; // us +pub const MULTI_THREAD_TASK_COUNT: usize = 16; // Number of threads +pub const DAQ_TEST_TASK_SLEEP_TIME_US: u64 = 1000; // us const DAQ_TEST_DURATION_MS: u64 = 4000; // ms const CAL_TEST_MAX_ITER: u32 = 4000; // Number of calibrations const CAL_TEST_TASK_SLEEP_TIME_US: u64 = 50; // Checking task cycle time in us