diff --git a/run-tests.bash b/run-tests.bash index 9ebcdd3..630d75e 100755 --- a/run-tests.bash +++ b/run-tests.bash @@ -5,9 +5,8 @@ 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 @@ -15,9 +14,8 @@ else -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 diff --git a/tests.lisp b/tests.lisp index af785dc..0abec16 100644 --- a/tests.lisp +++ b/tests.lisp @@ -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 diff --git a/unix-opts.lisp b/unix-opts.lisp index 1f73a6b..b30af69 100644 --- a/unix-opts.lisp +++ b/unix-opts.lisp @@ -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