Home | History | Annotate | Download | only in tests

Lines Matching refs:gawk

5 # Assumes the following packages are installed: gawk.
88 # Test for presence of gawk version 3.1.3 or newer.
89 (gawk --version) >/dev/null 2>/dev/null \
90 || { echo "Skipping test: gawk not found"; rm -fr $tmpfiles; exit 77; }
91 case `gawk --version 2>&1 | sed -e 's/^[^0-9]*//'` in
93 echo "Skipping test: gawk version too old"; rm -fr $tmpfiles; exit 77;;
124 # Test that gawk wasn't built with --disable-nls.
128 LANGUAGE= LC_ALL=$LOCALE_FR gawk --version | grep logiciel > /dev/null
130 echo "Skipping test: gawk was built without i18n support"
135 LANGUAGE= LC_ALL=$LOCALE_FR_UTF8 gawk --version | grep logiciel > /dev/null
137 echo "Skipping test: gawk was built without i18n support"
158 LANGUAGE= LC_ALL=$LOCALE_FR gawk -v n=2 -f prog.awk > prog.out || exit 1
162 LANGUAGE= LC_ALL=$LOCALE_FR_UTF8 gawk -v n=2 -f prog.awk > prog.out || exit 1