[v2,1/4] test: fix typo in print statement

Message ID 1557170602-99431-1-git-send-email-drc@linux.vnet.ibm.com (mailing list archive)
State Superseded, archived
Headers
Series [v2,1/4] test: fix typo in print statement |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/mellanox-Performance-Testing success Performance Testing PASS
ci/intel-Performance-Testing fail Performance Testing issues

Commit Message

David Christensen May 6, 2019, 7:23 p.m. UTC
  Change "much" to "match" in a printf.

Signed-off-by: David Christensen <drc@linux.vnet.ibm.com>
---
v2:
* None

 app/test/test_barrier.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Ananyev, Konstantin May 7, 2019, 10:41 a.m. UTC | #1
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of David Christensen
> Sent: Monday, May 6, 2019 8:23 PM
> To: dev@dpdk.org
> Cc: David Christensen <drc@linux.vnet.ibm.com>
> Subject: [dpdk-dev] [PATCH v2 1/4] test: fix typo in print statement
> 
> Change "much" to "match" in a printf.
> 
> Signed-off-by: David Christensen <drc@linux.vnet.ibm.com>
> ---
> v2:
> * None
> 
>  app/test/test_barrier.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/app/test/test_barrier.c b/app/test/test_barrier.c
> index 82b572c..c219d56 100644
> --- a/app/test/test_barrier.c
> +++ b/app/test/test_barrier.c
> @@ -252,7 +252,7 @@ struct lcore_plock_test {
> 
>  		/* race condition occurred, lock doesn't work properly */
>  		if (sum[i] != pt[i].val || 2 * iter != pt[i].iter) {
> -			printf("error: local and shared sums don't much\n");
> +			printf("error: local and shared sums don't match\n");
>  			rc = -1;
>  		}
>  	}
> --

Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

> 1.8.3.1
  

Patch

diff --git a/app/test/test_barrier.c b/app/test/test_barrier.c
index 82b572c..c219d56 100644
--- a/app/test/test_barrier.c
+++ b/app/test/test_barrier.c
@@ -252,7 +252,7 @@  struct lcore_plock_test {
 
 		/* race condition occurred, lock doesn't work properly */
 		if (sum[i] != pt[i].val || 2 * iter != pt[i].iter) {
-			printf("error: local and shared sums don't much\n");
+			printf("error: local and shared sums don't match\n");
 			rc = -1;
 		}
 	}