public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
From: Szymon Janc <szymon.janc@tieto.com>
To: Grzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH 00/19] Android/tester-ng: New android tester
Date: Mon, 14 Jul 2014 17:02:01 +0200	[thread overview]
Message-ID: <1996713.Obmpa98JkE@uw000953> (raw)
In-Reply-To: <1404403222-26911-1-git-send-email-grzegorz.kolodziejczyk@tieto.com>

Hi Grzegorz,

On Thursday 03 of July 2014 18:00:03 Grzegorz Kolodziejczyk wrote:
> Based on past experience with android-tester, new android tester is
> written from scrath with fixed all known bugs and framework
> inadvertancies.
> 
> Each HAL will have it's own file named tester-"hal" which will
> contain test cases and test steps macros (multiple usage of repeating
> test steps in test cases). Main tester (framework) will gather all
> test cases from tester-"hal" and run it.
> 
> Once new test case will be added, same one from old android tester
> will be removed, until whole test case list will be replaced.
> 
> Grzegorz Kolodziejczyk (17):
>   shared/tester: Add support for debug logs for tester
>   android/tester-ng: Add android-tester-ng
>   android/tester-bluetooth: Initial bluetooth HAL tester
>   android/tester-bluetooth: Add initial test case
>   android/tester-bluetooth: Add enable success test case
>   android/tester-ng: Add double enable success test case
>   android/tester-socket: Initial socket tester
>   android/tester-socket: Add initial test case
>   android/tester-hidhost: Initial hidhost tester
>   android/tester-hidhost: Add initial test case
>   android/tester-gatt: Add initial test case
>   android/tester-ng: Add property check handling
>   android/tester-bluetooth: Add disable success test case
>   android/tester-bluetooth: Add bdname set success tc
>   Android/tester-bluetooth: Add scan_mode set success tc
>   Android/tester-bluetooth: Add disc_timeout set success tc
>   android/android-tester: Remove test cases replaced by tester-ng
> 
> Jakub Tyszkowski (2):
>   android/tester-ng: Add callback mechanism
>   android/tester-gatt: Initial gatt tester
> 
>  android/Makefile.am        |   28 ++
>  android/android-tester.c   |  248 -----------
>  android/tester-bluetooth.c |  269 ++++++++++++
>  android/tester-gatt.c      |   46 ++
>  android/tester-hidhost.c   |   46 ++
>  android/tester-main.c      | 1001 ++++++++++++++++++++++++++++++++++++++++++++
>  android/tester-main.h      |  191 +++++++++
>  android/tester-socket.c    |   46 ++
>  src/shared/tester.c        |   14 +
>  src/shared/tester.h        |    2 +
>  10 files changed, 1643 insertions(+), 248 deletions(-)
>  create mode 100644 android/tester-bluetooth.c
>  create mode 100644 android/tester-gatt.c
>  create mode 100644 android/tester-hidhost.c
>  create mode 100644 android/tester-main.c
>  create mode 100644 android/tester-main.h
>  create mode 100644 android/tester-socket.c
> 

All patches applied, thanks. 

-- 
Best regards, 
Szymon Janc

      parent reply	other threads:[~2014-07-14 15:02 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-03 16:00 [PATCH 00/19] Android/tester-ng: New android tester Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 01/19] shared/tester: Add support for debug logs for tester Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 02/19] android/tester-ng: Add android-tester-ng Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 03/19] android/tester-bluetooth: Initial bluetooth HAL tester Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 04/19] android/tester-bluetooth: Add initial test case Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 05/19] android/tester-bluetooth: Add enable success " Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 06/19] android/tester-ng: Add callback mechanism Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 07/19] android/tester-ng: Add double enable success test case Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 08/19] android/tester-socket: Initial socket tester Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 09/19] android/tester-socket: Add initial test case Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 10/19] android/tester-hidhost: Initial hidhost tester Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 11/19] android/tester-hidhost: Add initial test case Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 12/19] android/tester-gatt: Initial gatt tester Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 13/19] android/tester-gatt: Add initial test case Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 14/19] android/tester-ng: Add property check handling Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 15/19] android/tester-bluetooth: Add disable success test case Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 16/19] android/tester-bluetooth: Add bdname set success tc Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 17/19] Android/tester-bluetooth: Add scan_mode " Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 18/19] Android/tester-bluetooth: Add disc_timeout " Grzegorz Kolodziejczyk
2014-07-03 16:00 ` [PATCH 19/19] android/android-tester: Remove test cases replaced by tester-ng Grzegorz Kolodziejczyk
2014-07-14 15:02 ` Szymon Janc [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1996713.Obmpa98JkE@uw000953 \
    --to=szymon.janc@tieto.com \
    --cc=grzegorz.kolodziejczyk@tieto.com \
    --cc=linux-bluetooth@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox