Skip to content

Commit

Permalink
Remove PA tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer authored Nov 20, 2024
1 parent 61915b0 commit 1cf7ce7
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/test/fifotest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,24 +269,12 @@ TEST(FifoTest, MultiThreadRW) {
ASSERT_TRUE(ok);
}

TEST(FifoTest, MultiThreadRW_PA) {
MultiThreadRW<PA::FIFO<int>> io(65536, 1024, rwtotal, false);
bool ok = io.run();
ASSERT_TRUE(ok);
}

TEST(FifoTest, MultiThreadRW_Wait) {
MultiThreadRW<FIFO<int>> io(65536, 1024, rwtotal, true);
bool ok = io.run();
ASSERT_TRUE(ok);
}

TEST(FifoTest, MultiThreadRW_PA_Wait) {
MultiThreadRW<PA::FIFO<int>> io(65536, 1024, rwtotal, true);
bool ok = io.run();
ASSERT_TRUE(ok);
}

template<class T_FIFO>
class MultiThreadRegionRW {
T_FIFO m_fifo;
Expand Down Expand Up @@ -370,20 +358,8 @@ TEST(FifoTest, MultiThreadRegionRW) {
ASSERT_TRUE(ok);
}

TEST(FifoTest, MultiThreadRegionRW_PA) {
MultiThreadRegionRW<PA::FIFO<int>> io(65536, 256, rwtotal, false);
bool ok = io.run();
ASSERT_TRUE(ok);
}

TEST(FifoTest, MultiThreadRegionRW_Wait) {
MultiThreadRegionRW<FIFO<int>> io(65536, 256, rwtotal, true);
bool ok = io.run();
ASSERT_TRUE(ok);
}

TEST(FifoTest, MultiThreadRegionRW_PA_Wait) {
MultiThreadRegionRW<PA::FIFO<int>> io(65536, 256, rwtotal, true);
bool ok = io.run();
ASSERT_TRUE(ok);
}

0 comments on commit 1cf7ce7

Please sign in to comment.