From: Bruno Haible Date: Sat, 18 Feb 2012 22:10:12 +0000 (+0100) Subject: Make the lang-pascal test work on x86_64 platforms. X-Git-Tag: v0.18.2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad45b67906ee0fbfee8634d80ec2efce6a7424e9;p=thirdparty%2Fgettext.git Make the lang-pascal test work on x86_64 platforms. --- diff --git a/gettext-tools/tests/ChangeLog b/gettext-tools/tests/ChangeLog index 56650b210..6815ad35b 100644 --- a/gettext-tools/tests/ChangeLog +++ b/gettext-tools/tests/ChangeLog @@ -1,3 +1,8 @@ +2012-02-18 Bruno Haible + + Make the lang-pascal test work on x86_64 platforms. + * lang-pascal: Try also the ppcx64 program. + 2012-01-26 Bruno Haible Modernize quoting. diff --git a/gettext-tools/tests/lang-pascal b/gettext-tools/tests/lang-pascal index 418767dc3..45896bedb 100755 --- a/gettext-tools/tests/lang-pascal +++ b/gettext-tools/tests/lang-pascal @@ -30,8 +30,10 @@ end. EOF tmpfiles="$tmpfiles prog.o prog.rst prog" -(ppc386 prog.pp) >/dev/null 2>&1 || { - echo "Skipping test: ppc386 compiler not found" +(ppc386 prog.pp) >/dev/null 2>&1 || +(ppcx64 prog.pp) >/dev/null 2>&1 || +{ + echo "Skipping test: Pascal compiler ppc386 or ppcx64 not found" rm -fr $tmpfiles; exit 77 }