Skip to content

Commit

Permalink
Fixed spelling errors in log and docs. Closes #25.
Browse files Browse the repository at this point in the history
  • Loading branch information
pawks committed Oct 22, 2021
1 parent 6da2b9f commit 4d8f445
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Improved diff reporting in case of Failed tests.
- Added support for f and d exts in model plugin.
- Added checking to ensure that tests with wrong filtering based on ISA are not selected.
- Fixed spelling for opening and arch test command in docs.

## [1.23.0] - 2021-10-14
- Added support for new RVTEST_ISA macro
Expand Down
4 changes: 2 additions & 2 deletions docs/source/arch-tests.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Running RISCV-ARCH-TESTS
########################

The following guide provides a walkthrough on how to run the tests available at
the `riscv-arch-tests <https://github.com/riscv/riscv-arch-test>`_ repository.
the `riscv-arch-test <https://github.com/riscv/riscv-arch-test>`_ repository.

The following assumes you have installed riscof as a cli on your system. If not, then please refer
to the :ref:`install_riscof` section for the same.
Expand Down Expand Up @@ -64,7 +64,7 @@ Cloning the riscv-arch-test repo

.. code-block:: console
$ riscof --verbose info arch-tests --clone
$ riscof --verbose info arch-test --clone
Running Tests with RISCOF
-------------------------
Expand Down
4 changes: 2 additions & 2 deletions riscof/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def run(ctx,config,work_dir,suite,env,no_browser,dbfile,testfile,no_ref_run,no_d
if not no_browser:
try:
import webbrowser
logger.info("Openning test report in web-browser")
logger.info("Opening test report in web-browser")
webbrowser.open(reportfile)
raise SystemExit(exitcode)
except:
Expand Down Expand Up @@ -437,7 +437,7 @@ def coverage(ctx,config,work_dir,suite,env,no_browser,cgf_file):
if not no_browser:
try:
import webbrowser
logger.info("Openning test report in web-browser")
logger.info("Opening test report in web-browser")
webbrowser.open(reportfile)
except:
raise SystemExit(0)
Expand Down

0 comments on commit 4d8f445

Please sign in to comment.