[chrony-dev] [GIT] chrony/chrony.git branch, master, updated. 2.3-pre1-8-g910663c

[ Thread Index | Date Index | More chrony.tuxfamily.org/chrony-dev Archives ]


This is an automated email from git. It was enerated because a ref
change was pushed to the repository "chrony/chrony.git".

The branch, master has been updated
       via  910663c37bf64108760a9cab33bf8d21a83680de (commit)
       via  34a4695e81b02d879cdfc426be47503c496ab6d6 (commit)
       via  fe00319f45ef975090c650e557277f9c85d9bdce (commit)
       via  4c77d1841620d74a0e10b52be0214460c0bc5d44 (commit)
       via  a63e18edb83a585b1bbbaac17f3d2bfc8e4256c6 (commit)
       via  8b676502de91951f9a8071b94793892238ec2a4f (commit)
       via  cf5b344ea82d375d8702bb4835d77c28a872ad8a (commit)
       via  4ab98f62e913718da46b13ff9aa820564b2c2389 (commit)
      from  e6cc682f86a14f80ff89b65c720b5395ee10c27c (commit)

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 -----------------------------------------------------------------
commit 910663c37bf64108760a9cab33bf8d21a83680de
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Feb 5 14:46:03 2016 +0100

    test: add ntp_sources unit test

commit 34a4695e81b02d879cdfc426be47503c496ab6d6
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Feb 5 11:52:27 2016 +0100

    test: add clientlog unit test

commit fe00319f45ef975090c650e557277f9c85d9bdce
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Feb 5 11:10:44 2016 +0100

    addrfilt: remove TEST code
    
    A test of the address filter is now included in unit tests.

commit 4c77d1841620d74a0e10b52be0214460c0bc5d44
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Feb 5 11:08:12 2016 +0100

    test: add addrfilt unit test

commit a63e18edb83a585b1bbbaac17f3d2bfc8e4256c6
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Feb 5 10:52:47 2016 +0100

    test: specify files with path in source commands
    
    This should prevent sourcing of an unrelated file found in $PATH.

commit 8b676502de91951f9a8071b94793892238ec2a4f
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Feb 5 10:47:16 2016 +0100

    test: don't download files in tests
    
    Remove automatic download and compilation of clknetsim. If clknetsim is
    not found, skip all simulation tests, but don't fail "make check".
    Also, respect the CLKNETSIM_PATH environment variable.

commit cf5b344ea82d375d8702bb4835d77c28a872ad8a
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Feb 5 09:53:43 2016 +0100

    git: update .gitignore

commit 4ab98f62e913718da46b13ff9aa820564b2c2389
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Feb 5 09:52:46 2016 +0100

    test: add support for unit testing

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

Summary of changes:
 .gitignore                           |    3 +
 Makefile.in                          |    1 +
 addrfilt.c                           |  114 --------------------------------
 configure                            |    2 +-
 test/simulation/001-defaults         |    2 +-
 test/simulation/002-largenetwork     |    2 +-
 test/simulation/003-largefreqoffset  |    2 +-
 test/simulation/004-largetimeoffset  |    2 +-
 test/simulation/005-externalstep     |    2 +-
 test/simulation/006-largejitter      |    2 +-
 test/simulation/007-largewander      |    2 +-
 test/simulation/008-ntpera           |    2 +-
 test/simulation/009-sourceselection  |    2 +-
 test/simulation/101-poll             |    2 +-
 test/simulation/102-iburst           |    2 +-
 test/simulation/103-initstepslew     |    2 +-
 test/simulation/104-driftfile        |    2 +-
 test/simulation/105-ntpauth          |    2 +-
 test/simulation/106-refclock         |    2 +-
 test/simulation/107-allowdeny        |    2 +-
 test/simulation/108-peer             |    2 +-
 test/simulation/109-makestep         |    2 +-
 test/simulation/110-chronyc          |    2 +-
 test/simulation/111-knownclient      |    2 +-
 test/simulation/112-port             |    2 +-
 test/simulation/113-leapsecond       |    2 +-
 test/simulation/114-presend          |    2 +-
 test/simulation/115-cmdmontime       |    2 +-
 test/simulation/116-minsources       |    2 +-
 test/simulation/117-fallbackdrift    |    2 +-
 test/simulation/118-maxdelay         |    2 +-
 test/simulation/119-smoothtime       |    2 +-
 test/simulation/120-selectoptions    |    2 +-
 test/simulation/201-freqaccumulation |    2 +-
 test/simulation/202-prefer           |    2 +-
 test/simulation/README               |   11 ++--
 test/simulation/run                  |    2 -
 test/simulation/test.common          |   24 ++-----
 test/unit/Makefile.in                |   42 ++++++++++++
 test/unit/addrfilt.c                 |   83 ++++++++++++++++++++++++
 test/unit/clientlog.c                |   84 ++++++++++++++++++++++++
 test/unit/ntp_sources.c              |   99 ++++++++++++++++++++++++++++
 test/unit/test.c                     |  119 ++++++++++++++++++++++++++++++++++
 sys_solaris.h => test/unit/test.h    |   27 ++++----
 44 files changed, 488 insertions(+), 185 deletions(-)
 create mode 100644 test/unit/Makefile.in
 create mode 100644 test/unit/addrfilt.c
 create mode 100644 test/unit/clientlog.c
 create mode 100644 test/unit/ntp_sources.c
 create mode 100644 test/unit/test.c
 copy sys_solaris.h => test/unit/test.h (66%)


hooks/post-receive
--
chrony/chrony.git

-- 
To unsubscribe email chrony-dev-request@xxxxxxxxxxxxxxxxxxxx with "unsubscribe" in the subject.
For help email chrony-dev-request@xxxxxxxxxxxxxxxxxxxx with "help" in the subject.
Trouble?  Email listmaster@xxxxxxxxxxxxxxxxxxxx.


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/