|
@@ -5,9 +5,12 @@ project('qemu', ['c'], meson_version: '>=1.5.0',
|
|
|
|
|
|
meson.add_devenv({ 'MESON_BUILD_ROOT' : meson.project_build_root() })
|
|
|
|
|
|
-add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true)
|
|
|
-add_test_setup('slow', exclude_suites: ['thorough'], env: ['G_TEST_SLOW=1', 'SPEED=slow'])
|
|
|
-add_test_setup('thorough', env: ['G_TEST_SLOW=1', 'SPEED=thorough'])
|
|
|
+add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true,
|
|
|
+ env: ['RUST_BACKTRACE=1'])
|
|
|
+add_test_setup('slow', exclude_suites: ['thorough'],
|
|
|
+ env: ['G_TEST_SLOW=1', 'SPEED=slow', 'RUST_BACKTRACE=1'])
|
|
|
+add_test_setup('thorough',
|
|
|
+ env: ['G_TEST_SLOW=1', 'SPEED=thorough', 'RUST_BACKTRACE=1'])
|
|
|
|
|
|
meson.add_postconf_script(find_program('scripts/symlink-install-tree.py'))
|
|
|
|