Remove old CVS $Id$ keyword
[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 ;;;; This file, part of UFFI, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
11 ;;;;
12 ;;;; *************************************************************************
13
14 #-uffi (asdf:oos 'asdf:load-op :uffi)
15
16 (pushnew :examples-uffi cl:*features*)
17
18 (flet ((load-test (name)
19           (load (make-pathname :defaults *load-truename* :name name))))
20   (load-test "c-test-fns")
21   (load-test "arrays")
22   (load-test "union")
23   (load-test "strtol")
24   (load-test "atoifl")
25   (load-test "gettime")
26   (load-test "getenv")
27   (load-test "gethostname")
28   (load-test "getshells")
29   (load-test "compress"))
30
31 (setq cl:*features* (remove :examples-uffi cl:*features*))
32
33
34