From 2b52ef1cdc12153308c82af4395f76779e1b40ee Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 26 Aug 2010 11:36:31 +0000 Subject: [PATCH] * Test whether the patched no-rpath executable works on i686-linux. --- tests/no-rpath.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/no-rpath.sh b/tests/no-rpath.sh index 85437ef..c253952 100755 --- a/tests/no-rpath.sh +++ b/tests/no-rpath.sh @@ -17,8 +17,6 @@ if ! echo "$newRPath" | grep -q '/foo:/bar'; then exit 1 fi -exitCode=0 - -# !!! disabled running no-rpath for now, since it won't work on 64-bit -# Linux (the interpreter will be 64 bits). -#cd scratch && ./no-rpath +if [ "$(uname -m)" = i686 -a "$(uname -s)" = Linux ]; then + cd scratch && ./no-rpath +fi