We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62959a7 commit c3f5c6fCopy full SHA for c3f5c6f
1 file changed
test/test_interrupt/InterruptTestCases.cpp
@@ -74,8 +74,10 @@ void testInterruptSupportMarshalling() {
74
// now pretend the interrupt took place.
75
interruptAbs.runInterrupt();
76
77
- // and wait for task manager to schedule.
78
- fixture.assertThatTaskRunsOnTime(0, 250);
+ // and wait for task manager to schedule. Note that the delay is very large, this is because the test is running
+ // on CI where the time to handle such an interrupt on an emulator will be more significant, we are not testing
79
+ // performance, rather functionality.
80
+ fixture.assertThatTaskRunsOnTime(0, 1500);
81
82
// and the pin should be 2
83
TEST_ASSERT_EQUAL(2, pinNo);
0 commit comments