Use POSIX redirection.

* test/automated/Makefile.in (WRITE_LOG): Use POSIX redirection.
This commit is contained in:
Wolfgang Jenkner 2015-01-15 19:56:57 +01:00
parent d0b8d4bb32
commit b577fe28c7
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2015-01-15 Wolfgang Jenkner <wjenkner@inode.at>
* automated/Makefile.in (WRITE_LOG): Use POSIX redirection.
2015-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
* automated/eieio-test-methodinvoke.el (eieio-test-method-store): Add

View file

@ -64,7 +64,7 @@ all: check
## Ignore any test errors so we can continue to test other files.
## But compilation errors are always fatal.
WRITE_LOG = >& $@ || { stat=ERROR; cat $@; }; echo $$stat: $@
WRITE_LOG = > $@ 2>&1 || { stat=ERROR; cat $@; }; echo $$stat: $@
## I'd prefer to use -emacs -f ert-run-tests-batch-and-exit rather
## than || true, since the former makes problems more obvious.