We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab887e8 commit 369f479Copy full SHA for 369f479
ci-test.lisp
@@ -9,5 +9,11 @@
9
(when (or (plusp (slot-value report 'clunit::failed))
10
(plusp (slot-value report 'clunit::errors)))
11
(uiop:quit 1)))
12
-(format t "!!ALL TESTS RAN SUCCESSFULLY!!")
+(terpri)
13
+(format t "!!MULTI-THREADED TESTS RAN SUCCESSFULLY!!")
14
+(ql:quickload "py4cl2-cffi/single-threaded")
15
+(py4cl2-cffi/single-threaded:pystart)
16
+(assert (string= "42" (py4cl2-cffi/single-threaded:pycall "str" 42)))
17
18
+(format t "!!Preliminary SINGLE-THREADED TESTS RAN SUCCESSFULLY!!")
19
(uiop:quit 0)
0 commit comments