From 7355fd7ce844c2ece5bc89bbe5e0b03b48fd5772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me?= <124148386+cathales@users.noreply.github.com> Date: Fri, 15 Sep 2023 18:13:45 +0200 Subject: [PATCH] readme: use bash instead of sh (#1429) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6e8c702428..63fe3ce5a0 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ To check the RTL cva6 behaviour, the RTL simulation trace is compared to spike t ```sh export DV_SIMULATORS=veri-testharness,spike -sh verif/regress/smoke-tests.sh +bash verif/regress/smoke-tests.sh ``` #### Test execution @@ -190,9 +190,9 @@ Run one of the shell scripts: ```sh # riscv-compliance (https://github.com/riscv/riscv-compliance) test suite: -sh verif/regress/dv-riscv-compliance.sh +bash verif/regress/dv-riscv-compliance.sh # riscv-tests (https://github.com/riscv/riscv-tests) test suite: -sh verif/regress/dv-riscv-tests.sh +bash verif/regress/dv-riscv-tests.sh ```