Run fewer random tests

This commit is contained in:
Daniel Feltey 2017-03-07 12:06:56 -06:00
parent 4b5e87abe1
commit 83cb692738

View File

@ -813,7 +813,7 @@
#:try-to-move? try-to-move?
#:contract-this? contract-this?)
(edit-string str start end dest-pos try-to-move?)))
(for ([i (in-range 1000)])
(for ([i (in-range 100)])
(random-check-edit-string))
(define (check-move/copy+delete-property)
@ -840,7 +840,7 @@
[(<= end dest-pos)
(send t2 delete start end)])
(check-equal? (send t1 get-text) (send t2 get-text)))
(for ([i (in-range 1000)])
(for ([i (in-range 100)])
(check-move/copy+delete-property))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;