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
Hugo Ishimaru
asdf
Commits
041369ee
Commit
041369ee
authored
9 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
test-ascii: make sure there's no Unicode in ASDF
parent
00e03b5e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+2
-2
2 additions, 2 deletions
Makefile
tools/main.lisp
+1
-1
1 addition, 1 deletion
tools/main.lisp
tools/test-basic.lisp
+7
-0
7 additions, 0 deletions
tools/test-basic.lisp
with
10 additions
and
3 deletions
Makefile
+
2
−
2
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'
$@
This diff is collapsed.
Click to expand it.
tools/main.lisp
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
tools/test-basic.lisp
+
7
−
0
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
))))
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