source: trunk/abcl/contrib/abcl-build/build/t/install.lisp @ 15136

Last change on this file since 15136 was 15136, checked in by Mark Evenson, 3 years ago

abcl-build: update uris for abcl-built-tests

File size: 654 bytes
Line 
1(in-package :cl-user)
2
3(prove:plan 1)
4(prove:ok 
5 (abcl/build:xdg/abcl-install-root #P"http://archive.apache.org/dist/ant/binaries/apache-ant-1.9.4-bin.zip"))
6
7(prove:plan 2)
8(let ((path (ext:make-temp-directory))
9      (uri #p"http://www-eu.apache.org/dist/ant/binaries/apache-ant-1.10.7-bin.zip"))
10  (prove:diag
11   (format nil "Testing binary unzip installation of~%~,2t<~a>~%to~%~,2t '~a'." uri path))
12  (multiple-value-bind (root contents)
13      (abcl/build:xdg/install uri)
14    (prove:ok (and root
15                   (probe-file root)))
16    (prove:ok (and
17               (consp contents)
18               (> (length contents) 0)))))
19(prove:finalize)
20
Note: See TracBrowser for help on using the repository browser.