From 5c796ea79c2e9af0f7e219105e006edec63ff0ff Mon Sep 17 00:00:00 2001 From: afinch7 Date: Fri, 22 Nov 2019 13:17:36 -0500 Subject: [PATCH] make sure test native plugin gets built for tests --- cli/tests/test_native_plugin/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cli/tests/test_native_plugin/src/lib.rs b/cli/tests/test_native_plugin/src/lib.rs index e893fb0c70852d..d0897b347fe43f 100644 --- a/cli/tests/test_native_plugin/src/lib.rs +++ b/cli/tests/test_native_plugin/src/lib.rs @@ -46,3 +46,8 @@ pub fn op_test_io_async(data: &[u8], zero_copy: Option) -> CoreOp { Op::Async(fut.boxed()) } + +#[test] +fn placeholder() { + // This test is just here to make sure the plugin gets built +}