Skip to content

Commit

Permalink
#9993: Disable flaky test in SD mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-dma committed Jul 8, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 9c21cd2 commit 9506160
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -127,6 +127,10 @@ static void RunTest(WatcherFixture* fixture, Device* device) {
}

TEST_F(WatcherFixture, TestWatcherPause) {
if (this->IsSlowDispatch()) {
log_info(tt::LogTest, "Skip, see #9993");
GTEST_SKIP();
}
for (Device* device : this->devices_) {
this->RunTestOnDevice(RunTest, device);
}
Original file line number Diff line number Diff line change
@@ -192,6 +192,10 @@ TEST_F(WatcherFixture, TestWatcherRingBufferIErisc) {
log_info(tt::LogTest, "Skip due to #7771");
GTEST_SKIP();
}
if (this->IsSlowDispatch()) {
log_info(tt::LogTest, "Skip, see #9993");
GTEST_SKIP();
}
for (Device* device : this->devices_) {
this->RunTestOnDevice(
[](WatcherFixture *fixture, Device *device){RunTest(fixture, device, DebugIErisc);},

0 comments on commit 9506160

Please sign in to comment.