diff --git a/test/performance/odp_atomic_perf.c b/test/performance/odp_atomic_perf.c index 2537049812..b2f56e6570 100644 --- a/test/performance/odp_atomic_perf.c +++ b/test/performance/odp_atomic_perf.c @@ -1139,6 +1139,9 @@ static int output_summary(test_global_t *global) } } + if (global->common_options.is_export) + test_common_write_term(); + return 0; } diff --git a/test/performance/odp_lock_perf.c b/test/performance/odp_lock_perf.c index 5fdc030e3e..5443263f0c 100644 --- a/test/performance/odp_lock_perf.c +++ b/test/performance/odp_lock_perf.c @@ -319,6 +319,10 @@ static int output_summary(test_global_t *global) } } } + + if (global->common_options.is_export) + test_common_write_term(); + return 0; } diff --git a/test/performance/odp_pool_perf.c b/test/performance/odp_pool_perf.c index 41c5bdd360..2defc1d8a3 100644 --- a/test/performance/odp_pool_perf.c +++ b/test/performance/odp_pool_perf.c @@ -674,6 +674,8 @@ static int output_results(test_global_t *global) test_common_write_term(); return -1; } + + test_common_write_term(); } return 0; diff --git a/test/performance/odp_sched_latency.c b/test/performance/odp_sched_latency.c index 6d6ccfc0e8..5903934c42 100644 --- a/test/performance/odp_sched_latency.c +++ b/test/performance/odp_sched_latency.c @@ -358,6 +358,9 @@ static int output_results(test_globals_t *globals) } } + if (globals->common_options.is_export) + test_common_write_term(); + return 0; } diff --git a/test/performance/odp_sched_perf.c b/test/performance/odp_sched_perf.c index 2c3d44126c..618dfeaf58 100644 --- a/test/performance/odp_sched_perf.c +++ b/test/performance/odp_sched_perf.c @@ -1485,6 +1485,8 @@ static int output_results(test_global_t *global) test_common_write_term(); return -1; } + + test_common_write_term(); } return 0; diff --git a/test/performance/odp_stash_perf.c b/test/performance/odp_stash_perf.c index 60d25d3e67..75ca465e15 100644 --- a/test/performance/odp_stash_perf.c +++ b/test/performance/odp_stash_perf.c @@ -443,6 +443,8 @@ static int output_results(test_global_t *global) test_common_write_term(); return -1; } + + test_common_write_term(); } return 0; diff --git a/test/performance/odp_timer_accuracy.c b/test/performance/odp_timer_accuracy.c index 6fc087a3b2..8e96a0ff76 100644 --- a/test/performance/odp_timer_accuracy.c +++ b/test/performance/odp_timer_accuracy.c @@ -1043,6 +1043,8 @@ static int print_stat(test_global_t *test_global) test_common_write_term(); return -1; } + + test_common_write_term(); } return 0;