Skip to content

Commit

Permalink
[ci] put some preliminary single-threaded tests on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
digikar99 committed Apr 14, 2024
1 parent ab887e8 commit 369f479
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ci-test.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,11 @@
(when (or (plusp (slot-value report 'clunit::failed))
(plusp (slot-value report 'clunit::errors)))
(uiop:quit 1)))
(format t "!!ALL TESTS RAN SUCCESSFULLY!!")
(terpri)
(format t "!!MULTI-THREADED TESTS RAN SUCCESSFULLY!!")
(ql:quickload "py4cl2-cffi/single-threaded")
(py4cl2-cffi/single-threaded:pystart)
(assert (string= "42" (py4cl2-cffi/single-threaded:pycall "str" 42)))
(terpri)
(format t "!!Preliminary SINGLE-THREADED TESTS RAN SUCCESSFULLY!!")
(uiop:quit 0)

0 comments on commit 369f479

Please sign in to comment.