Update to overload by argument count & trick garbage collection in 5am test.
Sun Apr 12 16:45:00 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* Update to overload by argument count & trick garbage collection in 5am test.
hunk ./src/overload.lisp 9
-(defmethod cxx:timer-event ((object my-object) &rest args)
- (declare (ignore args))
- (format t "TIME~%")
+(defmethod cxx:timer-event ((object my-object))
hunk ./src/signal-slot.lisp 113
- (5am:is (eql nil *destroyed*)))
+ (5am:is (eq nil *destroyed*)))
hunk ./src/signal-slot.lisp 119
- (test-destroyed-signal)
+ (eval '(test-destroyed-signal)) ;; FIXME eval somehow makes gc in 5am work!?
+ (eval '(tg:gc :full t))
hunk ./src/signal-slot.lisp 122
- (5am:is (eql t *destroyed*)))
+ (5am:is (eq t *destroyed*)))