Changeset 2813

Show
Ignore:
Timestamp:
03/28/08 11:04:22 (10 months ago)
Author:
ksprotte
Message:

various small chs to make the buildbot BUILD again successfully

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bknr/datastore/src/bknr.skip-list.asd

    r2809 r2813  
    2121  :depends-on (:unit-test :bknr.skip-list)  
    2222  :components ((:module "skip-list" :components 
    23                         ((:file "skip-list-test"))))) 
     23                        ((:file "skip-list-tests"))))) 
    2424 
    2525 
  • trunk/bknr/datastore/src/skip-list/skip-list-tests.lisp

    r2045 r2813  
    11(in-package :bknr.skip-list) 
    22 
    3 (use-package :unit-test) 
     3(eval-when (:compile-toplevel :load-toplevel :execute) 
     4  (use-package :unit-test)) 
    45 
    56(define-test-class skip-list-test-class) 
     
    6061 
    6162 
    62 (defun perf () 
    63   (let ((sl (make-instance 'skip-list))) 
    64     (time (prof:with-profiling () 
    65             (dotimes (i 100000) 
    66               (skip-list-insert sl i i)))) 
    67     (prof:show-flat-profile) 
    68     (format t "~%~%") 
    69     (time (prof:with-profiling () 
    70             (dotimes (i 100000) 
    71               (skip-list-search sl i)))) 
    72     (prof:show-flat-profile))) 
     63;; (defun perf () 
     64;;   (let ((sl (make-instance 'skip-list))) 
     65;;     (time (prof:with-profiling () 
     66;;          (dotimes (i 100000) 
     67;;            (skip-list-insert sl i i)))) 
     68;;     (prof:show-flat-profile) 
     69;;     (format t "~%~%") 
     70;;     (time (prof:with-profiling () 
     71;;          (dotimes (i 100000) 
     72;;            (skip-list-search sl i)))) 
     73;;     (prof:show-flat-profile))) 
     74 
  • trunk/bknr/web/src/html-match/html-match-tests.lisp

    r1345 r2813  
    11(in-package :html-match) 
    22 
    3 (use-package :unit-test) 
     3(eval-when (:compile-toplevel :load-toplevel :execute) 
     4  (use-package :unit-test)) 
    45 
    56(defmacro test-node-match (pat node) 
  • trunk/bknr/web/src/html-match/html-match.asd

    r2809 r2813  
    2222(defsystem :html-match.test 
    2323  :depends-on (:unit-test :html-match) 
    24   :components ((:file "html-match-test"))) 
     24  :components ((:file "html-match-tests"))) 
  • trunk/bknr/web/src/html-match/html-match.lisp

    r1761 r2813  
    44  "Indicates pat-match failure") 
    55 
    6 (defconstant no-bindings '((t . t)) 
     6(defvar no-bindings '((t . t))          ; actually a constant 
    77  "Indicates pat-match success, with no variables") 
    88 
  • trunk/projects/bos/m2/poi.lisp

    r2801 r2813  
    11;; poi.lisp 
    22 
    3 ;; Klassen und Funktione für die "Points of Information", die für die 
     3;; Klassen und Funktione fÃŒr die "Points of Information", die fÃŒr die 
    44;; Quadratmeter-Datenbank gespeichert werden. 
    55 
    66;; Die Implementation kurvt ein bisschen um den aktuellen Datastore 
    7 ;; herum, da eine ästhetische Implementation der mehrsprachigen 
    8 ;; Strings MOP erforderlich machen würde, die Umstellung des Datastore 
     7;; herum, da eine Àsthetische Implementation der mehrsprachigen 
     8;; Strings MOP erforderlich machen wÃŒrde, die Umstellung des Datastore 
    99;; auf MOP jedoch noch nicht fertig ist. 
    1010 
     
    1212 
    1313;; Multilinguale Strings als Slots, werden als Hashes im Objekt 
    14 ;; gespeichert und über slot-string bzw. (setf slot-string) 
     14;; gespeichert und ÃŒber slot-string bzw. (setf slot-string) 
    1515;; angesprochen. 
    1616 
     
    126126 
    127127(defun make-poi-javascript (language) 
    128   "Erzeugt das POI-Javascript für das Infosystem" 
     128  "Erzeugt das POI-Javascript fÃŒr das Infosystem" 
    129129  (with-output-to-string (*standard-output*) 
    130130    (format t "var anzahlSponsoren = ~D;~%" (length (remove-if-not #'(lambda (sponsor) (some #'contract-paidp (sponsor-contracts sponsor)))