From 68e0c29d83b24f8dd18fc24a586d781c0a7d9d52 Mon Sep 17 00:00:00 2001 From: Tony Kuker <34318535+akuker@users.noreply.github.com> Date: Mon, 9 Oct 2023 20:10:46 -0500 Subject: [PATCH] Disable the Timer Test #1227 (#1228) 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.