aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/repl_characterization/meson.build
blob: 56410cfd2d5846d0f6fdc337bf268c58d80cb485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
repl_characterization_tester_sources = files(
  'repl_characterization.cc',
  'test-session.cc',
)

repl_characterization_tester = executable(
  'test-repl-characterization',
  repl_characterization_tester_sources,
  dependencies : [
    liblixutil,
    liblixutil_test_support,
    sodium,
    editline,
    boost,
    lowdown,
    gtest,
  ],
  cpp_args : [
    f'-DNIX_BIN_DIR="@bindir@"',
  ],
  build_by_default : false,
)

# TODO(Qyriad): better understand the repl characterization tests' preconditions
# so we can run this with the gtest protocol, without run-test.py.
test(
  # test-repl-characterization.sh expects the tester executable to have this name,
  # so this name it shall have.
  'repl-characterization-tests',
  python,
  args : [
    meson.project_source_root() / 'meson/run-test.py',
    'test-repl-characterization.sh',
  ],
  depends : [repl_characterization_tester],
  env : {
    '_NIX_TEST_UNIT_DATA': meson.current_build_dir() / 'data',
    'MESON_BUILD_ROOT': meson.project_build_root(),
  },
  suite : 'installcheck',
)