tests: Use correct test compilation command

This commit is contained in:
Dorota Czaplejewicz
2019-11-17 14:56:25 +00:00
parent 8c9ae98bda
commit 0da848a5a0

View File

@ -72,7 +72,7 @@ build_rstests = custom_target(
output: ['src'],
install: false,
console: true,
command: [cargo_script, '', 'build', '--tests'],
command: [cargo_script, '', 'test', '--no-run'],
depends: rslibs, # no point building tests if the code itself fails
)