* test/Makefile.in (emacs): Use the C locale
This fixes spurious test failures in my environment for `diff-mode-test-font-lock-syntax-one-line` (where my `diff` otherwise returns "No newline at end of file" in French) and for various tests in `emacs-module-tests` because errors signal "Abandon" instead of "Abort".
This commit is contained in:
parent
ac102bb966
commit
91f9d6788e
1 changed files with 3 additions and 2 deletions
|
@ -122,8 +122,9 @@ MODULES_EMACSOPT :=
|
|||
endif
|
||||
|
||||
# The actual Emacs command run in the targets below.
|
||||
# Prevent any setting of EMACSLOADPATH in user environment causing problems.
|
||||
emacs = EMACSLOADPATH= \
|
||||
# Prevent any setting of EMACSLOADPATH in user environment causing problems,
|
||||
# and prevent locals to influence the text of the errors we expect to receive.
|
||||
emacs = LANG=C EMACSLOADPATH= \
|
||||
EMACS_TEST_DIRECTORY=$(abspath $(srcdir)) \
|
||||
$(GDB) "$(EMACS)" $(MODULES_EMACSOPT) $(EMACSOPT)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue