changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/tests.lisp

changeset 661: 39170f311b8c
parent: 937a6f354047
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 21 Sep 2024 00:04:33 -0400
permissions: -rw-r--r--
description: add sk-def and sk-bind
1 ;;; tests.lisp --- Test Package Definitions
2 
3 ;;
4 
5 ;;; Code:
6 (in-package :std-user)
7 
8 (defpkg :core/tests
9  (:use :std-lisp :rt :log))
10 
11 (in-package :core/tests)
12 
13 (defsuite :core)
14 (in-suite :core)
15 
16 (defun run-all-tests (&optional force)
17  (mapcar (lambda (x) (do-tests x force)) (remove *test-suite* *test-suite-list*)))
18 
19 (deftest all ()
20  (run-all-tests))