mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-10 23:28:06 -05:00
ignore test, and temporarily exclude tls-client from workspace
This commit is contained in:
@@ -11,5 +11,5 @@ members = [
|
||||
"notary",
|
||||
"core",
|
||||
"clmul",
|
||||
#"wasm",
|
||||
]
|
||||
exclude = ["tls-client"]
|
||||
|
||||
@@ -1,13 +1,18 @@
|
||||
use super::codec::Reader;
|
||||
use super::enums::{AlertDescription, AlertLevel, HandshakeType};
|
||||
use super::message::{Message, OpaqueMessage, PlainMessage};
|
||||
use super::{
|
||||
codec::Reader,
|
||||
enums::{AlertDescription, AlertLevel, HandshakeType},
|
||||
message::{Message, OpaqueMessage, PlainMessage},
|
||||
};
|
||||
|
||||
use std::convert::TryFrom;
|
||||
use std::fs;
|
||||
use std::io::Read;
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::{
|
||||
convert::TryFrom,
|
||||
fs,
|
||||
io::Read,
|
||||
path::{Path, PathBuf},
|
||||
};
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn test_read_fuzz_corpus() {
|
||||
fn corpus_dir() -> PathBuf {
|
||||
let from_subcrate = Path::new("../fuzz/corpus/message");
|
||||
|
||||
Reference in New Issue
Block a user