Home | History | Annotate | Download | only in tests

Lines Matching refs:clisp

3 # Test of gettext facilities in the CLISP language.
5 # Assumes the following packages are installed: clisp.
84 # Test for presence of clisp version 2.28 or newer with gettext support.
85 # Use clisp for the comparison of the version numbers; neither 'expr' nor 'bc'
87 (clisp --version) >/dev/null 2>/dev/null \
88 || { echo "Skipping test: clisp not found"; rm -fr $tmpfiles; exit 77; }
89 version=`clisp --version | sed -n -e 1p | sed -e 's/^[^0-9]*//'`
92 echo "Skipping test: clisp version too old"; rm -fr $tmpfiles; exit 77;;
95 clisp -norc -x "(sys::exit #+GETTEXT (not (>= $version 2.28)) #-GETTEXT t)" \
97 || { echo "Skipping test: clisp was built without gettext support"
145 CLISP_LANGUAGE= LANGUAGE= LC_ALL=$LOCALE_FR clisp prog.lisp 2 > prog.out || exit 1
149 CLISP_LANGUAGE= LANGUAGE= LC_ALL=$LOCALE_FR_UTF8 clisp prog.lisp 2 > prog.out || exit 1