mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-09 08:50:18 +00:00
Fix covers_nothing.
This commit is contained in:
parent
6a45e7b290
commit
2b4ec9d57a
3 changed files with 72 additions and 10 deletions
|
|
@ -11,6 +11,8 @@ TEST(BitpatternTest, has)
|
|||
SigSpec _01a = {RTLIL::S0, RTLIL::S1, RTLIL::Sa};
|
||||
SigSpec _011 = {RTLIL::S0, RTLIL::S1, RTLIL::S1};
|
||||
SigSpec _111 = {RTLIL::S1, RTLIL::S1, RTLIL::S1};
|
||||
SigSpec _01x = {RTLIL::S0, RTLIL::S1, RTLIL::Sx};
|
||||
SigSpec _01z = {RTLIL::S0, RTLIL::S1, RTLIL::Sz};
|
||||
|
||||
EXPECT_TRUE(BitPatternPool(_aaa).has_any(_01a));
|
||||
EXPECT_TRUE(BitPatternPool(_01a).has_any(_01a));
|
||||
|
|
@ -19,6 +21,10 @@ TEST(BitpatternTest, has)
|
|||
// overlap is symmetric
|
||||
EXPECT_TRUE(BitPatternPool(_01a).has_any(_011));
|
||||
EXPECT_FALSE(BitPatternPool(_111).has_any(_01a));
|
||||
// overlaps nothing
|
||||
EXPECT_FALSE(BitPatternPool(_011).has_any(_01x));
|
||||
EXPECT_FALSE(BitPatternPool(_011).has_any(_01z));
|
||||
EXPECT_FALSE(BitPatternPool(_aaa).has_any(_01x));
|
||||
|
||||
EXPECT_TRUE(BitPatternPool(_aaa).has_all(_01a));
|
||||
EXPECT_TRUE(BitPatternPool(_01a).has_all(_01a));
|
||||
|
|
@ -27,6 +33,10 @@ TEST(BitpatternTest, has)
|
|||
// 01a is not covered by 011
|
||||
EXPECT_FALSE(BitPatternPool(_011).has_all(_01a));
|
||||
EXPECT_FALSE(BitPatternPool(_111).has_all(_01a));
|
||||
// trivially covered by any pool
|
||||
EXPECT_TRUE(BitPatternPool(_011).has_all(_01x));
|
||||
EXPECT_TRUE(BitPatternPool(_011).has_all(_01z));
|
||||
EXPECT_TRUE(BitPatternPool(_111).has_all(_01x));
|
||||
}
|
||||
|
||||
YOSYS_NAMESPACE_END
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue