+2008-10-27 Simon Josefsson <simon@josefsson.org>
+
+ * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
+ TESTS_ENVIRONMENT, for shell scripts that needs to call built
+ programs.
+ * tests/test-argp-2.sh: Use $EXEEXT when needed.
+
2008-10-27 Simon Josefsson <simon@josefsson.org>
* lib/sys_stat.in.h (lstat): Fix declaration for mingw.
# "AM_GNU_GETTEXT used but SUBDIRS not defined"
echo "SUBDIRS ="
echo "TESTS ="
- echo "TESTS_ENVIRONMENT ="
+ echo "TESTS_ENVIRONMENT = EXEEXT=\$(EXEEXT)"
echo "noinst_PROGRAMS ="
if ! $for_test; then
echo "check_PROGRAMS ="
[--version] ARGS...
EOT
-./test-argp --usage | func_compare || ERR=1
+./test-argp$EXEEXT --usage | func_compare || ERR=1
####
# Test working usage-indent format
[--limerick] [--poem] [--help] [--usage] [--version] ARGS...
EOT
-ARGP_HELP_FMT='usage-indent=0' ./test-argp --usage | func_compare || ERR=1
+ARGP_HELP_FMT='usage-indent=0' ./test-argp$EXEEXT --usage | func_compare || ERR=1
####
# Test --help output
Report bugs to <>.
EOT
-./test-argp --help | func_compare || ERR=1
+./test-argp$EXEEXT --help | func_compare || ERR=1
####
# Test ambiguous option handling
-./test-argp --optio 2>/dev/null && ERR=1
+./test-argp$EXEEXT --optio 2>/dev/null && ERR=1
####
# Run built-in tests
-./test-argp || ERR=1
+./test-argp$EXEEXT || ERR=1
rm $TMP