diff --git a/CHANGELOG.md b/CHANGELOG.md index 58f0deb..2740909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/source/arch-tests.rst b/docs/source/arch-tests.rst index 92e3636..d0ad856 100644 --- a/docs/source/arch-tests.rst +++ b/docs/source/arch-tests.rst @@ -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 `_ repository. +the `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. @@ -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 ------------------------- diff --git a/riscof/cli.py b/riscof/cli.py index 2dbf844..2a5c2a5 100644 --- a/riscof/cli.py +++ b/riscof/cli.py @@ -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: @@ -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)