rustls 0.21.10

Rustls is a modern TLS library written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Runs the bogo test suite, in the form of a rust test.
// Note that bogo requires a golang environment to build
// and run.

#[test]
#[cfg(all(coverage, feature = "quic", feature = "dangerous_configuration"))]
fn run_bogo_tests() {
    use std::process::Command;

    let rc = Command::new("./runme")
        .current_dir("../bogo")
        .spawn()
        .expect("cannot run bogo/runme")
        .wait()
        .expect("cannot wait for bogo");

    assert!(rc.success(), "bogo exited non-zero");
}