X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Frun-examples.lisp;fp=tests%2Frun-examples.lisp;h=0000000000000000000000000000000000000000;hb=bdb966b22ea563a7dfa1f464a1b6cb6d8b5a712c;hp=7e80a3fd99d9d7a90051941af97ed3a5102e9e67;hpb=886f754686a07aea92089a3ffdc997836d69d9f3;p=uffi.git diff --git a/tests/run-examples.lisp b/tests/run-examples.lisp deleted file mode 100644 index 7e80a3f..0000000 --- a/tests/run-examples.lisp +++ /dev/null @@ -1,39 +0,0 @@ -;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: run-examples.cl -;;;; Purpose: Load and execute all examples for UFFI -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Feb 2002 -;;;; -;;;; $Id: run-examples.lisp,v 1.1 2002/09/30 10:02:36 kevin Exp $ -;;;; -;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; UFFI users are granted the rights to distribute and use this software -;;;; as governed by the terms of the Lisp Lesser GNU Public License -;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. -;;;; ************************************************************************* - -#-uffi (asdf:oos 'asdf:load-op :uffi) - -(pushnew :examples-uffi cl:*features*) - -(flet ((load-test (name) - (load (make-pathname :defaults *load-truename* :name name)))) - (load-test "c-test-fns") - (load-test "arrays") - (load-test "union") - (load-test "strtol") - (load-test "atoifl") - (load-test "gettime") - (load-test "getenv") - (load-test "gethostname") - (load-test "getshells") - (load-test "compress")) - -(setq cl:*features* (remove :examples-uffi cl:*features*)) - - -