changed test printout so that the summary is to stdout, not stderr
svn: r16524
This commit is contained in:
parent
82b9a9f4dd
commit
da743d4a49
|
@ -631,13 +631,13 @@
|
|||
|
||||
(cond
|
||||
[(= failures 0)
|
||||
(fprintf (current-error-port) "matcher-test.ss: all ~a tests passed.\n" test-count)]
|
||||
(printf "matcher-test.ss: all ~a tests passed.\n" test-count)]
|
||||
[else
|
||||
(fprintf (current-error-port) "matcher-test.ss: ~a test~a failed.\n"
|
||||
failures
|
||||
(if (= failures 1)
|
||||
""
|
||||
"s"))]))
|
||||
(printf "matcher-test.ss: ~a test~a failed.\n"
|
||||
failures
|
||||
(if (= failures 1)
|
||||
""
|
||||
"s"))]))
|
||||
|
||||
;; mk-hasheq : (listof (cons sym any)) -> hash-table
|
||||
;; builds a hash table that has the bindings in assoc-list
|
||||
|
|
Loading…
Reference in New Issue
Block a user