From e8a7608a6b7eec049edb0aa08d3674b639fe89fc Mon Sep 17 00:00:00 2001 From: Hajime Tazaki Date: Tue, 9 Jan 2018 14:30:42 +0900 Subject: [PATCH] lkl: fix valgrind tests remained issues The 30mins timeout isn't sometime enough so increase to 90 mins. The junit xml collection process was also broken on valgrind tests. This fixes those issues. Signed-off-by: Hajime Tazaki --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4c3745389685cc..7ee3f6951f730c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,9 +74,10 @@ do_steps: &do_steps if [[ -n "$VALGRIND" ]]; then cd ./tools/lkl/ && find ./ -type f -name "valgrind-*.xml" \ -exec ./tests/valgrind2xunit.py {} \; + cd ../.. fi find ./tools/lkl/ -type f -name "*.xml" -exec mv {} ~/junit/ \; - no_output_timeout: "30m" + no_output_timeout: "90m" - store_test_results: path: ~/junit - store_artifacts: