mirror of
https://github.com/NixOS/nix.git
synced 2025-11-14 22:42:41 +01:00
Now that we have applied the [1] patch, the diff is much nicer and less noisy. [1]: https://www.github.com/mesonbuild/meson/pull/14861
136 lines
3.2 KiB
Meson
136 lines
3.2 KiB
Meson
project(
|
|
'nix-store-tests',
|
|
'cpp',
|
|
version : files('.version'),
|
|
default_options : [
|
|
'cpp_std=c++2a',
|
|
# TODO(Qyriad): increase the warning level
|
|
'warning_level=1',
|
|
'errorlogs=true', # Please print logs for tests that fail
|
|
],
|
|
meson_version : '>= 1.1',
|
|
license : 'LGPL-2.1-or-later',
|
|
)
|
|
|
|
cxx = meson.get_compiler('cpp')
|
|
|
|
subdir('nix-meson-build-support/deps-lists')
|
|
|
|
nix_store = dependency('nix-store')
|
|
|
|
deps_private_maybe_subproject = [
|
|
nix_store,
|
|
dependency('nix-store-c'),
|
|
dependency('nix-store-test-support'),
|
|
]
|
|
deps_public_maybe_subproject = []
|
|
subdir('nix-meson-build-support/subprojects')
|
|
|
|
subdir('nix-meson-build-support/export-all-symbols')
|
|
subdir('nix-meson-build-support/windows-version')
|
|
|
|
sqlite = dependency('sqlite3', 'sqlite', version : '>=3.6.19')
|
|
deps_private += sqlite
|
|
|
|
rapidcheck = dependency('rapidcheck')
|
|
deps_private += rapidcheck
|
|
|
|
gtest = dependency('gtest', main : true)
|
|
deps_private += gtest
|
|
|
|
configdata = configuration_data()
|
|
configdata.set_quoted('PACKAGE_VERSION', meson.project_version())
|
|
|
|
configdata.set_quoted('NIX_STORE_DIR', nix_store.get_variable('storedir'))
|
|
|
|
config_priv_h = configure_file(
|
|
configuration : configdata,
|
|
output : 'store-tests-config.hh',
|
|
)
|
|
|
|
gtest = dependency('gmock')
|
|
deps_private += gtest
|
|
|
|
subdir('nix-meson-build-support/common')
|
|
|
|
sources = files(
|
|
'common-protocol.cc',
|
|
'content-address.cc',
|
|
'derivation-advanced-attrs.cc',
|
|
'derivation.cc',
|
|
'derived-path.cc',
|
|
'downstream-placeholder.cc',
|
|
'http-binary-cache-store.cc',
|
|
'legacy-ssh-store.cc',
|
|
'local-binary-cache-store.cc',
|
|
'local-overlay-store.cc',
|
|
'local-store.cc',
|
|
'machines.cc',
|
|
'nar-info-disk-cache.cc',
|
|
'nar-info.cc',
|
|
'nix_api_store.cc',
|
|
'outputs-spec.cc',
|
|
'path-info.cc',
|
|
'path.cc',
|
|
'references.cc',
|
|
's3-binary-cache-store.cc',
|
|
'serve-protocol.cc',
|
|
'ssh-store.cc',
|
|
'store-reference.cc',
|
|
'uds-remote-store.cc',
|
|
'worker-protocol.cc',
|
|
)
|
|
|
|
include_dirs = [ include_directories('.') ]
|
|
|
|
|
|
this_exe = executable(
|
|
meson.project_name(),
|
|
sources,
|
|
config_priv_h,
|
|
dependencies : deps_private_subproject + deps_private + deps_other,
|
|
include_directories : include_dirs,
|
|
# TODO: -lrapidcheck, see ../libutil-support/build.meson
|
|
link_args : linker_export_flags + [ '-lrapidcheck' ],
|
|
# get main from gtest
|
|
install : true,
|
|
)
|
|
|
|
test(
|
|
meson.project_name(),
|
|
this_exe,
|
|
env : {
|
|
'_NIX_TEST_UNIT_DATA' : meson.current_source_dir() / 'data',
|
|
'HOME' : meson.current_build_dir() / 'test-home',
|
|
'NIX_REMOTE' : meson.current_build_dir() / 'test-home' / 'store',
|
|
},
|
|
protocol : 'gtest',
|
|
)
|
|
|
|
# Build benchmarks if enabled
|
|
if get_option('benchmarks')
|
|
gbenchmark = dependency('benchmark', required : true)
|
|
|
|
benchmark_sources = files(
|
|
'bench-main.cc',
|
|
'derivation-parser-bench.cc',
|
|
'ref-scan-bench.cc',
|
|
)
|
|
|
|
benchmark_exe = executable(
|
|
'nix-store-benchmarks',
|
|
benchmark_sources,
|
|
config_priv_h,
|
|
dependencies : deps_private_subproject + deps_private + deps_other + [
|
|
gbenchmark,
|
|
],
|
|
include_directories : include_dirs,
|
|
link_args : linker_export_flags,
|
|
install : true,
|
|
cpp_args : [
|
|
'-DNIX_UNIT_TEST_DATA="' + meson.current_source_dir() + '/data"',
|
|
],
|
|
)
|
|
|
|
benchmark('nix-store-benchmarks', benchmark_exe)
|
|
endif
|