Skip to content

Commit

Permalink
tests: add ethernet_io_core to build_examples test
Browse files Browse the repository at this point in the history
  • Loading branch information
fischermoseley committed Nov 25, 2024
1 parent f4ebfe0 commit 841ebdd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_examples_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@ def test_verilog_examples_build(root_dir):
parent_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
sys.path.insert(0, parent_dir)

# Import Examples
# Import Platforms
from amaranth_boards.icestick import ICEStickPlatform
from amaranth_boards.nexys4ddr import Nexys4DDRPlatform

# Import Examples
from examples.amaranth.uart_io_core import UARTIOCoreExample
from examples.amaranth.uart_logic_analyzer import UARTLogicAnalyzerExample
from examples.amaranth.uart_memory_core import UARTMemoryCoreExample
from examples.amaranth.ethernet_io_core import EthernetIOCoreExample

# Manually specify a list of examples/platforms to test.

Expand All @@ -49,6 +50,7 @@ def test_verilog_examples_build(root_dir):
(UARTLogicAnalyzerExample, ICEStickPlatform),
(UARTLogicAnalyzerExample, Nexys4DDRPlatform),
(UARTMemoryCoreExample, Nexys4DDRPlatform),
(EthernetIOCoreExample, Nexys4DDRPlatform),
]


Expand Down

0 comments on commit 841ebdd

Please sign in to comment.