From 29044c8d522c15fa4ed62a6e927154fd97118208 Mon Sep 17 00:00:00 2001 From: Seth Howell Date: Mon, 2 Mar 2020 13:50:29 -0700 Subject: [PATCH] test/make: don't print missing symbols in libs. We don't fail the test based on missing symbols so printing out the information about them during tests is not super useful. Restricting the output to what caused the test to fail will allow for simpler debugging. Change-Id: I7b251dfe39c940074d7c8d887941adb635fd3965 Signed-off-by: Seth Howell Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1094 Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Darek Stojaczyk Reviewed-by: Ben Walker --- test/make/check_so_deps.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/make/check_so_deps.sh b/test/make/check_so_deps.sh index d64df8c5f..daff71fc7 100755 --- a/test/make/check_so_deps.sh +++ b/test/make/check_so_deps.sh @@ -153,10 +153,6 @@ function confirm_deps() { echo "The makefile lists: '${lib_make_deps[*]}'" echo "readelf outputs : '${dep_names[*]}'" echo "---------------------------------------------------------------------" - elif [ ${#missing_syms[@]} -ne 0 ]; then - echo "There are still undefined symbols in the library $lib_shortname" - printf "%s\n" "${missing_syms[@]}" - echo "---------------------------------------------------------------------" fi }