source: trunk/abcl/contrib/abcl-build/build/t/ant.lisp

Last change on this file was 15230, checked in by Mark Evenson, 4 years ago

abcl-build: remove test package in lieu of CL-USER

File size: 645 bytes
Line 
1(in-package :cl-user)
2
3(prove:plan 1)
4(prove:ok
5 (build-abcl:ant/install)
6 "Testing ABCL-specific Ant installation of Ant into XDG hierarchy
")
7
8(if (not (ignore-errors (asdf:find-system :abcl)))
9    (prove:diag "Unable to find 'abcl.asd'.~&Enable ASDF to find 'abcl.asd' by adding symlink to ~~/common-lisp/ to ABCL source directory.")
10    (let ((ant-file (asdf:system-relative-pathname :abcl "build.xml")))
11      (prove:plan 1)
12      (prove:ok
13       (abcl-build:ant/call ant-file "abcl.diagnostic")
14       (format nil "Testing invocation of private Ant on main ABCL build artifact at ~&~2,t~a
" ant-file))))
15           
16(prove:finalize)
Note: See TracBrowser for help on using the repository browser.