mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-16 17:27:33 +02:00
More test cases, trying to track down comp failure
This commit is contained in:
parent
058d30224d
commit
b2fceb8a49
1 changed files with 3 additions and 0 deletions
|
@ -10,8 +10,10 @@
|
||||||
(scheme write)
|
(scheme write)
|
||||||
)
|
)
|
||||||
(inline
|
(inline
|
||||||
|
my-string<=?
|
||||||
my-not)
|
my-not)
|
||||||
|
|
||||||
|
(define (my-string<=? str1 str2) (<= (string-cmp str1 str2) 0))
|
||||||
(define (my-not x) (if x #f #t))
|
(define (my-not x) (if x #f #t))
|
||||||
|
|
||||||
(define (queue-empty) (cons '() '()))
|
(define (queue-empty) (cons '() '()))
|
||||||
|
@ -39,3 +41,4 @@
|
||||||
(write (queue->list objects-dumped))
|
(write (queue->list objects-dumped))
|
||||||
(write (test 'c))
|
(write (test 'c))
|
||||||
(write (my-not (test 'd)))
|
(write (my-not (test 'd)))
|
||||||
|
(write (my-string<=? (symbol->string (car objects-dumped))))
|
||||||
|
|
Loading…
Add table
Reference in a new issue