Skip to content

Commit

Permalink
Check module timing ini rather than test config file, to check whethe…
Browse files Browse the repository at this point in the history
…r timing test should be run
  • Loading branch information
Jacob Williamson committed Nov 25, 2024
1 parent 4cee767 commit 203cb01
Show file tree
Hide file tree
Showing 11 changed files with 1 addition and 28 deletions.
2 changes: 1 addition & 1 deletion common/python/cocotb_timing_test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ def get_cocotb_testable_modules():
Returns:
List of names of testable modules.
"""
modules = MODULES_PATH.glob('*/test_config.py')
modules = MODULES_PATH.glob('*/*.timing.ini')
return list(module.parent.name for module in modules)


Expand Down
3 changes: 0 additions & 3 deletions modules/bits/test_config.py

This file was deleted.

3 changes: 0 additions & 3 deletions modules/calc/test_config.py

This file was deleted.

3 changes: 0 additions & 3 deletions modules/clock/test_config.py

This file was deleted.

3 changes: 0 additions & 3 deletions modules/counter/test_config.py

This file was deleted.

3 changes: 0 additions & 3 deletions modules/div/test_config.py

This file was deleted.

3 changes: 0 additions & 3 deletions modules/filter/test_config.py

This file was deleted.

3 changes: 0 additions & 3 deletions modules/lut/test_config.py

This file was deleted.

2 changes: 0 additions & 2 deletions modules/pcap/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
TOP_PATH / 'common' / 'hdl' / 'spbram.vhd',
BUILD_PATH / 'apps' / 'PandABox-fmc_lback-sfp_lback' / 'autogen' / 'hdl' / 'top_defines_gen.vhd']

# EXTRA_BUILD_ARGS = ['-Wno-hide']

TOP_LEVEL = 'pcap_core_wrapper'

EXTRA_SIGNALS_INFO = {
Expand Down
2 changes: 0 additions & 2 deletions modules/posenc/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
EXTRA_HDL_FILES = [TOP_PATH / 'common' / 'hdl' / 'qenc.vhd',
TOP_PATH / 'common' / 'hdl' / 'qencoder.vhd',
TOP_PATH / 'common' / 'hdl' / 'prescaler_pos.vhd']

# EXTRA_BUILD_ARGS = ['-fsynopsys']
2 changes: 0 additions & 2 deletions modules/qdec/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@

EXTRA_HDL_FILES = [TOP_PATH / 'common' / 'hdl' / 'qdec.vhd',
TOP_PATH / 'common' / 'hdl' / 'qdecoder.vhd']

# EXTRA_BUILD_ARGS = ['-fsynopsys']

0 comments on commit 203cb01

Please sign in to comment.