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
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
Hugo Ishimaru
asdf
Commits
041369ee
Commit
041369ee
authored
Oct 02, 2015
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test-ascii: make sure there's no Unicode in ASDF
parent
00e03b5e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
Makefile
Makefile
+2
-2
tools/main.lisp
tools/main.lisp
+1
-1
tools/test-basic.lisp
tools/test-basic.lisp
+7
-0
No files found.
Makefile
View file @
041369ee
...
...
@@ -59,8 +59,8 @@ build_asdf build/asdf.lisp: force
# The text below was automaticaly generated by `make --silent makefile-targets`
# then manually inserted here to provide for completion:
.PHONY
:
archive build-asdf bump bump-version check-all-results check-all-scripts-results check-all-upgrade-results clean debian-package doc extract extract-all-tagged-asdf extract-tagged-asdf fix-local-git-tags fix-remote-git-tags git-all-committed-p help install install-asdf link-archive load make-and-publish-archive make-archive makefile-targets merge-master-into-release publish-archive publish-debian-package push re show-commands t test test-all test-all-clean-load test-all-no-stop test-all-no-upgrade test-all-no-upgrade-no-stop test-all-scripts test-all-scripts-no-stop test-all-upgrade test-all-upgrade-no-stop test-basic test-clean-load test-load-systems test-scripts test-upgrade u wc website
.PHONY
:
archive build-asdf bump bump-version check-all-results check-all-scripts-results check-all-upgrade-results clean debian-package doc extract extract-all-tagged-asdf extract-tagged-asdf fix-local-git-tags fix-remote-git-tags git-all-committed-p help install install-asdf link-archive load make-and-publish-archive make-archive makefile-targets merge-master-into-release publish-archive publish-debian-package push re show-commands t test test-all test-all-clean-load test-all-no-stop test-all-no-upgrade test-all-no-upgrade-no-stop test-all-scripts test-all-scripts-no-stop test-all-upgrade test-all-upgrade-no-stop test-
ascii test-
basic test-clean-load test-load-systems test-scripts test-upgrade u wc website
archive build-asdf bump bump-version check-all-results check-all-scripts-results check-all-upgrade-results clean debian-package doc extract extract-all-tagged-asdf extract-tagged-asdf fix-local-git-tags fix-remote-git-tags git-all-committed-p help install install-asdf link-archive load make-and-publish-archive make-archive makefile-targets merge-master-into-release publish-archive publish-debian-package push re show-commands t test test-all test-all-clean-load test-all-no-stop test-all-no-upgrade test-all-no-upgrade-no-stop test-all-scripts test-all-scripts-no-stop test-all-upgrade test-all-upgrade-no-stop test-basic test-clean-load test-load-systems test-scripts test-upgrade u wc website
:
force
archive build-asdf bump bump-version check-all-results check-all-scripts-results check-all-upgrade-results clean debian-package doc extract extract-all-tagged-asdf extract-tagged-asdf fix-local-git-tags fix-remote-git-tags git-all-committed-p help install install-asdf link-archive load make-and-publish-archive make-archive makefile-targets merge-master-into-release publish-archive publish-debian-package push re show-commands t test test-all test-all-clean-load test-all-no-stop test-all-no-upgrade test-all-no-upgrade-no-stop test-all-scripts test-all-scripts-no-stop test-all-upgrade test-all-upgrade-no-stop test-
ascii test-
basic test-clean-load test-load-systems test-scripts test-upgrade u wc website
:
force
${MAKE_SCRIPT}
l
=
'$l'
L
=
'$L'
u
=
'$u'
U
=
'$u'
v
=
'$v'
s
=
'$s'
t
=
'$t'
$@
tools/main.lisp
View file @
041369ee
...
...
@@ -47,7 +47,7 @@ The UNIX-y name will be downcased, and any % prefix will be dropped."
clean
%push
merge-master-into-release
fix-local-git-tags
fix-remote-git-tags
;; git
git-all-committed-p
bump-version
bump
;; version
test-load-systems
test-clean-load
test-basic
%load
install-asdf
;; test-basic
test-load-systems
test-clean-load
test-basic
test-ascii
%load
install-asdf
;; test-basic
test
%t
test-scripts
;; test-scripts
test-upgrade
u
extract-tagged-asdf
extract-all-tagged-asdf
extract
;; test-upgrade
test-all-clean-load
test-all-scripts
test-all-no-upgrade
test-all-upgrade
;; test-all
...
...
tools/test-basic.lisp
View file @
041369ee
...
...
@@ -58,5 +58,12 @@ Use your preferred lisp implementation and check that asdf is loaded without any
"basic test: doc, clean-load, load-systems"
(
without-stopping
()
(
doc
)
(
test-ascii
)
(
test-clean-load
lisp
)
(
test-load-systems
lisp
systems
)))
(
deftestcmd
test-ascii
()
"test that asdf is all ASCII"
(
success-if
(
loop
for
c
across
(
read-file-string
(
pn
"build/asdf.lisp"
))
always
(
<=
0
(
char-code
c
)
127
))))
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