Skip to content

Commit

Permalink
Export test name
Browse files Browse the repository at this point in the history
  • Loading branch information
yitzchak committed Jan 17, 2024
1 parent 8e32ca8 commit 7bc4a8b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ jobs:
asdf-add
- name: Run Shim Tests
run: |
lisp -i ${{ matrix.lisp }} -e "(ql:quickload :inravina-extrinsic/test)" -e "(inravina-extrinsic/test:test :exit t)"
lisp -i ${{ matrix.lisp }} -e "(ql:quickload :inravina-extrinsic/test)" -e "(inravina-extrinsic/test:ansi-test :exit t)"
2 changes: 1 addition & 1 deletion code/extrinsic/test/ansi-test.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"PPRINT"
"SET-PPRINT-DISPATCH."))

(defun test ()
(defun ansi-test ()
(let ((system (asdf:find-system :inravina-extrinsic/test)))
(apply #'ansi-test-harness:ansi-test
:directory (merge-pathnames
Expand Down
3 changes: 2 additions & 1 deletion code/extrinsic/test/packages.lisp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
(cl:in-package #:common-lisp-user)

(defpackage #:inravina-extrinsic/test
(:use #:common-lisp))
(:use #:common-lisp)
(:export #:ansi-test))

0 comments on commit 7bc4a8b

Please sign in to comment.