mbox

Pull request: validation last modules from platform side

Message ID 20150708150737.GA26781@erachmi-VirtualBox
State New
Headers show

Pull-request

https://git.linaro.org/people/christophe.milard/odp.git test_module_timer

Message

Christophe Milard July 8, 2015, 3:07 p.m. UTC
Hi Maxim,
Hope this is what you need for a proper pull request.
Let me know if anything is wrong/could be improved in this pull-req.

All these patches have been reviewed by Stuart and do -hopefully-
not contain any big surprises. just the continuation of the
"run from platform side" for the last test/validation modules.
Thanks,
Christophe.

The following changes since commit 493b618e8ad3184a97910485ad782732ec382979:

  linux-generic: schedule: fix double free (2015-07-03 15:09:24 +0300)

are available in the git repository at:

  https://git.linaro.org/people/christophe.milard/odp.git test_module_timer

for you to fetch changes up to 46fc2ab3225159d2bababe0d7f020009ebbb69f0:

  validation: call to timer_main from platform (2015-07-08 16:18:41 +0200)

----------------------------------------------------------------
Christophe Milard (20):
      validation: removed errno from odp_ver_abt_log_dbg
      validation: cosmetic change in odp_errno.c
      validation: new module errno
      validation: renaming in odp_errno.c
      validation: renaming system to time
      validation: single src for odp_ver_abt_log_dbg
      validation: mv odp_ver_abt_log_dbg to system
      validation: own main in odp_system
      validation: renaming in system.c
      validation: creating own dir and lib for system
      validation: call to system_main from platform side
      validation: own main in odp_shared_memory.c
      validation: renaming in odp_shared_memory.c
      validation: creating own dir and lib for shmem
      validation: call to shmem_main from platform side.
      validation: own main in odp_timer.c
      validation: renaming in odp_timer.c
      validation: cosmetic changes in odp_timer.c
      validation: creating own dir and lib for timer
      validation: call to timer_main from platform

 configure.ac                                       |   6 +-
 platform/linux-generic/test/Makefile.am            |   8 +-
 test/validation/.gitignore                         |   3 -
 test/validation/Makefile.am                        |  27 ++---
 test/validation/errno/.gitignore                   |   2 +
 test/validation/errno/Makefile.am                  |   8 ++
 .../{ver_abt_log_dbg/odp_errno.c => errno/errno.c} |  17 +++-
 test/validation/errno/errno.h                      |   7 ++
 test/validation/errno/errno_main.c                 |  12 +++
 test/validation/shmem/.gitignore                   |   2 +
 test/validation/shmem/Makefile.am                  |   8 ++
 .../{odp_shared_memory.c => shmem/shmem.c}         |  15 ++-
 test/validation/shmem/shmem.h                      |   7 ++
 test/validation/shmem/shmem_main.c                 |  12 +++
 test/validation/system/.gitignore                  |   2 +-
 test/validation/system/system.c                    | 112 +++++++++++++--------
 test/validation/system/system.h                    |   2 +-
 test/validation/system/system_main.c               |   2 +-
 test/validation/time/.gitignore                    |   2 +
 test/validation/time/Makefile.am                   |   8 ++
 test/validation/time/time.c                        |  79 +++++++++++++++
 test/validation/time/time.h                        |   7 ++
 test/validation/time/time_main.c                   |  12 +++
 test/validation/timer/.gitignore                   |   2 +
 test/validation/timer/Makefile.am                  |   8 ++
 test/validation/{odp_timer.c => timer/timer.c}     |  63 ++++++------
 test/validation/timer/timer.h                      |   7 ++
 test/validation/timer/timer_main.c                 |  12 +++
 test/validation/ver_abt_log_dbg/odp_errno.h        |   9 --
 test/validation/ver_abt_log_dbg/odp_system.c       |  94 -----------------
 test/validation/ver_abt_log_dbg/odp_system.h       |   9 --
 .../ver_abt_log_dbg/odp_ver_abt_log_dbg.c          |  16 ---
 32 files changed, 343 insertions(+), 237 deletions(-)
 create mode 100644 test/validation/errno/.gitignore
 create mode 100644 test/validation/errno/Makefile.am
 rename test/validation/{ver_abt_log_dbg/odp_errno.c => errno/errno.c} (55%)
 create mode 100644 test/validation/errno/errno.h
 create mode 100644 test/validation/errno/errno_main.c
 create mode 100644 test/validation/shmem/.gitignore
 create mode 100644 test/validation/shmem/Makefile.am
 rename test/validation/{odp_shared_memory.c => shmem/shmem.c} (86%)
 create mode 100644 test/validation/shmem/shmem.h
 create mode 100644 test/validation/shmem/shmem_main.c
 create mode 100644 test/validation/time/.gitignore
 create mode 100644 test/validation/time/Makefile.am
 create mode 100644 test/validation/time/time.c
 create mode 100644 test/validation/time/time.h
 create mode 100644 test/validation/time/time_main.c
 create mode 100644 test/validation/timer/.gitignore
 create mode 100644 test/validation/timer/Makefile.am
 rename test/validation/{odp_timer.c => timer/timer.c} (90%)
 create mode 100644 test/validation/timer/timer.h
 create mode 100644 test/validation/timer/timer_main.c
 delete mode 100644 test/validation/ver_abt_log_dbg/odp_errno.h
 delete mode 100644 test/validation/ver_abt_log_dbg/odp_system.c
 delete mode 100644 test/validation/ver_abt_log_dbg/odp_system.h
 delete mode 100644 test/validation/ver_abt_log_dbg/odp_ver_abt_log_dbg.c

