add a README for BoGo

This commit is contained in:
Jacob Rothstein 2023-01-11 15:19:15 -08:00 committed by Dirkjan Ochtman
parent b177e4cac2
commit cba4d0c0f6
1 changed files with 21 additions and 0 deletions

21
bogo/README.md Normal file
View File

@ -0,0 +1,21 @@
# BoGo
[BoGo](https://github.com/google/boringssl/tree/master/ssl/test) is the TLS test suite for boringssl, which we run against rustls as well.
## System requirements
You will need golang installed
## Running tests
```bash
$ cd bogo # from rustls repo root
$ ./runme
```
## Running a single test
```bash
$ cd bogo # from rustls repo root
$ ./runme -test "Foo;Bar" # where Foo and Bar are test names like EarlyData-Server-BadFinished-TLS13
```