This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 35af07b2469e9f41769648b2d17b7d2be52ee270 (commit) from e5492930c13b8b17a6333050fd5078c89b305c17 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 35af07b2469e9f41769648b2d17b7d2be52ee270 Author: Bill Fischofer bill.fischofer@linaro.org Date: Wed Aug 10 09:23:54 2016 -0500
test: performance: capture termination failures in final return code
Accumulate return codes from resource cleanup so callers can be aware of termination failures.
Signed-off-by: Bill Fischofer bill.fischofer@linaro.org Reviewed-and-tested-by: Mike Holmes mike.holmes@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/test/common_plat/performance/odp_scheduling.c b/test/common_plat/performance/odp_scheduling.c index 1d1bf01..1de79f7 100644 --- a/test/common_plat/performance/odp_scheduling.c +++ b/test/common_plat/performance/odp_scheduling.c @@ -965,15 +965,15 @@ int main(int argc, char *argv[])
for (j = 0; j < QUEUES_PER_PRIO; j++) { queue = globals->queue[i][j]; - odp_queue_destroy(queue); + ret += odp_queue_destroy(queue); } }
- odp_shm_free(shm); - odp_queue_destroy(plain_queue); - odp_pool_destroy(pool); - odp_term_local(); - odp_term_global(instance); + ret += odp_shm_free(shm); + ret += odp_queue_destroy(plain_queue); + ret += odp_pool_destroy(pool); + ret += odp_term_local(); + ret += odp_term_global(instance);
return ret; }
-----------------------------------------------------------------------
Summary of changes: test/common_plat/performance/odp_scheduling.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
hooks/post-receive