summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/cl-preloaded-tests.el
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2018-01-07 14:14:38 +0100
committerPhilipp Stephani <phst@google.com>2018-01-07 14:14:38 +0100
commit610dad1102cba5fa6111050d30c734b51bcdb77d (patch)
treee017da7f090e2125d21dbc4d5600a444765f5277 /test/lisp/emacs-lisp/cl-preloaded-tests.el
parent6735df4443fe0aa60862a95c38746edf2b053862 (diff)
downloademacs-610dad1102cba5fa6111050d30c734b51bcdb77d.tar.gz
emacs-610dad1102cba5fa6111050d30c734b51bcdb77d.tar.bz2
emacs-610dad1102cba5fa6111050d30c734b51bcdb77d.zip
Revert "Prevent name clashes between CL structures and builtin types"
This reverts commit 151496a4b96430924bc148f85b9c8471d1e132b1. That commit breaks bootstrap builds due to a cyclic dependency.
Diffstat (limited to 'test/lisp/emacs-lisp/cl-preloaded-tests.el')
-rw-r--r--test/lisp/emacs-lisp/cl-preloaded-tests.el33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/lisp/emacs-lisp/cl-preloaded-tests.el b/test/lisp/emacs-lisp/cl-preloaded-tests.el
deleted file mode 100644
index 008a6e629f5..00000000000
--- a/test/lisp/emacs-lisp/cl-preloaded-tests.el
+++ /dev/null
@@ -1,33 +0,0 @@
-;;; cl-preloaded-tests.el --- unit tests for cl-preloaded.el -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017 Free Software Foundation, Inc.
-;; Author: Philipp Stephani <phst@google.com>
-
-;; This file is part of GNU Emacs.
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Unit tests for lisp/emacs-lisp/cl-preloaded.el.
-
-;;; Code:
-
-(ert-deftest cl-struct-define/builtin-type ()
- (should-error
- (cl-struct-define 'hash-table nil nil 'record nil nil
- 'cl-preloaded-tests-tag 'cl-preloaded-tests nil)
- :type 'wrong-type-argument))
-
-;;; cl-preloaded-tests.el ends here