diff options
| author | Glenn Morris | 2014-06-28 10:18:05 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-06-28 10:18:05 -0700 |
| commit | 14202f05ac84869af2d839ba022ea983b7642770 (patch) | |
| tree | e98fcae301df9b9792fc58c1b61823d5a5f0d108 | |
| parent | 8eb6542f53f7fe9b682d11b15dd0346722db0ce3 (diff) | |
| download | emacs-14202f05ac84869af2d839ba022ea983b7642770.tar.gz emacs-14202f05ac84869af2d839ba022ea983b7642770.zip | |
* test/automated/Makefile.in (GDB): New variable.
(emacs): Use $GDB.
Fixes: debbugs:15991
| -rw-r--r-- | test/ChangeLog | 3 | ||||
| -rw-r--r-- | test/automated/Makefile.in | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index fca8c2bb1d7..c9bfc54bd8d 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2014-06-28 Glenn Morris <rgm@gnu.org> | 1 | 2014-06-28 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * automated/Makefile.in (GDB): New variable. | ||
| 4 | (emacs): Use $GDB. (Bug#15991) | ||
| 5 | |||
| 3 | * automated/Makefile.in (WRITE_LOG): New variable. | 6 | * automated/Makefile.in (WRITE_LOG): New variable. |
| 4 | (%.log): Use WRITE_LOG. | 7 | (%.log): Use WRITE_LOG. |
| 5 | (test_template): Disable logging. | 8 | (test_template): Disable logging. |
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in index b769ead7bc9..e0eaffa4c2c 100644 --- a/test/automated/Makefile.in +++ b/test/automated/Makefile.in | |||
| @@ -47,9 +47,12 @@ EMACSOPT = -batch --no-site-file --no-site-lisp -L "$(SEPCHAR)$(srcdir)" | |||
| 47 | # Prevent any settings in the user environment causing problems. | 47 | # Prevent any settings in the user environment causing problems. |
| 48 | unexport EMACSDATA EMACSDOC EMACSPATH GREP_OPTIONS | 48 | unexport EMACSDATA EMACSDOC EMACSPATH GREP_OPTIONS |
| 49 | 49 | ||
| 50 | ## To run tests under a debugger, set this to eg: "gdb --args". | ||
| 51 | GDB = | ||
| 52 | |||
| 50 | # The actual Emacs command run in the targets below. | 53 | # The actual Emacs command run in the targets below. |
| 51 | # Prevent any setting of EMACSLOADPATH in user environment causing problems. | 54 | # Prevent any setting of EMACSLOADPATH in user environment causing problems. |
| 52 | emacs = EMACSLOADPATH= LC_ALL=C EMACS_TEST_DIRECTORY=$(srcdir) "$(EMACS)" $(EMACSOPT) | 55 | emacs = EMACSLOADPATH= LC_ALL=C EMACS_TEST_DIRECTORY=$(srcdir) $(GDB) "$(EMACS)" $(EMACSOPT) |
| 53 | 56 | ||
| 54 | .PHONY: all check | 57 | .PHONY: all check |
| 55 | 58 | ||