Skip to content
Snippets Groups Projects
Commit 5270de20 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Fix .gitignore and commit some missing test fixes.

parent 96cecd29
No related branches found
No related tags found
No related merge requests found
# really this is private to my build process
? ?
?? ??
??? ???
???? build
?????
generate-asdf.lisp
# Temporary files from documentation build
doc/asdf/ doc/asdf/
doc/asdf.aux doc/asdf.aux
doc/asdf.cp doc/asdf.cp
...@@ -25,7 +21,6 @@ doc/asdf.vr ...@@ -25,7 +21,6 @@ doc/asdf.vr
doc/asdf.vrs doc/asdf.vrs
doc/asdf.t2d/ doc/asdf.t2d/
# We build these at various stages in the build and test process
LICENSE LICENSE
tmp/ tmp/
*.dribble *.dribble
...@@ -43,7 +38,6 @@ tmp/ ...@@ -43,7 +38,6 @@ tmp/
test/try-reloading-dependency.asd test/try-reloading-dependency.asd
test/fileMissing.lisp test/fileMissing.lisp
# debian stuff
build-stamp build-stamp
debian/cl-asdf.debhelper.log debian/cl-asdf.debhelper.log
debian/cl-asdf.postinst.debhelper debian/cl-asdf.postinst.debhelper
......
(in-package :asdf/package)
...@@ -340,7 +340,7 @@ is bound, write a message and exit on an error. If ...@@ -340,7 +340,7 @@ is bound, write a message and exit on an error. If
`(testing-asdf #'(lambda () ,@body))) `(testing-asdf #'(lambda () ,@body)))
(defun close-inputs () (defun close-inputs ()
(close *standard-input*)) #-ecl (close *standard-input*))
(defun configure-asdf () (defun configure-asdf ()
(untrace) (untrace)
......
#|
make sure that serial t and static-files don't cause full rebuilds all
the time...
|#
(defsystem static-and-serial
:version "0.1"
:serial t
:components
((:static-file "file2.lisp")
(:static-file "run-tests.sh")
(:file "file1")))
(defpackage :test-package (:use :cl))
(in-package :test-package)
(defvar *file3* t)
(defpackage :test-package (:use :cl))
(in-package :test-package)
(defvar *file1* t)
(in-package :test-package)
(assert *file1*)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment