diff mbox series

[BlueZ,1/2] tools/mgmt-tester: Adjust test setup complete check

Message ID 20210603000416.171392-1-inga.stotland@intel.com
State New
Headers show
Series [BlueZ,1/2] tools/mgmt-tester: Adjust test setup complete check | expand

Commit Message

Inga Stotland June 3, 2021, 12:04 a.m. UTC
This changes check for setup complete in client_cmd_complete() callback
from tester_setup_complete() to test_setup_condition_complete(). This
allows for combining setup conditions when setup_bthost() is called.
---
 tools/mgmt-tester.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com June 3, 2021, 12:50 a.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=492919

---Test result---

Test Summary:
CheckPatch                    PASS      0.45 seconds
GitLint                       PASS      0.21 seconds
Prep - Setup ELL              PASS      41.15 seconds
Build - Prep                  PASS      0.10 seconds
Build - Configure             PASS      7.19 seconds
Build - Make                  PASS      177.68 seconds
Make Check                    PASS      8.92 seconds
Make Distcheck                PASS      210.21 seconds
Build w/ext ELL - Configure   PASS      7.21 seconds
Build w/ext ELL - Make        PASS      167.43 seconds

Details
##############################
Test: CheckPatch - PASS
Desc: Run checkpatch.pl script with rule in .checkpatch.conf

##############################
Test: GitLint - PASS
Desc: Run gitlint with rule in .gitlint

##############################
Test: Prep - Setup ELL - PASS
Desc: Clone, build, and install ELL

##############################
Test: Build - Prep - PASS
Desc: Prepare environment for build

##############################
Test: Build - Configure - PASS
Desc: Configure the BlueZ source tree

##############################
Test: Build - Make - PASS
Desc: Build the BlueZ source tree

##############################
Test: Make Check - PASS
Desc: Run 'make check'

##############################
Test: Make Distcheck - PASS
Desc: Run distcheck to check the distribution

##############################
Test: Build w/ext ELL - Configure - PASS
Desc: Configure BlueZ source with '--enable-external-ell' configuration

##############################
Test: Build w/ext ELL - Make - PASS
Desc: Build BlueZ source with '--enable-external-ell' configuration



---
Regards,
Linux Bluetooth
Tedd Ho-Jeong An June 3, 2021, 7:38 p.m. UTC | #2
Hi Inga,

On Wed, 2021-06-02 at 17:04 -0700, Inga Stotland wrote:
> This changes check for setup complete in client_cmd_complete() callback

> from tester_setup_complete() to test_setup_condition_complete(). This

> allows for combining setup conditions when setup_bthost() is called.


Reviewed-by: Tedd Ho-Jeong An <tedd.an@intel.com>


> ---

>  tools/mgmt-tester.c | 3 ++-

>  1 file changed, 2 insertions(+), 1 deletion(-)

> 

> diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c

> index 4dd3490c2..657b7aaa0 100644

> --- a/tools/mgmt-tester.c

> +++ b/tools/mgmt-tester.c

> @@ -5831,7 +5831,7 @@ static void client_cmd_complete(uint16_t opcode, uint8_t status,

>  	if (status)

>  		tester_setup_failed();

>  	else

> -		tester_setup_complete();

> +		test_setup_condition_complete(data);

>  }

>  

>  static void setup_bthost(void)

> @@ -5842,6 +5842,7 @@ static void setup_bthost(void)

>  

>  	bthost = hciemu_client_get_host(data->hciemu);

>  	bthost_set_cmd_complete_cb(bthost, client_cmd_complete, data);

> +	test_add_setup_condition(data);

>  

>  	if (data->hciemu_type == HCIEMU_TYPE_LE ||

>  		test->client_enable_adv) {


Regards,
Tedd
Luiz Augusto von Dentz June 3, 2021, 8:18 p.m. UTC | #3
Hi Inga,

On Thu, Jun 3, 2021 at 12:38 PM Tedd Ho-Jeong An
<tedd.an@linux.intel.com> wrote:
>

> Hi Inga,

>

> On Wed, 2021-06-02 at 17:04 -0700, Inga Stotland wrote:

> > This changes check for setup complete in client_cmd_complete() callback

> > from tester_setup_complete() to test_setup_condition_complete(). This

> > allows for combining setup conditions when setup_bthost() is called.

>

> Reviewed-by: Tedd Ho-Jeong An <tedd.an@intel.com>

>

> > ---

> >  tools/mgmt-tester.c | 3 ++-

> >  1 file changed, 2 insertions(+), 1 deletion(-)

> >

> > diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c

> > index 4dd3490c2..657b7aaa0 100644

> > --- a/tools/mgmt-tester.c

> > +++ b/tools/mgmt-tester.c

> > @@ -5831,7 +5831,7 @@ static void client_cmd_complete(uint16_t opcode, uint8_t status,

> >       if (status)

> >               tester_setup_failed();

> >       else

> > -             tester_setup_complete();

> > +             test_setup_condition_complete(data);

> >  }

> >

> >  static void setup_bthost(void)

> > @@ -5842,6 +5842,7 @@ static void setup_bthost(void)

> >

> >       bthost = hciemu_client_get_host(data->hciemu);

> >       bthost_set_cmd_complete_cb(bthost, client_cmd_complete, data);

> > +     test_add_setup_condition(data);

> >

> >       if (data->hciemu_type == HCIEMU_TYPE_LE ||

> >               test->client_enable_adv) {

>

> Regards,

> Tedd

>


Applied, thanks.

-- 
Luiz Augusto von Dentz
diff mbox series

Patch

diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c
index 4dd3490c2..657b7aaa0 100644
--- a/tools/mgmt-tester.c
+++ b/tools/mgmt-tester.c
@@ -5831,7 +5831,7 @@  static void client_cmd_complete(uint16_t opcode, uint8_t status,
 	if (status)
 		tester_setup_failed();
 	else
-		tester_setup_complete();
+		test_setup_condition_complete(data);
 }
 
 static void setup_bthost(void)
@@ -5842,6 +5842,7 @@  static void setup_bthost(void)
 
 	bthost = hciemu_client_get_host(data->hciemu);
 	bthost_set_cmd_complete_cb(bthost, client_cmd_complete, data);
+	test_add_setup_condition(data);
 
 	if (data->hciemu_type == HCIEMU_TYPE_LE ||
 		test->client_enable_adv) {