mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Guile2: fix two tests in report system
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23441 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
5cff297872
commit
95ba08328f
@ -51,8 +51,9 @@
|
||||
(equal? 4 (length (collector-end c)))))
|
||||
|
||||
(define (empty-collector)
|
||||
(define ((equal-predicate a) x)
|
||||
(equal? a x))
|
||||
(define (equal-predicate a)
|
||||
(lambda (x)
|
||||
(equal? a x)))
|
||||
(collector-per-property '(1 2 3 4)
|
||||
make-equal-filter
|
||||
(lambda (value) (collector-accumulate-from 0))))
|
||||
|
@ -6,7 +6,8 @@ exec ${GUILE} -s "$0"
|
||||
(debug-enable 'backtrace)
|
||||
|
||||
(debug-set! stack 500000)
|
||||
(debug-set! maxdepth 10000)
|
||||
(if (< (string->number (major-version)) 2)
|
||||
(debug-set! maxdepth 100000))
|
||||
|
||||
(display " testing report module load ... ")
|
||||
(setenv "GNC_UNINSTALLED" "1")
|
||||
|
Loading…
Reference in New Issue
Block a user