Comments

Maxim Uvarov July 9, 2015, 10:30 a.m. UTC | #1
Patch set merged!

Maxim.

On 07/09/15 12:43, Nicolas Morey-Chaisemartin wrote:
> Few merge conflicts with our branch (none your fault) but all the tests are still OK.
> I'm good with this on the functional side anyway. I haven't taken the time to check all the patches individually.
>
> Nicolas
>
> On 07/08/2015 05:07 PM, Christophe Milard wrote:
>> Hi Maxim,
>> Hope this is what you need for a proper pull request.
>> Let me know if anything is wrong/could be improved in this pull-req.
>>
>> All these patches have been reviewed by Stuart and do -hopefully-
>> not contain any big surprises. just the continuation of the
>> "run from platform side" for the last test/validation modules.
>> Thanks,
>> Christophe.
>>
>> The following changes since commit 493b618e8ad3184a97910485ad782732ec382979:
>>
>>    linux-generic: schedule: fix double free (2015-07-03 15:09:24 +0300)
>>
>> are available in the git repository at:
>>
>>    https://git.linaro.org/people/christophe.milard/odp.git test_module_timer
>>
>> for you to fetch changes up to 46fc2ab3225159d2bababe0d7f020009ebbb69f0:
>>
>>    validation: call to timer_main from platform (2015-07-08 16:18:41 +0200)
>>
>> ----------------------------------------------------------------
>> Christophe Milard (20):
>>        validation: removed errno from odp_ver_abt_log_dbg
>>        validation: cosmetic change in odp_errno.c
>>        validation: new module errno
>>        validation: renaming in odp_errno.c
>>        validation: renaming system to time
>>        validation: single src for odp_ver_abt_log_dbg
>>        validation: mv odp_ver_abt_log_dbg to system
>>        validation: own main in odp_system
>>        validation: renaming in system.c
>>        validation: creating own dir and lib for system
>>        validation: call to system_main from platform side
>>        validation: own main in odp_shared_memory.c
>>        validation: renaming in odp_shared_memory.c
>>        validation: creating own dir and lib for shmem
>>        validation: call to shmem_main from platform side.
>>        validation: own main in odp_timer.c
>>        validation: renaming in odp_timer.c
>>        validation: cosmetic changes in odp_timer.c
>>        validation: creating own dir and lib for timer
>>        validation: call to timer_main from platform
>>
>>   configure.ac                                       |   6 +-
>>   platform/linux-generic/test/Makefile.am            |   8 +-
>>   test/validation/.gitignore                         |   3 -
>>   test/validation/Makefile.am                        |  27 ++---
>>   test/validation/errno/.gitignore                   |   2 +
>>   test/validation/errno/Makefile.am                  |   8 ++
>>   .../{ver_abt_log_dbg/odp_errno.c => errno/errno.c} |  17 +++-
>>   test/validation/errno/errno.h                      |   7 ++
>>   test/validation/errno/errno_main.c                 |  12 +++
>>   test/validation/shmem/.gitignore                   |   2 +
>>   test/validation/shmem/Makefile.am                  |   8 ++
>>   .../{odp_shared_memory.c => shmem/shmem.c}         |  15 ++-
>>   test/validation/shmem/shmem.h                      |   7 ++
>>   test/validation/shmem/shmem_main.c                 |  12 +++
>>   test/validation/system/.gitignore                  |   2 +-
>>   test/validation/system/system.c                    | 112 +++++++++++++--------
>>   test/validation/system/system.h                    |   2 +-
>>   test/validation/system/system_main.c               |   2 +-
>>   test/validation/time/.gitignore                    |   2 +
>>   test/validation/time/Makefile.am                   |   8 ++
>>   test/validation/time/time.c                        |  79 +++++++++++++++
>>   test/validation/time/time.h                        |   7 ++
>>   test/validation/time/time_main.c                   |  12 +++
>>   test/validation/timer/.gitignore                   |   2 +
>>   test/validation/timer/Makefile.am                  |   8 ++
>>   test/validation/{odp_timer.c => timer/timer.c}     |  63 ++++++------
>>   test/validation/timer/timer.h                      |   7 ++
>>   test/validation/timer/timer_main.c                 |  12 +++
>>   test/validation/ver_abt_log_dbg/odp_errno.h        |   9 --
>>   test/validation/ver_abt_log_dbg/odp_system.c       |  94 -----------------
>>   test/validation/ver_abt_log_dbg/odp_system.h       |   9 --
>>   .../ver_abt_log_dbg/odp_ver_abt_log_dbg.c          |  16 ---
>>   32 files changed, 343 insertions(+), 237 deletions(-)
>>   create mode 100644 test/validation/errno/.gitignore
>>   create mode 100644 test/validation/errno/Makefile.am
>>   rename test/validation/{ver_abt_log_dbg/odp_errno.c => errno/errno.c} (55%)
>>   create mode 100644 test/validation/errno/errno.h
>>   create mode 100644 test/validation/errno/errno_main.c
>>   create mode 100644 test/validation/shmem/.gitignore
>>   create mode 100644 test/validation/shmem/Makefile.am
>>   rename test/validation/{odp_shared_memory.c => shmem/shmem.c} (86%)
>>   create mode 100644 test/validation/shmem/shmem.h
>>   create mode 100644 test/validation/shmem/shmem_main.c
>>   create mode 100644 test/validation/time/.gitignore
>>   create mode 100644 test/validation/time/Makefile.am
>>   create mode 100644 test/validation/time/time.c
>>   create mode 100644 test/validation/time/time.h
>>   create mode 100644 test/validation/time/time_main.c
>>   create mode 100644 test/validation/timer/.gitignore
>>   create mode 100644 test/validation/timer/Makefile.am
>>   rename test/validation/{odp_timer.c => timer/timer.c} (90%)
>>   create mode 100644 test/validation/timer/timer.h
>>   create mode 100644 test/validation/timer/timer_main.c
>>   delete mode 100644 test/validation/ver_abt_log_dbg/odp_errno.h
>>   delete mode 100644 test/validation/ver_abt_log_dbg/odp_system.c
>>   delete mode 100644 test/validation/ver_abt_log_dbg/odp_system.h
>>   delete mode 100644 test/validation/ver_abt_log_dbg/odp_ver_abt_log_dbg.c
>> _______________________________________________
>> lng-odp mailing list
>> lng-odp@lists.linaro.org
>> https://lists.linaro.org/mailman/listinfo/lng-odp