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
576fc79d
Commit
576fc79d
authored
Jul 21, 2018
by
Raymond Toy
Browse files
Merge branch 'rtoy-issue-64' into 'master'
Issue
#64
: Disable test when running CI See merge request
!40
parents
50b1201e
05f11fa5
Pipeline
#315
passed with stage
in 17 minutes and 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
tests/issues.lisp
View file @
576fc79d
...
...
@@ -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