Skip to content

Commit

Permalink
Disable the Timer Test #1227 (#1228)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
akuker authored Oct 10, 2023
1 parent ed2ff0e commit 68e0c29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/scsiloop/scsiloop_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 68e0c29

Please sign in to comment.