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
cmucl
cmucl
Commits
05f11fa5
Commit
05f11fa5
authored
Jul 21, 2018
by
Raymond Toy
Browse files
Issue
#64
: Disable test when running CI
parent
50b1201e
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/issues.lisp
View file @
05f11fa5
...
...
@@ -398,9 +398,14 @@
(
assert-eql
:exited
(
ext:process-status
p
)))))
;; For some reason this used to work linux CI but not doesn't. But
;; this test passes on my Fedora and debian systesm.
;; See issue #64.
#-
linux
;; this test passes on my Fedora and debian systems. See issue #64.
;; So until we figure this out, disable this test when we're running a
;; pipeline with linux, but otherwise enable it. The pipeline defines
;; the envvar GITLAB_CI so check for that.
;;
;; It would be better if lisp-unit had a way of marking tests as known
;; failures, but it doesn't.
#+#.
(
cl:if
(
cl:and
(
ext:featurep
:linux
)
(
unix:unix-getenv
"GITLAB_CI"
))
'
(
or
)
'
(
and
))
(
define-test
issue.41.1
(
:tag
:issues
)
(
issue-41-tester
unix:sigstop
))
...
...
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