Making the reports work
This commit is contained in:
parent
e0675aa11e
commit
3221d82396
|
@ -35,8 +35,7 @@
|
||||||
(newline out)
|
(newline out)
|
||||||
(for-each
|
(for-each
|
||||||
(lambda (test)
|
(lambda (test)
|
||||||
(let ((test-name (cdr (assoc 'name test)))
|
(let ((test-name (cdr (assoc 'name test))))
|
||||||
(name (symbol->string (cdr (assoc 'name implementation)))))
|
|
||||||
(display (string-append "<tr>") out)
|
(display (string-append "<tr>") out)
|
||||||
(newline out)
|
(newline out)
|
||||||
(display (string-append "<td>" test-name "</td>") out)
|
(display (string-append "<td>" test-name "</td>") out)
|
||||||
|
@ -46,7 +45,7 @@
|
||||||
(letrec* ((name (cdr (assoc 'name implementation)))
|
(letrec* ((name (cdr (assoc 'name implementation)))
|
||||||
(command (cdr (assoc 'command implementation)))
|
(command (cdr (assoc 'command implementation)))
|
||||||
(logfile (string-append "reports/"
|
(logfile (string-append "reports/"
|
||||||
name
|
(cdr (assoc 'name implementation))
|
||||||
"-"
|
"-"
|
||||||
test-name
|
test-name
|
||||||
".log"))
|
".log"))
|
||||||
|
|
Loading…
Reference in New Issue