projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f78db1
)
Silence a warning from the test harness for unthreaded builds.
author
Lutz Euler
<lutz.euler@freenet.de>
Sat, 2 Mar 2013 18:52:19 +0000
(19:52 +0100)
committer
Lutz Euler
<lutz.euler@freenet.de>
Sat, 2 Mar 2013 18:52:19 +0000
(19:52 +0100)
"The variable THREADS is defined but never used.", so, in WITH-TEST only
bind THREADS under #+SB-THREAD as all places where this variable is used
are guarded by this feature expression, too.
tests/test-util.lisp
patch
|
blob
|
history
diff --git
a/tests/test-util.lisp
b/tests/test-util.lisp
index
20b2c54
..
d6246bf
100644
(file)
--- a/
tests/test-util.lisp
+++ b/
tests/test-util.lisp
@@
-39,7
+39,7
@@
(defmacro with-test ((&key fails-on broken-on skipped-on name)
&body body)
(let ((block-name (gensym))
- (threads (gensym "THREADS")))
+ #+sb-thread (threads (gensym "THREADS")))
`(progn
(start-test)
(cond