diff options
| -rw-r--r-- | test/lisp/progmodes/cc-mode-tests.el (renamed from test/lisp/progmodes/cc-mode.el) | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/lisp/progmodes/cc-mode.el b/test/lisp/progmodes/cc-mode-tests.el index 6cd9fa4bad5..62e0a738fbd 100644 --- a/test/lisp/progmodes/cc-mode.el +++ b/test/lisp/progmodes/cc-mode-tests.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; cc-mode-tests.el --- Test suite for cc-mode. -*- lexical-binning: t -*- | 1 | ;;; cc-mode-tests.el --- Test suite for cc-mode. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -21,6 +21,11 @@ | |||
| 21 | ;; You should have received a copy of the GNU General Public License | 21 | ;; You should have received a copy of the GNU General Public License |
| 22 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | 22 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
| 23 | 23 | ||
| 24 | |||
| 25 | ;;; Commentary: | ||
| 26 | |||
| 27 | ;; Unit tests for cc-mode.el. | ||
| 28 | |||
| 24 | ;;; Code: | 29 | ;;; Code: |
| 25 | 30 | ||
| 26 | (require 'ert) | 31 | (require 'ert) |
| @@ -63,3 +68,5 @@ | |||
| 63 | '("struct \t Blah_42 \t {" | 68 | '("struct \t Blah_42 \t {" |
| 64 | "struct template {" | 69 | "struct template {" |
| 65 | "#include <string.h>"))))) | 70 | "#include <string.h>"))))) |
| 71 | |||
| 72 | ;;; cc-mode-tests.el ends here | ||