c6414e8e26742c81cae0daaaf23a5fcd05b1f1e2
[uffi.git] / examples / run-examples.lisp
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$
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 (make-pathname :defaults *load-truename* :name name))))
25   (load-test "c-test-fns")
26   (load-test "arrays")
27   (load-test "union")
28   (load-test "strtol")
29   (load-test "atoifl")
30   (load-test "gettime")
31   (load-test "getenv")
32   (load-test "gethostname")
33   (load-test "getshells")
34   (load-test "compress"))
35
36 (setq cl:*features* (remove :examples-uffi cl:*features*))
37
38
39