test: fix bitops test name

Message ID 20200619095828.13851-1-david.marchand@redhat.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series test: fix bitops test name |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-broadcom-Performance success Performance Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-nxp-Performance success Performance Testing PASS
ci/travis-robot success Travis build: passed
ci/Intel-compilation success Compilation OK
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-testing success Testing PASS

Commit Message

David Marchand June 19, 2020, 9:58 a.m. UTC
  Caught by code review, bitops test name is incorrect.

Fixes: 7660614c11e2 ("test/bitops: add bit operations test case")

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 app/test/autotest_data.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Phil Yang June 19, 2020, 12:06 p.m. UTC | #1
> -----Original Message-----
> From: David Marchand <david.marchand@redhat.com>
> Sent: Friday, June 19, 2020 5:58 PM
> To: dev@dpdk.org
> Cc: Gavin Hu <Gavin.Hu@arm.com>; Phil Yang <Phil.Yang@arm.com>; Joyce
> Kong <Joyce.Kong@arm.com>
> Subject: [PATCH] test: fix bitops test name
> 
> Caught by code review, bitops test name is incorrect.
> 
> Fixes: 7660614c11e2 ("test/bitops: add bit operations test case")
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
Acked-by: Phil Yang <phil.yang@arm.com>
  
Thomas Monjalon June 24, 2020, 11:29 p.m. UTC | #2
> > Caught by code review, bitops test name is incorrect.
> > 
> > Fixes: 7660614c11e2 ("test/bitops: add bit operations test case")
> > 
> > Signed-off-by: David Marchand <david.marchand@redhat.com>
> > ---
> Acked-by: Phil Yang <phil.yang@arm.com>

Applied, thanks
  

Patch

diff --git a/app/test/autotest_data.py b/app/test/autotest_data.py
index 600b130966..4b7da45e09 100644
--- a/app/test/autotest_data.py
+++ b/app/test/autotest_data.py
@@ -412,7 +412,7 @@ 
     },
     {
         "Name":    "Bitops test",
-        "Command": "bitops_test",
+        "Command": "bitops_autotest",
         "Func":    default_autotest,
         "Report":  None,
     },