Skip to content

Commit 99c2423

Browse files
bors[bot]Mic92
andauthoredApr 23, 2023
Merge #491
491: tests: use proper exit code to mark tests as skipped r=Mic92 a=Mic92 Co-authored-by: Jörg Thalheim <[email protected]>
2 parents 98591a5 + e8909d1 commit 99c2423

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎tests/set-rpath-library.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SCRATCH=scratch/$(basename "$0" .sh)
33

44
if test "$(uname)" = FreeBSD; then
55
echo "skipping on FreeBSD"
6-
exit 0
6+
exit 77
77
fi
88

99
rm -rf "${SCRATCH}"

‎tests/set-rpath-rel-map.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OBJCOPY=${OBJCOPY:-objcopy}
66

77
if ! $OBJDUMP -p main | grep -q MIPS_RLD_MAP_REL; then
88
echo "No MIPS_RLD_MAP_REL dynamic section entry, skipping"
9-
exit 0
9+
exit 77
1010
fi
1111

1212
rm -rf "${SCRATCH}"

‎version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.17.2
1+
0.18.0

0 commit comments

Comments
 (0)
Please sign in to comment.