Skip to content

Commit b86c507

Browse files
authored
Merge pull request #63 from ptprasanna/master
Fix for the issue #62
2 parents a003752 + 34fff7b commit b86c507

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [1.25.1] - 2022-09-09
6+
- Modified the code to fix the issue #62, which changed the condition to allow flen=64 for D extension tests.
7+
58
## [1.25.0] - 2022-09-07
69
- migrated to using riscv-config version 3.2.0+
710
- modified functions to use the new warl_class from riscv-config-3.2.0+

riscof/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__author__ = """InCore Semiconductors Pvt Ltd"""
66
__email__ = '[email protected]'
7-
__version__ = '1.25.0'
7+
__version__ = '1.25.1'

riscof/framework/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def run_coverage(base, dut_isa_spec, dut_platform_spec, work_dir, cgf_file=None)
129129
flen = 0
130130
if 'F' in ispec['ISA']:
131131
flen = 32
132-
elif 'D' in ispec['ISA']:
132+
if 'D' in ispec['ISA']:
133133
flen = 64
134134
if 64 in ispec['supported_xlen']:
135135
results = isac.merge_coverage(cov_files, expand_cgf(cgf_file,64,flen), True)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.25.0
2+
current_version = 1.25.1
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def read_requires():
2323
test_requirements = [ ]
2424

2525
setup(name="riscof",
26-
version='1.25.0',
26+
version='1.25.1',
2727
description="RISC-V Architectural Test Framework",
2828
long_description=readme + '\n\n',
2929
classifiers=[

0 commit comments

Comments
 (0)