xref: /openbmc/obmc-console/test/meson.build (revision 29a8f989)
1tests = [
2	'test-ringbuffer-boundary-poll',
3	'test-ringbuffer-boundary-read',
4	'test-ringbuffer-contained-offset-read',
5	'test-ringbuffer-contained-read',
6	'test-ringbuffer-poll-force',
7	'test-ringbuffer-read-commit',
8	'test-ringbuffer-simple-poll',
9]
10
11foreach t : tests
12  test(t, executable(t, f'@t@.c', c_args: [ '-DSYSCONFDIR=""' ],
13		     include_directories: '..'))
14endforeach
15
16tests_depend_iniparser = [
17	'test-client-escape',
18	'test-config-parse',
19	'test-config-parse-bytesize',
20	'test-config-resolve-console-id'
21]
22
23foreach ct : tests_depend_iniparser
24  test(
25    ct,
26    executable(
27      ct,
28      f'@ct@.c',
29      c_args: [ '-DSYSCONFDIR=""' ],
30      dependencies: [ iniparser_dep ],
31      include_directories: '..'
32    )
33  )
34endforeach
35
36socat = find_program('socat', native: true)
37
38meson.override_find_program('test-console-logs-to-file', files('test-console-logs-to-file'))
39test('test-console-logs-to-file',
40  find_program('test-console-logs-to-file'),
41  args: [ socat.full_path(), server.full_path() ],
42  depends: [ server ],
43  suite: 'itests'
44)
45