2024-06-29 17:31:08 +03:00
|
|
|
project('nix-expr-tests', 'cpp',
|
2024-06-25 16:35:47 +03:00
|
|
|
version : files('.version'),
|
|
|
|
default_options : [
|
|
|
|
'cpp_std=c++2a',
|
|
|
|
# TODO(Qyriad): increase the warning level
|
|
|
|
'warning_level=1',
|
|
|
|
'debug=true',
|
|
|
|
'optimization=2',
|
|
|
|
'errorlogs=true', # Please print logs for tests that fail
|
|
|
|
],
|
|
|
|
meson_version : '>= 1.1',
|
|
|
|
license : 'LGPL-2.1-or-later',
|
|
|
|
)
|
|
|
|
|
|
|
|
cxx = meson.get_compiler('cpp')
|
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/deps-lists')
|
2024-06-25 16:35:47 +03:00
|
|
|
|
2024-06-27 19:34:03 +03:00
|
|
|
deps_private_maybe_subproject = [
|
2024-06-27 18:28:08 +03:00
|
|
|
dependency('nix-expr'),
|
|
|
|
dependency('nix-expr-c'),
|
|
|
|
dependency('nix-expr-test-support'),
|
2024-06-27 05:15:33 +03:00
|
|
|
]
|
2024-06-28 02:19:32 +03:00
|
|
|
deps_public_maybe_subproject = [
|
|
|
|
]
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/subprojects')
|
2024-06-27 05:15:33 +03:00
|
|
|
|
2024-07-22 18:33:37 +03:00
|
|
|
subdir('build-utils-meson/threads')
|
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/export-all-symbols')
|
2024-06-27 05:15:33 +03:00
|
|
|
|
|
|
|
rapidcheck = dependency('rapidcheck')
|
|
|
|
deps_private += rapidcheck
|
|
|
|
|
2024-07-05 00:48:27 +03:00
|
|
|
gtest = dependency('gtest')
|
2024-06-27 05:15:33 +03:00
|
|
|
deps_private += gtest
|
|
|
|
|
2024-06-28 01:09:32 +03:00
|
|
|
gtest = dependency('gmock')
|
|
|
|
deps_private += gtest
|
|
|
|
|
2024-06-25 16:35:47 +03:00
|
|
|
add_project_arguments(
|
|
|
|
# TODO(Qyriad): Yes this is how the autoconf+Make system did it.
|
|
|
|
# It would be nice for our headers to be idempotent instead.
|
2024-06-27 18:28:08 +03:00
|
|
|
'-include', 'config-util.hh',
|
|
|
|
'-include', 'config-store.hh',
|
2024-07-07 21:29:28 +03:00
|
|
|
'-include', 'config-expr.hh',
|
2024-06-27 18:28:08 +03:00
|
|
|
'-include', 'config-util.h',
|
|
|
|
'-include', 'config-store.h',
|
|
|
|
'-include', 'config-expr.h',
|
2024-06-25 16:35:47 +03:00
|
|
|
language : 'cpp',
|
|
|
|
)
|
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/diagnostics')
|
2024-06-27 23:11:52 +03:00
|
|
|
|
2024-06-25 16:35:47 +03:00
|
|
|
sources = files(
|
2024-06-27 18:28:08 +03:00
|
|
|
'derived-path.cc',
|
|
|
|
'error_traces.cc',
|
|
|
|
'eval.cc',
|
|
|
|
'json.cc',
|
|
|
|
'main.cc',
|
|
|
|
'nix_api_expr.cc',
|
|
|
|
'nix_api_external.cc',
|
|
|
|
'nix_api_value.cc',
|
|
|
|
'primops.cc',
|
|
|
|
'search-path.cc',
|
|
|
|
'trivial.cc',
|
|
|
|
'value/context.cc',
|
|
|
|
'value/print.cc',
|
|
|
|
'value/value.cc',
|
2024-06-25 16:35:47 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
include_dirs = [include_directories('.')]
|
|
|
|
|
|
|
|
|
|
|
|
this_exe = executable(
|
2024-06-27 18:28:08 +03:00
|
|
|
meson.project_name(),
|
2024-06-25 16:35:47 +03:00
|
|
|
sources,
|
2024-06-27 05:15:33 +03:00
|
|
|
dependencies : deps_private_subproject + deps_private + deps_other,
|
2024-06-25 16:35:47 +03:00
|
|
|
include_directories : include_dirs,
|
|
|
|
# TODO: -lrapidcheck, see ../libutil-support/build.meson
|
|
|
|
link_args: linker_export_flags + ['-lrapidcheck'],
|
|
|
|
install : true,
|
|
|
|
)
|
|
|
|
|
2024-06-29 17:59:05 +03:00
|
|
|
test(
|
|
|
|
meson.project_name(),
|
|
|
|
this_exe,
|
|
|
|
env : {
|
|
|
|
'_NIX_TEST_UNIT_DATA': meson.current_source_dir() / 'data',
|
|
|
|
},
|
|
|
|
protocol : 'gtest',
|
|
|
|
)
|