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
This commit is contained in:
Fiona Behrens
2025-12-21 14:11:30 +00:00
committed by kloenk
parent 8eb57801a5
commit 2b1c6b6e5e
+8
View File
@@ -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'
)