[elephant-cvs] CVS elephant/tests
rread
rread at common-lisp.net
Sat Feb 4 22:25:10 UTC 2006
Update of /project/elephant/cvsroot/elephant/tests
In directory common-lisp:/tmp/cvs-serv456/tests
Modified Files:
elephant-tests.lisp mop-tests.lisp testcollections.lisp
testmigration.lisp testserializer.lisp testsleepycat.lisp
testsorter.lisp
Log Message:
Mostly changing to LLGPL
--- /project/elephant/cvsroot/elephant/tests/elephant-tests.lisp 2006/01/29 01:08:32 1.8
+++ /project/elephant/cvsroot/elephant/tests/elephant-tests.lisp 2006/02/04 22:25:10 1.9
@@ -12,33 +12,9 @@
;;; Copyright (c) 2004 by Andrew Blumberg and Ben Lee
;;; <ablumberg at common-lisp.net> <blee at common-lisp.net>
;;;
-;;; This program is released under the following license
-;;; ("GPL"). For differenct licensing terms, contact the
-;;; copyright holders.
-;;;
-;;; 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 2 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.
-;;;
-;;; The GNU General Public License can be found in the file
-;;; LICENSE which should have been distributed with this
-;;; code. It can also be found at
-;;;
-;;; http://www.opensource.org/licenses/gpl-license.php
-;;;
-;;; You should have received a copy of the GNU General
-;;; Public License along with this program; if not, write
-;;; to the Free Software Foundation, Inc., 59 Temple Place,
-;;; Suite 330, Boston, MA 02111-1307 USA
-;;;
+;;; Elephant users are granted the rights to distribute and use this software
+;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
(defpackage elephant-tests
(:nicknames ele-tests :ele-tests)
--- /project/elephant/cvsroot/elephant/tests/mop-tests.lisp 2005/11/23 17:51:59 1.8
+++ /project/elephant/cvsroot/elephant/tests/mop-tests.lisp 2006/02/04 22:25:10 1.9
@@ -1,3 +1,16 @@
+;;; mop-tests.lisp
+;;;
+;;; part of
+;;;
+;;; Elephant: an object-oriented database for Common Lisp
+;;;
+;;; Copyright (c) 2004 by Andrew Blumberg and Ben Lee
+;;; <ablumberg at common-lisp.net> <blee at common-lisp.net>
+;;;
+;;; Elephant users are granted the rights to distribute and use this software
+;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+
(in-package :ele-tests)
(deftest non-transient-class-slot-1
--- /project/elephant/cvsroot/elephant/tests/testcollections.lisp 2006/02/04 20:34:02 1.8
+++ /project/elephant/cvsroot/elephant/tests/testcollections.lisp 2006/02/04 22:25:10 1.9
@@ -1,3 +1,16 @@
+;;; testcollections.lisp
+;;;
+;;; part of
+;;;
+;;; Elephant: an object-oriented database for Common Lisp
+;;;
+;;; Copyright (c) 2004 by Andrew Blumberg and Ben Lee
+;;; <ablumberg at common-lisp.net> <blee at common-lisp.net>
+;;;
+;;; Elephant users are granted the rights to distribute and use this software
+;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+;;;
(in-package :ele-tests)
@@ -717,16 +730,16 @@
;; (deftest class-change-deletion
-;; (progn
-;; (defclass blob-tbc ()
-;; ((slot1 :accessor slot1 :initarg :slot1)
-;; (slot2 :accessor slot2 :initarg :slot2)))
-;; (add-to-root "blob" (make-instance 'blob-tbc))
-;; (defclass blob-tbc ()
-;; ((slot1 :accessor slot1 :initarg :slot1)
-;; (slot3 :accessor slot3 :initarg :slot3)))
-;; (remove-from-root "blob")
-;; (get-from-root "blob")
-;; )
-;; nil nil)
+;; (progn
+;; (defclass blob-tbc ()
+;; ((slot1 :accessor slot1 :initarg :slot1)
+;; (slot2 :accessor slot2 :initarg :slot2)))
+;; (add-to-root "blob" (make-instance 'blob-tbc))
+;; (defclass blob-tbc ()
+;; ((slot1 :accessor slot1 :initarg :slot1)
+;; (slot3 :accessor slot3 :initarg :slot3)))
+;; (remove-from-root "blob")
+;; (get-from-root "blob")
+;; )
+;; nil nil)
--- /project/elephant/cvsroot/elephant/tests/testmigration.lisp 2006/02/04 20:34:02 1.4
+++ /project/elephant/cvsroot/elephant/tests/testmigration.lisp 2006/02/04 22:25:10 1.5
@@ -1,8 +1,15 @@
-;; This file can really only be used if you
-;; have preformed both:
-;; (asdf:operate 'asdf:load-op :ele-bdb)
-;; and
-;; (asdf:operate 'asdf:load-op :ele-clsql)
+;;; testmigration.lisp
+;;;
+;;; part of
+;;;
+;;; Elephant: an object-oriented database for Common Lisp
+;;;
+;;; Copyright (c) 2005,2006 by Robert L. Read
+;;; <rread at common-lisp.net>
+;;;
+;;; Elephant users are granted the rights to distribute and use this software
+;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
(in-package :ele-tests)
--- /project/elephant/cvsroot/elephant/tests/testserializer.lisp 2006/01/29 01:08:32 1.8
+++ /project/elephant/cvsroot/elephant/tests/testserializer.lisp 2006/02/04 22:25:10 1.9
@@ -1,3 +1,16 @@
+;;; testserializer.lisp
+;;;
+;;; part of
+;;;
+;;; Elephant: an object-oriented database for Common Lisp
+;;;
+;;; Copyright (c) 2004 by Andrew Blumberg and Ben Lee
+;;; <ablumberg at common-lisp.net> <blee at common-lisp.net>
+;;;
+;;; Elephant users are granted the rights to distribute and use this software
+;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+
(in-package :ele-tests)
(defun in-out-value (var)
--- /project/elephant/cvsroot/elephant/tests/testsleepycat.lisp 2006/01/25 15:36:32 1.5
+++ /project/elephant/cvsroot/elephant/tests/testsleepycat.lisp 2006/02/04 22:25:10 1.6
@@ -1,7 +1,17 @@
+;;; testsleepycat.lisp
+;;;
+;;; part of
+;;;
+;;; Elephant: an object-oriented database for Common Lisp
+;;;
+;;; Copyright (c) 2004 by Andrew Blumberg and Ben Lee
+;;; <ablumberg at common-lisp.net> <blee at common-lisp.net>
+;;;
+;;; Elephant users are granted the rights to distribute and use this software
+;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
(in-package "ELE-TESTS")
-;;(unuse-package "ELE")
-;;(use-package "SLEEPYCAT")
(defvar env)
(defvar db)
--- /project/elephant/cvsroot/elephant/tests/testsorter.lisp 2004/09/16 04:29:19 1.1
+++ /project/elephant/cvsroot/elephant/tests/testsorter.lisp 2006/02/04 22:25:10 1.2
@@ -1,3 +1,16 @@
+;;; testsorter.lisp
+;;;
+;;; part of
+;;;
+;;; Elephant: an object-oriented database for Common Lisp
+;;;
+;;; Copyright (c) 2004 by Andrew Blumberg and Ben Lee
+;;; <ablumberg at common-lisp.net> <blee at common-lisp.net>
+;;;
+;;; Elephant users are granted the rights to distribute and use this software
+;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+
(in-package "ELE")
(def-function ("lisp_cmp_test" lisp-compare)
@@ -103,4 +116,4 @@
(defconstant lowest-bad-num? 18455751272964294657)
-
\ No newline at end of file
+
More information about the Elephant-cvs
mailing list