Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
5270de20
Commit
5270de20
authored
Jan 13, 2013
by
Francois-Rene Rideau
Browse files
Fix .gitignore and commit some missing test fixes.
parent
96cecd29
Changes
5
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
5270de20
# really this is private to my build process
?
??
???
????
?????
generate-asdf.lisp
build
# Temporary files from documentation build
doc/asdf/
doc/asdf.aux
doc/asdf.cp
...
...
@@ -25,7 +21,6 @@ doc/asdf.vr
doc/asdf.vrs
doc/asdf.t2d/
# We build these at various stages in the build and test process
LICENSE
tmp/
*.dribble
...
...
@@ -43,7 +38,6 @@ tmp/
test/try-reloading-dependency.asd
test/fileMissing.lisp
# debian stuff
build-stamp
debian/cl-asdf.debhelper.log
debian/cl-asdf.postinst.debhelper
...
...
test/package-test.lisp
0 → 100644
View file @
5270de20
(
in-package
:asdf/package
)
test/script-support.lisp
View file @
5270de20
...
...
@@ -340,7 +340,7 @@ is bound, write a message and exit on an error. If
`
(
testing-asdf
#'
(
lambda
()
,@
body
)))
(
defun
close-inputs
()
(
close
*standard-input*
))
#-
ecl
(
close
*standard-input*
))
(
defun
configure-asdf
()
(
untrace
)
...
...
test/static-and-serial.asd
0 → 100644
View file @
5270de20
#|
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"
)))
test/test-concatenate-source.lisp
0 → 100644
View file @
5270de20
(
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*
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment