From 99708bf14603adede75b2ffb375873d3c5ac56a7 Mon Sep 17 00:00:00 2001 From: Tony Kuker <34318535+akuker@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:54:23 -0500 Subject: [PATCH] Disable the Timer Test #1227 The Timer test isn't reliable on all variants of the Raspberry Pi. This will temporarily comment it out. When the RPi5 support is being added, this test should be made optional and only triggered when a CLI option is present. --- cpp/scsiloop/scsiloop_core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/scsiloop/scsiloop_core.cpp b/cpp/scsiloop/scsiloop_core.cpp index 09b867a3aa..b6181d64ed 100644 --- a/cpp/scsiloop/scsiloop_core.cpp +++ b/cpp/scsiloop/scsiloop_core.cpp @@ -159,8 +159,8 @@ int ScsiLoop::run(const vector &args) // This must be executed before the timer test, since this initializes the timer ScsiLoop_GPIO gpio_test; - int result = ScsiLoop_Timer::RunTimerTest(error_list); - result += gpio_test.RunLoopbackTest(error_list); + // int result = ScsiLoop_Timer::RunTimerTest(error_list); + int result = gpio_test.RunLoopbackTest(error_list); if (result == 0) { // Only test the dat inputs/outputs if the loopback test passed.