From 4c883c53a43ba235fad69fcc367afc611c1fe554 Mon Sep 17 00:00:00 2001 From: Brandon Fish Date: Thu, 20 Dec 2018 00:23:29 -0600 Subject: [PATCH] Make the StdioCapturer module only for test --- src/common/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/mod.rs b/src/common/mod.rs index d8354c704..8694cd5f7 100644 --- a/src/common/mod.rs +++ b/src/common/mod.rs @@ -1,3 +1,5 @@ pub mod mmap; pub mod slice; + +#[cfg(test)] pub mod stdio;