From 2b1c6b6e5e3f16a8ac5cf894b1b54a2f17fe8cd7 Mon Sep 17 00:00:00 2001 From: Fiona Behrens Date: Thu, 11 Dec 2025 12:01:56 +0000 Subject: [PATCH] lix-doc: test: add rust tests to check suite Add the rust tests defined in lix-doc to the check test suite. Change-Id: I2677679d89fccef0f73fb93abf87334706492739 --- lix/lix-doc/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lix/lix-doc/meson.build b/lix/lix-doc/meson.build index c061e0501..81ae07fec 100644 --- a/lix/lix-doc/meson.build +++ b/lix/lix-doc/meson.build @@ -1,6 +1,8 @@ rnix = dependency('rnix-0.12-rs') rowan = dependency('rowan-0.15-rs') +rust = import('rust') + lix_doc = static_library( 'lix_doc', sources : files('src/lib.rs'), @@ -19,3 +21,9 @@ lix_doc = static_library( liblix_doc = declare_dependency( link_with : lix_doc, ) + +rust.test( + 'lix_doc_test', + lix_doc, + suite : 'check' +)