From caada922e8a272187d31e0cc6af743f27ad0f392 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 28 May 2020 07:06:52 -0700 Subject: [PATCH] Disable tests for the peepmatic-macro crate I'm not actually sure that it's possible to write `#[test]` in a `proc-macro` crate. Regardless I don't think it's too too conventional, so let's disable this for now. Closes #1775 --- cranelift/peepmatic/crates/macro/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cranelift/peepmatic/crates/macro/Cargo.toml b/cranelift/peepmatic/crates/macro/Cargo.toml index e13cffd988..560953e0df 100644 --- a/cranelift/peepmatic/crates/macro/Cargo.toml +++ b/cranelift/peepmatic/crates/macro/Cargo.toml @@ -13,3 +13,5 @@ syn = { version = "1.0.16", features = ['extra-traits'] } [lib] proc_macro = true +test = false +doctest = false