Skip to content

Commit

Permalink
script to verify 'struct bio_st' matching
Browse files Browse the repository at this point in the history
  • Loading branch information
mirostauder committed Nov 9, 2022
1 parent 502d508 commit b81d865
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions deps/libssl/verify-bio_st-match.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash

# make sure we have correct cwd
pushd $(dirname $0) &>/dev/null
trap 'popd &>/dev/null' EXIT

echo "extracting 'struct bio_st' from './deps/libssl/openssl/crypto/bio/bio_local.h'"
DEPBIOST=$(cd ../../; cat ./deps/libssl/openssl/crypto/bio/bio_local.h | sed -n '/^struct bio_st {/,/}/p')

echo "extracting 'struct bio_st' from './lib/mysql_data_stream.cpp'"
LIBBIOST=$(cd ../../; cat ./lib/mysql_data_stream.cpp | sed '/^\/\*/,/*\//d' | sed -n '/^struct bio_st {/,/}/p')

echo -n "Comparing ... "
if [[ "$LIBBIOST" == "$DEPBIOST" ]]; then
echo "PASS - bio_st is a match!";
else
echo "FAIL - bio_st does not match!";
exit 1
fi

0 comments on commit b81d865

Please sign in to comment.