r2784: *** empty log message ***
[uffi.git] / examples / run-examples.cl
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          run-examples.cl
6 ;;;; Purpose:       Load and execute all examples for UFFI
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: run-examples.cl,v 1.2 2002/09/20 04:51:14 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; UFFI users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 #-uffi (asdf:oos 'asdf:load-op :uffi)
20
21 (pushnew :examples-uffi cl:*features*)
22
23 (flet ((load-test (name)
24          (load (merge-pathnames
25                 (make-pathname :name name 
26                                :type "cl"
27                 *load-truename*)))))
28   (load-test "c-test-fns")
29   (load-test "arrays")
30   (load-test "union")
31   (load-test "strtol")
32   (load-test "atoifl")
33   (load-test "gettime")
34   (load-test "getenv")
35   (load-test "gethostname")
36   (load-test "getshells")
37   (load-test "compress"))
38
39 (setq cl:*features* (remove :examples-uffi cl:*features*))
40
41
42