test/autorun_post: fix ubsan reporting.

Change-Id: I7bfe785b355ec925d28d8c306395733945a7b5d0
Signed-off-by: Seth Howell <seth.howell@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/477366
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Paul Luse <paul.e.luse@intel.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
This commit is contained in:
Seth Howell 2019-12-09 14:43:48 -07:00 committed by Tomasz Zawadzki
parent a571eb03e9
commit 9e118adeca

View File

@ -134,7 +134,7 @@ def aggregateCompletedTests(output_dir, repo_dir):
test_completion_table.append([agent_name, "valgrind", asan_enabled, ubsan_enabled]) test_completion_table.append([agent_name, "valgrind", asan_enabled, ubsan_enabled])
for line in completions.split('\n'): for line in completions.split('\n'):
try: 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]) test_completion_table.append([agent_name, line.strip(), asan_enabled, ubsan_enabled])
try: try:
test_completion_table.remove(["None", line.strip(), False, False]) test_completion_table.remove(["None", line.strip(), False, False])