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
57e33d18
Commit
57e33d18
authored
Oct 14, 2013
by
Francois-Rene Rideau
Browse files
Tweak test-stamp-propagation so it's more robust on e.g. Windows
parent
d62e1911
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
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