diff mbox series

[v6,2/4] performance: destroy out queue on exit

Message ID 1513393275-29928-3-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [v6,1/4] performance: add AES tests to crypto performance tests | expand

Commit Message

Github ODP bot Dec. 16, 2017, 3:01 a.m. UTC
From: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>


Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 342 (lumag:openssl-ctx)
 ** https://github.com/Linaro/odp/pull/342
 ** Patch: https://github.com/Linaro/odp/pull/342.patch
 ** Base sha: 6b5cdc77eb9759a2349b10372a964648559bc92c
 ** Merge commit sha: 4efcbed0936263184a699b1bedcf9e0bf15c5f73
 **/
 test/performance/odp_crypto.c | 5 +++++
 1 file changed, 5 insertions(+)
diff mbox series

Patch

diff --git a/test/performance/odp_crypto.c b/test/performance/odp_crypto.c
index 423be0956..b2625b3ca 100644
--- a/test/performance/odp_crypto.c
+++ b/test/performance/odp_crypto.c
@@ -904,6 +904,11 @@  int main(int argc, char *argv[])
 		}
 	}
 
+	if (out_queue != ODP_QUEUE_INVALID && odp_queue_destroy(out_queue)) {
+		app_err("Error: queue destroy\n");
+		exit(EXIT_FAILURE);
+	}
+
 	if (odp_pool_destroy(pool)) {
 		app_err("Error: pool destroy\n");
 		exit(EXIT_FAILURE);