Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Moringen
asdf
Commits
cf599ede
Commit
cf599ede
authored
11 years ago
by
Dave Cooper
Committed by
Francois-Rene Rideau
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add sleep time to be sure about file timestamps esp. for Windows
parent
46f7a2e5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/stamp-propagation/test-stamp-propagation.lisp
+4
-2
4 additions, 2 deletions
test/stamp-propagation/test-stamp-propagation.lisp
with
4 additions
and
2 deletions
test/stamp-propagation/test-stamp-propagation.lisp
+
4
−
2
View file @
cf599ede
...
@@ -143,14 +143,16 @@
...
@@ -143,14 +143,16 @@
(
clear-fasls
defsystem
)
(
clear-fasls
defsystem
)
(
DBG
"loading system"
)
(
DBG
"loading system"
)
(
reload
defsystem
)
(
reload
defsystem
)
(
sleep
2
)
;; TODO: on ASDF at least, instead touch the file stamp with the cache.
#-
os-windows
(
sleep
3
)
;; TODO: on ASDF at least, instead touch the file stamp with the cache.
#+
os-windows
(
sleep
5
)
;; TODO: on ASDF at least, instead touch the file stamp with the cache.
(
DBG
"touching first source file and reloading"
)
(
DBG
"touching first source file and reloading"
)
(
DBG
"defsystem should recompile & reload everything"
)
(
DBG
"defsystem should recompile & reload everything"
)
(
touch-file1.lisp
)
(
touch-file1.lisp
)
(
assert-equal
(
sanitize-log
(
reload
defsystem
))
(
assert-equal
(
sanitize-log
(
reload
defsystem
))
'
((
:compiling
:system
)
(
:compile-toplevel
:file1
)
(
:load-toplevel
:file1
)
'
((
:compiling
:system
)
(
:compile-toplevel
:file1
)
(
:load-toplevel
:file1
)
(
:compile-toplevel
:file2
)
(
:load-toplevel
:file2
)))
(
:compile-toplevel
:file2
)
(
:load-toplevel
:file2
)))
(
sleep
2
)
#-
os-windows
(
sleep
3
)
#+
os-windows
(
sleep
5
)
(
DBG
"touching first fasl file and reloading"
)
(
DBG
"touching first fasl file and reloading"
)
(
DBG
"defsystem should reload it, recompile & reload the other"
)
(
DBG
"defsystem should reload it, recompile & reload the other"
)
(
touch-file1.fasl
defsystem
)
(
touch-file1.fasl
defsystem
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment