summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-04-23 11:31:12 +0000
committerGitHub <noreply@github.com>2023-04-23 11:31:12 +0000
commit99c24238981b7b1084313aca8f5c493bb46f302c (patch)
treec692cf948726c08214721719740b42e73ebda16c
parent98591a5ae59b096826c1a8bedf733c955662d0c8 (diff)
parente8909d11da3b61dce6f915a6e8e73822f12a8e12 (diff)
downloadpatchelf-99c24238981b7b1084313aca8f5c493bb46f302c.tar.gz
Merge #4910.18.0
491: tests: use proper exit code to mark tests as skipped r=Mic92 a=Mic92 Co-authored-by: Jörg Thalheim <joerg@thalheim.io>
-rwxr-xr-xtests/set-rpath-library.sh2
-rwxr-xr-xtests/set-rpath-rel-map.sh2
-rw-r--r--version2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/set-rpath-library.sh b/tests/set-rpath-library.sh
index 6ae1715..91218cd 100755
--- a/tests/set-rpath-library.sh
+++ b/tests/set-rpath-library.sh
@@ -3,7 +3,7 @@ SCRATCH=scratch/$(basename "$0" .sh)
if test "$(uname)" = FreeBSD; then
echo "skipping on FreeBSD"
- exit 0
+ exit 77
fi
rm -rf "${SCRATCH}"
diff --git a/tests/set-rpath-rel-map.sh b/tests/set-rpath-rel-map.sh
index 2f890f2..97cf69a 100755
--- a/tests/set-rpath-rel-map.sh
+++ b/tests/set-rpath-rel-map.sh
@@ -6,7 +6,7 @@ OBJCOPY=${OBJCOPY:-objcopy}
if ! $OBJDUMP -p main | grep -q MIPS_RLD_MAP_REL; then
echo "No MIPS_RLD_MAP_REL dynamic section entry, skipping"
- exit 0
+ exit 77
fi
rm -rf "${SCRATCH}"
diff --git a/version b/version
index c3d16c1..6633391 100644
--- a/version
+++ b/version
@@ -1 +1 @@
-0.17.2
+0.18.0