Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
57e33d18
Commit
57e33d18
authored
Oct 14, 2013
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak test-stamp-propagation so it's more robust on e.g. Windows
parent
d62e1911
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
test/stamp-propagation/test-stamp-propagation.lisp
test/stamp-propagation/test-stamp-propagation.lisp
+10
-8
No files found.
test/stamp-propagation/test-stamp-propagation.lisp
View file @
57e33d18
...
...
@@ -105,17 +105,19 @@
(
format
t
"~&EVAL-NOTES ~S~%"
n
)
n
))
#-
genera
(
defun
touch
(
filename
)
#+
genera
filename
;; do something with it!
#-
genera
(
uiop:run-program
`
(
"touch"
,
(
native-namestring
filename
))
:output
t
:error-output
t
))
(
defun
touch-file1.lisp
()
(
touch-file
(
asdf::subpathname
*tsp*
"file1.lisp"
)
:in-filesystem
t
))
(
touch
(
asdf::subpathname
*tsp*
"file1.lisp"
)))
#-
genera
(
defun
touch-file1.fasl
(
&optional
(
defsystem
*default-defsystem*
))
(
touch-file
(
funcall
(
case
defsystem
(
:asdf
'asdf::compile-file-pathname*
)
(
t
'compile-file-pathname
))
(
asdf::subpathname
*tsp*
"file1.lisp"
))
:in-filesystem
t
))
(
touch
(
funcall
(
case
defsystem
(
:asdf
'asdf::compile-file-pathname*
)
(
t
'compile-file-pathname
))
(
asdf::subpathname
*tsp*
"file1.lisp"
))))
(
defun
sanitize-log
(
log
)
(
remove-duplicates
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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