Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ansi-test
ansi-test
Commits
1a4c2ec1
Commit
1a4c2ec1
authored
Oct 12, 2002
by
pfdietz
Browse files
Fixed broken tests revealed by testing on CMU CL.
parent
860323d9
Changes
3
Hide whitespace changes
Inline
Side-by-side
ansi-tests/string-left-trim.lsp
View file @
1a4c2ec1
...
...
@@ -63,7 +63,7 @@
(deftest string-left-trim.8
(let* ((s (copy-seq "abcdaba"))
(s2 (string-left-trim (make-array
2
:initial-contents '(#\a #\b #\c #\d)
(s2 (string-left-trim (make-array
4
:initial-contents '(#\a #\b #\c #\d)
:element-type 'character
:fill-pointer 2)
s)))
...
...
ansi-tests/string-right-trim.lsp
View file @
1a4c2ec1
...
...
@@ -63,7 +63,7 @@
(deftest string-right-trim.8
(let* ((s (copy-seq "abcdaba"))
(s2 (string-right-trim (make-array
2
:initial-contents '(#\a #\b #\c #\d)
(s2 (string-right-trim (make-array
4
:initial-contents '(#\a #\b #\c #\d)
:element-type 'character
:fill-pointer 2)
s)))
...
...
ansi-tests/string-trim.lsp
View file @
1a4c2ec1
...
...
@@ -63,7 +63,7 @@
(deftest string-trim.8
(let* ((s (copy-seq "abcdaba"))
(s2 (string-trim (make-array
2
:initial-contents '(#\a #\b #\c #\d)
(s2 (string-trim (make-array
4
:initial-contents '(#\a #\b #\c #\d)
:element-type 'character
:fill-pointer 2)
s)))
...
...
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