projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d781aca
)
Fix test colorization
author
David Vázquez
<davazp@gmail.com>
Sat, 4 May 2013 11:59:34 +0000
(12:59 +0100)
committer
David Vázquez
<davazp@gmail.com>
Sat, 4 May 2013 12:00:43 +0000
(13:00 +0100)
tests.html
patch
|
blob
|
history
tests.lisp
patch
|
blob
|
history
diff --git
a/tests.html
b/tests.html
index
bd02338
..
92a5f13
100644
(file)
--- a/
tests.html
+++ b/
tests.html
@@
-67,7
+67,7
@@
<script>
var jqconsole = $('#console').jqconsole();
lisp.write = function(str){
- jqconsole.Write(str, 'jqconsole-output', false);
+ jqconsole.Write(xstring(str), 'jqconsole-output', false);
return str;
};
</script>
diff --git
a/tests.lisp
b/tests.lisp
index
d7d6412
..
4c741c6
100644
(file)
--- a/
tests.lisp
+++ b/
tests.lisp
@@
-33,5
+33,9
@@
(incf *expected-failures*)))
(incf *total-tests*)))
+(defmacro test-equal (form value)
+ `(test (equal ,form, value)))
+
+
(format t "Running tests...~%~%")
(setq *timestamp* (get-internal-real-time))