ignore test, and temporarily exclude tls-client from workspace

This commit is contained in:
sinuio
2022-07-29 09:33:55 -07:00
parent 658e6344c5
commit 90c98c1935
2 changed files with 13 additions and 8 deletions

View File

@@ -11,5 +11,5 @@ members = [
"notary",
"core",
"clmul",
#"wasm",
]
exclude = ["tls-client"]

View File

@@ -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");