openbsc.git branch neels/vlr updated. 0.15.0-674-gd05900c72

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Sat Feb 4 04:02:25 UTC 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".

The branch, neels/vlr has been updated
  discards  7b4efa844d96df48a350aa12158844badbc58e06 (commit)
  discards  7d0270ef547a096ed6d736da825cca59b1f8e0b9 (commit)
       via  d05900c72428a6687b9b5584f24e725601142b0e (commit)
       via  a78b1003005bf92e4676e21c4f174d4d803ec24e (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (7b4efa844d96df48a350aa12158844badbc58e06)
            \
             N -- N -- N (d05900c72428a6687b9b5584f24e725601142b0e)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=d05900c72428a6687b9b5584f24e725601142b0e

commit d05900c72428a6687b9b5584f24e725601142b0e
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Sat Feb 4 03:44:02 2017 +0100

    split subscr_conn tests into msc_vlr_test_*
    
    Change-Id: Ie2a0dd716492318b42a5cfeb137ce2dfc5d22d35

http://cgit.osmocom.org/openbsc/commit/?id=a78b1003005bf92e4676e21c4f174d4d803ec24e

commit a78b1003005bf92e4676e21c4f174d4d803ec24e
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Wed Jan 25 15:04:16 2017 +0100

    Add new subscr_conn_test for MSC+VLR end-to-end tests
    
    Change-Id: Ic073f3a069a7f5e7e421e0e56140f069ee9b10b8

-----------------------------------------------------------------------

Summary of changes:
 openbsc/.gitignore                                 |    5 +
 openbsc/configure.ac                               |    2 +-
 openbsc/include/openbsc/gsm_04_11.h                |    2 +
 openbsc/src/libvlr/vlr_auth_fsm.c                  |    2 -
 openbsc/tests/Makefile.am                          |    2 +-
 openbsc/tests/msc_vlr/Makefile.am                  |  111 +
 openbsc/tests/msc_vlr/msc_vlr_test_gsm_authen.c    |  908 ++++
 openbsc/tests/msc_vlr/msc_vlr_test_gsm_authen.err  | 1837 +++++++
 .../msc_vlr_test_gsm_authen.ok}                    |    0
 openbsc/tests/msc_vlr/msc_vlr_test_gsm_ciph.c      | 1463 ++++++
 openbsc/tests/msc_vlr/msc_vlr_test_gsm_ciph.err    | 1571 ++++++
 .../msc_vlr_test_gsm_ciph.ok}                      |    0
 openbsc/tests/msc_vlr/msc_vlr_test_no_authen.c     |  511 ++
 openbsc/tests/msc_vlr/msc_vlr_test_no_authen.err   | 1102 +++++
 .../msc_vlr_test_no_authen.ok}                     |    0
 openbsc/tests/msc_vlr/msc_vlr_test_rest.c          |  203 +
 openbsc/tests/msc_vlr/msc_vlr_test_rest.err        |  460 ++
 .../msc_vlr_test_rest.ok}                          |    0
 openbsc/tests/msc_vlr/msc_vlr_test_umts_authen.c   |  458 ++
 openbsc/tests/msc_vlr/msc_vlr_test_umts_authen.err | 1123 +++++
 .../msc_vlr_test_umts_authen.ok}                   |    0
 openbsc/tests/msc_vlr/msc_vlr_tests.c              |  586 +++
 openbsc/tests/msc_vlr/msc_vlr_tests.h              |  124 +
 openbsc/tests/subscr_conn/Makefile.am              |   55 -
 openbsc/tests/subscr_conn/subscr_conn_test.c       | 3069 ------------
 openbsc/tests/subscr_conn/subscr_conn_test.err     | 5165 --------------------
 openbsc/tests/testsuite.at                         |   38 +-
 27 files changed, 10499 insertions(+), 8298 deletions(-)
 create mode 100644 openbsc/tests/msc_vlr/Makefile.am
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_gsm_authen.c
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_gsm_authen.err
 copy openbsc/tests/{subscr_conn/subscr_conn_test.ok => msc_vlr/msc_vlr_test_gsm_authen.ok} (100%)
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_gsm_ciph.c
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_gsm_ciph.err
 copy openbsc/tests/{subscr_conn/subscr_conn_test.ok => msc_vlr/msc_vlr_test_gsm_ciph.ok} (100%)
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_no_authen.c
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_no_authen.err
 copy openbsc/tests/{subscr_conn/subscr_conn_test.ok => msc_vlr/msc_vlr_test_no_authen.ok} (100%)
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_rest.c
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_rest.err
 copy openbsc/tests/{subscr_conn/subscr_conn_test.ok => msc_vlr/msc_vlr_test_rest.ok} (100%)
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_umts_authen.c
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_umts_authen.err
 rename openbsc/tests/{subscr_conn/subscr_conn_test.ok => msc_vlr/msc_vlr_test_umts_authen.ok} (100%)
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_tests.c
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_tests.h
 delete mode 100644 openbsc/tests/subscr_conn/Makefile.am
 delete mode 100644 openbsc/tests/subscr_conn/subscr_conn_test.c
 delete mode 100644 openbsc/tests/subscr_conn/subscr_conn_test.err


hooks/post-receive
-- 
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)



More information about the osmocom-commitlog mailing list