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.
This commit is contained in:
Tony Kuker 2023-10-09 20:10:46 -05:00 committed by GitHub
parent ed2ff0ed73
commit 68e0c29d83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -159,8 +159,8 @@ int ScsiLoop::run(const vector<char *> &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.