1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 01:11:15 +02:00

Update docs on the unit tests

This commit is contained in:
John Ericson 2024-06-29 10:59:05 -04:00
parent 224c6c3256
commit 11dab30be9
6 changed files with 60 additions and 8 deletions

View file

@ -81,4 +81,11 @@ this_exe = executable(
install : true,
)
test(meson.project_name(), this_exe, env : ['_NIX_TEST_UNIT_DATA=' + meson.current_source_dir() + '/data'])
test(
meson.project_name(),
this_exe,
env : {
'_NIX_TEST_UNIT_DATA': meson.current_source_dir() / 'data',
},
protocol : 'gtest',
)