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 94c4882 commit b534681Copy full SHA for b534681
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 -m)" != amd64 || test "$(uname)" != Linux; then
+ echo "skipping test: amd64 Linux required"
11
exit 77
12
fi
13
14
-if test "$(uname -m)" != amd64 || test "$(uname)" != Linux; then
15
- echo "skipping test: amd64 Linux required"
+if ! gzip --version >/dev/null; then
+ echo "skipping test: gzip not found"
16
17
18
0 commit comments