Skip to content

Commit

Permalink
Fix test bash commands in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mininny committed Jul 8, 2024
1 parent 5013157 commit 07fbd06
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,16 @@ Check [deployments/README.md](deployments/README.md) for details.

## Testing

All test suites can be ran refering to CI pipelines.
All test suites can be ran referring to CI pipelines.

### rvgo-tests

Checks correctness of fast and slow mode. Also differential fuzz tests with EVM mode. To run locally,

```sh
make bin bin/simple bin/minimal
cd rvsol
forge build
cd ..
(cd rvsol && forge build)
(cd tests/go-tests && make bin bin/simple bin/minimal)

go test -v ./rvgo/... -coverprofile=coverage.out -coverpkg=./rvgo/...
make fuzz
```
Expand All @@ -46,7 +45,8 @@ make fuzz
Checks correctness of `RISCV.sol`. To run locally,

```sh
go build
(cd rvgo/scripts/go-ffi && go build)

cd rvsol
forge test -vvv --ffi
```
Expand All @@ -57,6 +57,7 @@ Checks that `RISCV.sol` + asterisc can be used as a fault proof VM for OP Stack.

```sh
make devnet-allocs

cd op-e2e
go test -v ./faultproofs -timeout 3600s
```
Expand Down

0 comments on commit 07fbd06

Please sign in to comment.