Author: rneeser Date: Wed Mar 17 00:32:25 2010 New Revision: 11 Log: Split the tests into a separate package. Modified: cl-heap/trunk/ChangeLog cl-heap/trunk/binary-heap.lisp cl-heap/trunk/cl-heap.asd cl-heap/trunk/condition.lisp cl-heap/trunk/fibonacci-heap.lisp cl-heap/trunk/heap.lisp cl-heap/trunk/package.lisp cl-heap/trunk/priority-queue.lisp cl-heap/trunk/tests.lisp Modified: cl-heap/trunk/ChangeLog ============================================================================== --- cl-heap/trunk/ChangeLog (original) +++ cl-heap/trunk/ChangeLog Wed Mar 17 00:32:25 2010 @@ -1,3 +1,11 @@ +2010-03-17 Rudy Neeser <rudy.neeser@gmail.com> + + * cl-heap-tests.asd: Added a new system definition file to run the + testing framework for the package. + + * cl-heap.asd: Removed the automatic loading of the testing + framework. + 2009-12-20 Rudy Neeser <rudy.neeser@gmail.com> * binary-heap.lisp (add-to-heap, add-all-to-heap): Fixed a bug in Modified: cl-heap/trunk/binary-heap.lisp ============================================================================== --- cl-heap/trunk/binary-heap.lisp (original) +++ cl-heap/trunk/binary-heap.lisp Wed Mar 17 00:32:25 2010 @@ -1,5 +1,4 @@ -(declaim (optimize (debug 3) (safety 3) (speed 0))) -;;; Copyright 2009 Rudolph Neeser <rudy.neeser@gmail.com>. +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com>. ;;; ;;; This file is part of CL-HEAP ;;; Modified: cl-heap/trunk/cl-heap.asd ============================================================================== --- cl-heap/trunk/cl-heap.asd (original) +++ cl-heap/trunk/cl-heap.asd Wed Mar 17 00:32:25 2010 @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; -*- ;;; -;;; Copyright 2009 Rudolph Neeser <rudy.neeser@gmail.com> +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com> ;;; ;;; This file is part of CL-HEAP ;;; @@ -27,16 +27,14 @@ (defsystem :cl-heap :description "An implementation of heap and priority queue data structures." - :version "0.1" + :version "0.1.3" :author "Rudy Neeser <rudy.neeser@gmail.com>" :license "GPLv3" - :depends-on (:xlunit) :serial t :components ((:file "package") (:file "condition") (:file "heap") (:file "binary-heap") (:file "fibonacci-heap") - (:file "priority-queue") - (:file "tests"))) + (:file "priority-queue"))) Modified: cl-heap/trunk/condition.lisp ============================================================================== --- cl-heap/trunk/condition.lisp (original) +++ cl-heap/trunk/condition.lisp Wed Mar 17 00:32:25 2010 @@ -1,4 +1,4 @@ -;;; Copyright 2009 Rudolph Neeser <rudy.neeser@gmail.com>. +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com>. ;;; ;;; This file is part of CL-HEAP ;;; Modified: cl-heap/trunk/fibonacci-heap.lisp ============================================================================== --- cl-heap/trunk/fibonacci-heap.lisp (original) +++ cl-heap/trunk/fibonacci-heap.lisp Wed Mar 17 00:32:25 2010 @@ -1,4 +1,4 @@ -;;; Copyright 2009 Rudolph Neeser <rudy.neeser@gmail.com>. +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com>. ;;; ;;; This file is part of CL-HEAP ;;; Modified: cl-heap/trunk/heap.lisp ============================================================================== --- cl-heap/trunk/heap.lisp (original) +++ cl-heap/trunk/heap.lisp Wed Mar 17 00:32:25 2010 @@ -1,4 +1,4 @@ -;;; Copyright 2009 Rudolph Neeser <rudy.neeser@gmail.com>. +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com>. ;;; ;;; This file is part of CL-HEAP ;;; Modified: cl-heap/trunk/package.lisp ============================================================================== --- cl-heap/trunk/package.lisp (original) +++ cl-heap/trunk/package.lisp Wed Mar 17 00:32:25 2010 @@ -1,4 +1,4 @@ -;;; Copyright 2009 Rudolph Neeser <rudy.neeser@gmail.com> +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com> ;;; ;;; This file is part of CL-HEAP ;;; Modified: cl-heap/trunk/priority-queue.lisp ============================================================================== --- cl-heap/trunk/priority-queue.lisp (original) +++ cl-heap/trunk/priority-queue.lisp Wed Mar 17 00:32:25 2010 @@ -1,4 +1,4 @@ -;;; Copyright 2009 Rudolph Neeser <rudy.neeser@gmail.com> +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com> ;;; ;;; This file is part of CL-HEAP ;;; Modified: cl-heap/trunk/tests.lisp ============================================================================== --- cl-heap/trunk/tests.lisp (original) +++ cl-heap/trunk/tests.lisp Wed Mar 17 00:32:25 2010 @@ -1,4 +1,4 @@ -;;; Copyright 2009 Rudolph Neeser <rudy.neeser@gmail.com> +;;; Copyright 2009-2010 Rudolph Neeser <rudy.neeser@gmail.com> ;;; ;;; This file is part of CL-HEAP ;;;