Skip to content

Commit

Permalink
Rename test-dut to test_dut
Browse files Browse the repository at this point in the history
  • Loading branch information
b-paul committed Nov 26, 2024
1 parent 9f7c3a2 commit ed1e323
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions riscof/config.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[RISCOF]
ReferencePlugin=sail_cSim
ReferencePluginPath=sail_cSim
DUTPlugin=test-dut
DUTPluginPath=test-dut
DUTPlugin=test_dut
DUTPluginPath=test_dut

[test-dut]
pluginpath=test-dut
ispec=test-dut/test-dut_isa.yaml
pspec=test-dut/test-dut_platform.yaml
[test_dut]
pluginpath=test_dut
ispec=test_dut/test_dut_isa.yaml
pspec=test_dut/test_dut_platform.yaml
target_run=1
PATH=../target/debug/riscv

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

logger = logging.getLogger()

class test-dut(pluginTemplate):
class test_dut(pluginTemplate):
__model__ = "riscv"

#TODO: please update the below to indicate family, version, etc of your DUT.
Expand Down Expand Up @@ -92,7 +92,7 @@ def build(self, isa_yaml, platform_yaml):
# will be useful in setting integer value in the compiler string (if not already hardcoded);
self.xlen = ('64' if 64 in ispec['supported_xlen'] else '32')

# for test-dut start building the '--isa' argument. the self.isa is dutnmae specific and may not be
# for test_dut start building the '--isa' argument. the self.isa is dutnmae specific and may not be
# useful for all DUTs
self.isa = 'rv' + self.xlen
if "I" in ispec["ISA"]:
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ed1e323

Please sign in to comment.