diff options
| author | Wolfgang Jenkner | 2015-01-15 19:56:57 +0100 |
|---|---|---|
| committer | Wolfgang Jenkner | 2015-01-15 23:53:59 +0100 |
| commit | b577fe28c73cacfd1e81dca5ebf8cc7b0830d957 (patch) | |
| tree | e30e5174f783c11fb1b920776daf75d1d47e1c9a | |
| parent | d0b8d4bb328d33d245a10d546bec5ef3e3c05c9d (diff) | |
| download | emacs-b577fe28c73cacfd1e81dca5ebf8cc7b0830d957.tar.gz emacs-b577fe28c73cacfd1e81dca5ebf8cc7b0830d957.zip | |
Use POSIX redirection.
* test/automated/Makefile.in (WRITE_LOG): Use POSIX redirection.
| -rw-r--r-- | test/ChangeLog | 4 | ||||
| -rw-r--r-- | test/automated/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index a33ec8793f4..95d3e544aab 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2015-01-15 Wolfgang Jenkner <wjenkner@inode.at> | ||
| 2 | |||
| 3 | * automated/Makefile.in (WRITE_LOG): Use POSIX redirection. | ||
| 4 | |||
| 1 | 2015-01-15 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2015-01-15 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * automated/eieio-test-methodinvoke.el (eieio-test-method-store): Add | 7 | * automated/eieio-test-methodinvoke.el (eieio-test-method-store): Add |
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in index ed757817ae0..7243e8af14a 100644 --- a/test/automated/Makefile.in +++ b/test/automated/Makefile.in | |||
| @@ -64,7 +64,7 @@ all: check | |||
| 64 | 64 | ||
| 65 | ## Ignore any test errors so we can continue to test other files. | 65 | ## Ignore any test errors so we can continue to test other files. |
| 66 | ## But compilation errors are always fatal. | 66 | ## But compilation errors are always fatal. |
| 67 | WRITE_LOG = >& $@ || { stat=ERROR; cat $@; }; echo $$stat: $@ | 67 | WRITE_LOG = > $@ 2>&1 || { stat=ERROR; cat $@; }; echo $$stat: $@ |
| 68 | 68 | ||
| 69 | ## I'd prefer to use -emacs -f ert-run-tests-batch-and-exit rather | 69 | ## I'd prefer to use -emacs -f ert-run-tests-batch-and-exit rather |
| 70 | ## than || true, since the former makes problems more obvious. | 70 | ## than || true, since the former makes problems more obvious. |