From: Florent Kermarrec Date: Fri, 15 Nov 2019 10:36:52 +0000 (+0100) Subject: test/test_packet: add 32/64/128-bit loopback tests (passing :)) X-Git-Tag: 24jan2021_ls180~859 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=33c4d961b58d8c3a10557f078b7d72b7981beb19;p=litex.git test/test_packet: add 32/64/128-bit loopback tests (passing :)) --- diff --git a/test/test_packet.py b/test/test_packet.py index 5946d77e..55b8fac8 100644 --- a/test/test_packet.py +++ b/test/test_packet.py @@ -108,3 +108,12 @@ class TestPacket(unittest.TestCase): def test_8bit_loopback(self): self.loopback_test(dw=8) + + def test_32bit_loopback(self): + self.loopback_test(dw=32) + + def test_64bit_loopback(self): + self.loopback_test(dw=64) + + def test_128bit_loopback(self): + self.loopback_test(dw=128)