branch: externals/dash commit c40fa4468621304c55325a61f7a11b37d28608f0 Author: Fredrik Bergroth <fbergr...@gmail.com> Commit: Fredrik Bergroth <fbergr...@gmail.com>
Exclude byte compilation test on emacs23 --- run-tests.sh | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/run-tests.sh b/run-tests.sh index 50b45bb..ce9a011 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -4,4 +4,11 @@ if [ -z "$EMACS" ] ; then EMACS="emacs" fi -$EMACS -batch -l dev/ert.el -l dash.el -l dash-functional.el -l dev/examples-to-tests.el -l dev/examples.el -l dev/test-byte-compile.el -f ert-run-tests-batch-and-exit +$EMACS -batch \ + -l dev/ert.el \ + -l dash.el \ + -l dash-functional.el \ + -l dev/examples-to-tests.el \ + -l dev/examples.el \ + $([[ $EMACS != "emacs23" ]] && echo -l dev/test-byte-compile.el) \ + -f ert-run-tests-batch-and-exit