diff options
-rw-r--r-- | packaging/rust-send_wrapper.spec | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packaging/rust-send_wrapper.spec b/packaging/rust-send_wrapper.spec index f09d1b3..d1fd2fd 100644 --- a/packaging/rust-send_wrapper.spec +++ b/packaging/rust-send_wrapper.spec @@ -59,6 +59,16 @@ cp %{SOURCE1} . install -d -m 0755 %{buildroot}%{_rust_dylibdir} install -m 0644 lib%{real_crate_name}.so %{buildroot}/%{_rust_dylibdir}/lib%{real_crate_name}.so +%check +%if 0%{?run_tests} +%{rustc_std_build} --test --crate-type=dylib \ + --crate-name=%{real_crate_name} \ + %{?rustc_edition:--edition=%{rustc_edition}} \ + ./src/lib.rs + +./%{real_crate_name} +%endif + %clean %post -p /sbin/ldconfig |