diff options
| author | Glenn Morris | 2014-06-25 23:02:52 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-06-25 23:02:52 -0700 |
| commit | 5bca8dfb9b3d8b4cb0ada8478708f9f9f87cc16b (patch) | |
| tree | ad6e9ecec1ded9d5174ad3f3fec1b1535d563eff | |
| parent | 5a8816f3f23439bbf46dd4b827134c7608666336 (diff) | |
| download | emacs-5bca8dfb9b3d8b4cb0ada8478708f9f9f87cc16b.tar.gz emacs-5bca8dfb9b3d8b4cb0ada8478708f9f9f87cc16b.zip | |
Disable byte-compilation in two test/automated files
* test/automated/eieio-tests.el (no-byte-compile): Set it.
* test/automated/ert-tests.el (no-byte-compile): Set it.
Fixes: debbugs:17851 debbugs:17852
| -rw-r--r-- | test/ChangeLog | 4 | ||||
| -rw-r--r-- | test/automated/eieio-tests.el | 7 | ||||
| -rw-r--r-- | test/automated/ert-tests.el | 4 |
3 files changed, 13 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index e3c748c8deb..01cd55d99df 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2014-06-26 Glenn Morris <rgm@gnu.org> | 1 | 2014-06-26 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * automated/ert-tests.el (no-byte-compile): Set it. (Bug#17851) | ||
| 4 | |||
| 5 | * automated/eieio-tests.el (no-byte-compile): Set it. (Bug#17852) | ||
| 6 | |||
| 3 | * automated/Makefile.in: Simplify and parallelize. (Bug#15991) | 7 | * automated/Makefile.in: Simplify and parallelize. (Bug#15991) |
| 4 | (XARGS_LIMIT, BYTE_COMPILE_EXTRA_FLAGS) | 8 | (XARGS_LIMIT, BYTE_COMPILE_EXTRA_FLAGS) |
| 5 | (setwins, compile-targets, compile-main, compile-clean): Remove. | 9 | (setwins, compile-targets, compile-main, compile-clean): Remove. |
diff --git a/test/automated/eieio-tests.el b/test/automated/eieio-tests.el index 77ea75ddce2..9a8886231d1 100644 --- a/test/automated/eieio-tests.el +++ b/test/automated/eieio-tests.el | |||
| @@ -1,7 +1,6 @@ | |||
| 1 | ;;; eieio-tests.el -- eieio tests routines | 1 | ;;; eieio-tests.el -- eieio tests routines |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999-2003, 2005-2010, 2012-2014 Free Software | 3 | ;; Copyright (C) 1999-2003, 2005-2010, 2012-2014 Free Software Foundation, Inc. |
| 4 | ;; Foundation, Inc. | ||
| 5 | 4 | ||
| 6 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 7 | 6 | ||
| @@ -888,3 +887,7 @@ Subclasses to override slot attributes.") | |||
| 888 | (provide 'eieio-tests) | 887 | (provide 'eieio-tests) |
| 889 | 888 | ||
| 890 | ;;; eieio-tests.el ends here | 889 | ;;; eieio-tests.el ends here |
| 890 | |||
| 891 | ;; Local Variables: | ||
| 892 | ;; no-byte-compile: t | ||
| 893 | ;; End: | ||
diff --git a/test/automated/ert-tests.el b/test/automated/ert-tests.el index 53cbd1f1f88..45440e060c2 100644 --- a/test/automated/ert-tests.el +++ b/test/automated/ert-tests.el | |||
| @@ -831,3 +831,7 @@ This macro is used to test if macroexpansion in `should' works." | |||
| 831 | (provide 'ert-tests) | 831 | (provide 'ert-tests) |
| 832 | 832 | ||
| 833 | ;;; ert-tests.el ends here | 833 | ;;; ert-tests.el ends here |
| 834 | |||
| 835 | ;; Local Variables: | ||
| 836 | ;; no-byte-compile: t | ||
| 837 | ;; End: | ||