From 6c7c76e0e4a760d594113b3afe0147a178d9e58e Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Wed, 14 Sep 2022 13:03:06 -0400 Subject: [PATCH] Fix issues with abi-perf-test --- README-maintainer | 2 +- abi-perf-test | 23 +++++++++++++++-------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/README-maintainer b/README-maintainer index e930e38c..545612c4 100644 --- a/README-maintainer +++ b/README-maintainer @@ -353,7 +353,7 @@ RELEASE PREPARATION * Test for performance and binary compatibility: - ./abi-perf-test release- @ + ./abi-perf-test v @ Prefix with SKIP_PERF=1 to skip performance test. Prefix with SKIP_TESTS=1 to skip test suite run. diff --git a/abi-perf-test b/abi-perf-test index b007ba53..8bd017b1 100755 --- a/abi-perf-test +++ b/abi-perf-test @@ -89,6 +89,7 @@ $source/check_abi compare --old-lib $work/old/libqpdf.so.*.* \ --new-lib build/libqpdf/libqpdf.so \ --old-sizes $work/old/sizes --new-sizes $work/new/sizes +test_warn=0 if [ "$SKIP_TESTS" != "1" ]; then # Switch back to the previous release and run tests. There may be # some failures based on functionality change. We are looking for @@ -97,14 +98,7 @@ if [ "$SKIP_TESTS" != "1" ]; then set +e (cd build; ctest --verbose) if [ $? != 0 ]; then - cat <