All checks were successful
Tests / Clang total: 3339, passed: 3339
Clang |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Tests / 64 bit versions total: 3339, passed: 3339
Tests / Debug total: 3337, passed: 3337
Tests / SIMD fallback total: 3339, passed: 3339
Tests / Release [gcc] total: 3339, passed: 3339
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Tests / Release [gcc,aarch64] total: 2482, passed: 2482
Tests / Coverage total: 2511, passed: 2511
Code Coverage #### Project Overview
No changes detected, that affect the code coverage.
* Line Coverage: 99.09% (1846/1863)
* Branch Coverage: 67.65% (1447/2139)
* Complexity Density: 0.00
* Lines of Code: 1863
#### Quality Gates Summary
Output truncated.
weaselab/conflict-set/pipeline/head This commit looks good
16 lines
455 B
Bash
Executable File
16 lines
455 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
# ./test_symbols.sh <library> <expected exported symbols file> <allowed imported symbols file>
|
|
|
|
diff -u <(sort < "$2" | grep -v ___asan_globals_registered) <(nm "$1" | grep " T " | cut -f3 -d " " | sort)
|
|
ec=0
|
|
for symbol in $(nm "$1" | grep " U " | sed 's/ U //') ; do
|
|
if ! grep --fixed-strings "$symbol" "$3" > /dev/null ; then
|
|
echo "Imported symbol $symbol not present in $3"
|
|
ec=1
|
|
fi
|
|
done
|
|
|
|
exit $ec |