Last change
on this file was
15230,
checked in by Mark Evenson, 5 years ago
|
abcl-build: remove test package in lieu of CL-USER
|
File size:
765 bytes
|
Line | |
---|
1 | (in-package :cl-user) |
---|
2 | |
---|
3 | (if (not (ignore-errors (asdf:find-system :abcl))) |
---|
4 | (prove:diag "Unable to find 'abcl.asd'.~&Enable ASDF to find 'abcl.asd' by adding symlink to ~~/common-lisp/ to ABCL source directory.") |
---|
5 | (prove:subtest "Testing BUILD-ABCL." |
---|
6 | (prove:plan 2) |
---|
7 | (prove:ok |
---|
8 | (abcl-build:build-abcl) |
---|
9 | "Testing BUILD-ABCLâŠ") |
---|
10 | (prove:ok |
---|
11 | (abcl-build:make-dist (format nil "test-" (random (expt 2 32)))) |
---|
12 | "Testing MAKE-DISTâŠ") |
---|
13 | #+abcl-build-test-more |
---|
14 | (progn |
---|
15 | (prove:ok |
---|
16 | (abcl-build:build-abcl :clean t) |
---|
17 | "Testing BUILD:ABCL cleanâŠ")) |
---|
18 | #+abcl-build-test-more |
---|
19 | (prove:ok |
---|
20 | (abcl-build:build-abcl :force t) |
---|
21 | "Testing BUILD-ABCL forceâŠ"))) |
---|
22 | |
---|
23 | (prove:finalize) |
---|
24 | |
---|
25 | |
---|
Note: See
TracBrowser
for help on using the repository browser.