From 9e118adeca2a350c9891208f90cc0b04661a6656 Mon Sep 17 00:00:00 2001 From: Seth Howell Date: Mon, 9 Dec 2019 14:43:48 -0700 Subject: [PATCH] test/autorun_post: fix ubsan reporting. Change-Id: I7bfe785b355ec925d28d8c306395733945a7b5d0 Signed-off-by: Seth Howell Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/477366 Tested-by: SPDK CI Jenkins Reviewed-by: Tomasz Zawadzki Reviewed-by: Jim Harris Reviewed-by: Paul Luse Reviewed-by: Karol Latecki --- autorun_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autorun_post.py b/autorun_post.py index 1a8810e3f..9a8ccc516 100755 --- a/autorun_post.py +++ b/autorun_post.py @@ -134,7 +134,7 @@ def aggregateCompletedTests(output_dir, repo_dir): test_completion_table.append([agent_name, "valgrind", asan_enabled, ubsan_enabled]) for line in completions.split('\n'): try: - test_list[line.strip()] = (True, asan_enabled | test_list[line.strip()][1], ubsan_enabled | test_list[line.strip()][1]) + test_list[line.strip()] = (True, asan_enabled | test_list[line.strip()][1], ubsan_enabled | test_list[line.strip()][2]) test_completion_table.append([agent_name, line.strip(), asan_enabled, ubsan_enabled]) try: test_completion_table.remove(["None", line.strip(), False, False])