Skip to content

Commit 2b52ef1

Browse files
committed
* Test whether the patched no-rpath executable works on i686-linux.
1 parent f78ceb5 commit 2b52ef1

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/no-rpath.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ if ! echo "$newRPath" | grep -q '/foo:/bar'; then
1717
exit 1
1818
fi
1919

20-
exitCode=0
21-
22-
# !!! disabled running no-rpath for now, since it won't work on 64-bit
23-
# Linux (the interpreter will be 64 bits).
24-
#cd scratch && ./no-rpath
20+
if [ "$(uname -m)" = i686 -a "$(uname -s)" = Linux ]; then
21+
cd scratch && ./no-rpath
22+
fi

0 commit comments

Comments
 (0)