open5gs/tests/registration/meson.build

44 lines
1.3 KiB
Meson
Raw Normal View History

2020-06-22 03:07:14 +00:00
# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
# This file is part of Open5GS.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-07-09 05:38:09 +00:00
test5gc_registration_sources = files('''
2020-06-22 03:07:14 +00:00
abts-main.c
simple-test.c
2020-06-22 03:07:14 +00:00
guti-test.c
auth-test.c
ecc-test.c
2020-06-22 03:07:14 +00:00
idle-test.c
dereg-test.c
2021-01-18 16:48:35 +00:00
paging-test.c
2020-06-22 03:07:14 +00:00
identity-test.c
gmm-status-test.c
ue-context-test.c
reset-test.c
multi-ue-test.c
crash-test.c
2020-06-22 03:07:14 +00:00
'''.split())
2020-07-09 05:38:09 +00:00
test5gc_registration_exe = executable('registration',
sources : test5gc_registration_sources,
c_args : testunit_core_cc_flags,
2020-06-22 03:07:14 +00:00
dependencies : libtest5gc_dep)
2020-08-22 03:33:45 +00:00
test('registration',
test5gc_registration_exe,
is_parallel : false,
suite: '5gc')