Skip to content

Commit

Permalink
Merge pull request #63 from ptprasanna/master
Browse files Browse the repository at this point in the history
Fix for the issue #62
  • Loading branch information
neelgala authored Sep 9, 2022
2 parents a003752 + 34fff7b commit b86c507
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

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

## [1.25.1] - 2022-09-09
- Modified the code to fix the issue #62, which changed the condition to allow flen=64 for D extension tests.

## [1.25.0] - 2022-09-07
- migrated to using riscv-config version 3.2.0+
- modified functions to use the new warl_class from riscv-config-3.2.0+
Expand Down
2 changes: 1 addition & 1 deletion riscof/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """InCore Semiconductors Pvt Ltd"""
__email__ = 'info@incoresemi.com'
__version__ = '1.25.0'
__version__ = '1.25.1'
2 changes: 1 addition & 1 deletion riscof/framework/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def run_coverage(base, dut_isa_spec, dut_platform_spec, work_dir, cgf_file=None)
flen = 0
if 'F' in ispec['ISA']:
flen = 32
elif 'D' in ispec['ISA']:
if 'D' in ispec['ISA']:
flen = 64
if 64 in ispec['supported_xlen']:
results = isac.merge_coverage(cov_files, expand_cgf(cgf_file,64,flen), True)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.25.0
current_version = 1.25.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read_requires():
test_requirements = [ ]

setup(name="riscof",
version='1.25.0',
version='1.25.1',
description="RISC-V Architectural Test Framework",
long_description=readme + '\n\n',
classifiers=[
Expand Down

0 comments on commit b86c507

Please sign in to comment.