From dbb7ae2de932cbbca10467662d8ccb13456e9670 Mon Sep 17 00:00:00 2001 From: Sukchan Lee Date: Fri, 10 Jul 2020 17:27:45 -0400 Subject: [PATCH] Release v1.3.0 --- debian/changelog | 2 +- docs/_docs/troubleshoot/02-now-in-github-issues.md | 12 ++++++------ meson.build | 5 ++++- tests/epc/meson.build | 8 ++++---- 4 files changed, 15 insertions(+), 12 deletions(-) diff --git a/debian/changelog b/debian/changelog index 76696c3f0..bfd071073 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ open5gs (1.3.0) unstable; urgency=medium - * 5G Core Added + * Release-16 -- Sukchan Lee Sun, 21 Jun 2020 23:14:04 -0400 diff --git a/docs/_docs/troubleshoot/02-now-in-github-issues.md b/docs/_docs/troubleshoot/02-now-in-github-issues.md index 906a14de1..e4b5fc592 100644 --- a/docs/_docs/troubleshoot/02-now-in-github-issues.md +++ b/docs/_docs/troubleshoot/02-now-in-github-issues.md @@ -14,7 +14,7 @@ $ meson test 5/8 open5gs:epc / simple OK 7.69 s --- command --- -08:06:23 /home/parallels/open5gs/build/tests/epc-simple/simple +08:06:23 /home/parallels/open5gs/build/tests/epc/simple --- stdout --- s1setup-test : SUCCESS attach-test : SUCCESS @@ -385,11 +385,11 @@ You can start MongoDB using systemctl. $ sudo systemctl start mongodb ``` -#### I have some error when running `./build/test/epc-simple/simple` +#### I have some error when running `./build/test/epc/simple` -Did you see the following error after executing `./build/test/epc-simple/simple`? +Did you see the following error after executing `./build/test/epc/simple`? ```bash -$ ./build/test/epc-simple/simple +$ ./build/test/epc/simple s1setup_test : SUCCESS attach_test : -Line 134: Condition is false, but expected true \04/09 15:49:09.285: [esm] FATAL: esm_handle_pdn_connectivity_request: Assertion `SECURITY_CONTEXT_IS_VALID(mme_ue)' failed. (esm_handler.c:29) @@ -415,9 +415,9 @@ $ sudo pkill -9 simple $ sudo pkill -9 open5gs-mmed ... ``` -Execute `./build/test/epc-simple/simple` +Execute `./build/test/epc/simple` ```bash -$ ./build/test/epc-simple/simple +$ ./build/test/epc/simple ``` #### My eNB does not support IPv6. diff --git a/meson.build b/meson.build index 66a5f424e..9674556f4 100644 --- a/meson.build +++ b/meson.build @@ -16,7 +16,10 @@ # along with this program. If not, see . project('open5gs', 'c', - version : run_command('misc/git-version-gen', '@0@/.tarball-version'.format(meson.source_root()), check : true).stdout().strip(), +# Ubuntu 18.04 does not support. +# +# version : run_command('misc/git-version-gen', '@0@/.tarball-version'.format(meson.source_root()), check : true).stdout().strip(), + version : '1.3.0', license : 'AGPL-3.0-or-later', meson_version : '>= 0.43.0', default_options : [ diff --git a/tests/epc/meson.build b/tests/epc/meson.build index 5c34f642f..345cb365f 100644 --- a/tests/epc/meson.build +++ b/tests/epc/meson.build @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -testepc_epc_sources = files(''' +testepc_simple_sources = files(''' abts-main.c s1setup-test.c attach-test.c @@ -25,9 +25,9 @@ testepc_epc_sources = files(''' '''.split()) -testepc_epc_exe = executable('epc', - sources : testepc_epc_sources, +testepc_simple_exe = executable('simple', + sources : testepc_simple_sources, c_args : testunit_core_cc_flags, dependencies : libtestepc_dep) -test('epc', testepc_epc_exe, is_parallel : false, suite: 'epc') +test('simple', testepc_simple_exe, is_parallel : false, suite: 'epc')