Systemd/src/timesync/meson.build
Zbigniew Jędrzejewski-Szmek c6c1ba8f64 test-timesync: add first test for timesyncd conf parsing
We parse the string supplied in NTP_SERVERS during configuration under an
assert_se(). Right now we will accept pretty much anything there, but in case
we are more picky in the future, add a simple test which checks that we can
actually parse whatever is in NTP_SERVERS so that we don't fail the assertion
at runtime.
2017-05-25 10:59:35 -04:00

43 lines
1.2 KiB
Meson

systemd_timesyncd_sources = files('''
timesyncd.c
timesyncd-manager.c
timesyncd-manager.h
timesyncd-conf.c
timesyncd-conf.h
timesyncd-server.c
timesyncd-server.h
'''.split())
timesyncd_gperf_c = custom_target(
'timesyncd-gperf.c',
input : 'timesyncd-gperf.gperf',
output : 'timesyncd-gperf.c',
command : [gperf, '@INPUT@', '--output-file', '@OUTPUT@'])
systemd_timesyncd_sources += [timesyncd_gperf_c]
if conf.get('ENABLE_TIMESYNCD', false)
timesyncd_conf = configure_file(
input : 'timesyncd.conf.in',
output : 'timesyncd.conf',
configuration : substs)
install_data(timesyncd_conf,
install_dir : pkgsysconfdir)
endif
############################################################
tests += [
[['src/timesync/test-timesync.c',
'src/timesync/timesyncd-manager.c',
'src/timesync/timesyncd-manager.h',
'src/timesync/timesyncd-conf.c',
'src/timesync/timesyncd-conf.h',
'src/timesync/timesyncd-server.c',
'src/timesync/timesyncd-server.h',
timesyncd_gperf_c],
[libshared],
[libm],
'ENABLE_TIMESYNCD'],
]