You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
649 B

8 years ago
6 years ago
8 years ago
8 years ago
8 years ago
  1. # Tendermint Tests
  2. The unit tests (ie. the `go test` s) can be run with `make test`.
  3. The integration tests can be run with `make test_integrations`.
  4. Running the integrations test will build a docker container with local version of tendermint
  5. and run the following tests in docker containers:
  6. - go tests, with --race
  7. - includes test coverage
  8. - app tests
  9. - kvstore app over socket
  10. - persistence tests
  11. - crash tendermint at each of many predefined points, restart, and ensure it syncs properly with the app
  12. ## Fuzzing
  13. [Fuzzing](https://en.wikipedia.org/wiki/Fuzzing) of various system inputs.
  14. See `./fuzz/README.md` for more details.