Skip to content

Commit

Permalink
Try fixing clisp tests
Browse files Browse the repository at this point in the history
  • Loading branch information
libre-man committed May 24, 2020
1 parent 3818c65 commit 47ab5da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 2 additions & 4 deletions run-tests.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@ if [[ -n "$COVERALLS" ]]; then
-e '(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1)))' \
(uiop:quit 1)))' \
-e '(coveralls:with-coveralls (:exclude "./unix-opts-test.lisp")
(ql:quickload :unix-opts/tests)
(unix-opts/tests:run))'

else
cl -l unix-opts -l unix-opts/tests \
-e '(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1)))' \
(uiop:quit 1)))' \
-e '(progn
(ql:quickload :unix-opts/tests)
(uiop:quit (if (unix-opts/tests:run) 0 1)))'

fi
1 change: 1 addition & 0 deletions tests.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
;;; This is some tests for Unix-opts library.
;;;
;;; Copyright © 2015–2018 Mark Karpov
;;; Copyright © 2018–2020 Thomas Schaper
;;;
;;; Permission is hereby granted, free of charge, to any person obtaining a
;;; copy of this software and associated documentation files (the
Expand Down
1 change: 1 addition & 0 deletions unix-opts.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
;;; Unix-opts—a minimalistic parser of command line options.
;;;
;;; Copyright © 2015–2018 Mark Karpov
;;; Copyright © 2018–2020 Thomas Schaper
;;;
;;; Permission is hereby granted, free of charge, to any person obtaining a
;;; copy of this software and associated documentation files (the
Expand Down

0 comments on commit 47ab5da

Please sign in to comment.