Skip to content

Commit

Permalink
Remove debugging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan committed Mar 28, 2024
1 parent 73d819d commit 9794f34
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions ci/cloudbuild/builds/check-api.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function check_abi() {
# These are special and share their header location.
public_headers="${prefix}/include/google/cloud"
elif [[ "${shortlib}" == "storage_grpc" ]]; then
# `storage_grpc`` uses the same header location as `storage`
# `storage_grpc` uses the same header location as `storage`
public_headers="${prefix}/include/google/cloud/storage"
elif [[ "${shortlib}" =~ "compute" ]]; then
# Compute libs are also special as their headers are in subdirectories.
Expand Down Expand Up @@ -104,12 +104,7 @@ function check_abi() {
-search-debuginfo /usr
)
abi-dumper "${dump_options[@]}" >/dev/null 2>&1 |
grep -v "ERROR: missed type id" >cmake-out/${library}.dump.log
if [[ $? -ne 0 ]]; then
echo "DEBUG DEBUG ERROR in abi-dump"
cat cmake-out/${library}.dump.log
echo "DEBUG DEBUG ERROR in abi-dump"
fi
grep -v "ERROR: missed type id" || true

local project_dir="${project_root}/ci/abi-dumps"
local expected_dump_file="${library}.expected.abi.dump"
Expand Down

0 comments on commit 9794f34

Please sign in to comment.