git.fiddlerwoaroof.com
Browse code

feat: tests produce right exit code

Ed L authored on 15/11/2020 23:40:40
Showing 1 changed files
... ...
@@ -5,5 +5,7 @@
5 5
     (ql:quickload :cl-git/tests)
6 6
     nil)
7 7
 
8
-(5am:run-all-tests)
9
-
8
+(sb-ext:exit
9
+ :code (if (5am:run-all-tests)
10
+           0
11
+           42))