We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 527926d commit 4442b76Copy full SHA for 4442b76
tests/short-first-segment.sh
@@ -6,13 +6,13 @@ READELF=${READELF:-readelf}
6
7
EXEC_NAME="short-first-segment"
8
9
-if ! gzip --version >/dev/null; then
10
- echo "skipping test: gzip not found"
+if test "$(uname -i)" != x86_64 || test "$(uname)" != Linux; then
+ echo "skipping test: supported only on x86_64 Linux"
11
exit 77
12
fi
13
14
-if test "$(uname -i)" != x86_64 || test "$(uname)" != Linux; then
15
- echo "skipping test: supported only on x86_64 Linux"
+if ! gzip --version >/dev/null; then
+ echo "skipping test: gzip not found"
16
17
18
0 commit comments