Raymond Toy pushed to branch rtoy-issue-64 at cmucl / cmucl
Commits:
-
4c18d795
by Raymond Toy at 2018-07-20T20:09:08-07:00
-
f38dbfb6
by Raymond Toy at 2018-07-20T20:16:01-07:00
1 changed file:
Changes:
... | ... | @@ -398,8 +398,14 @@ |
398 | 398 |
(assert-eql :exited (ext:process-status p)))))
|
399 | 399 |
|
400 | 400 |
;; For some reason this used to work linux CI but not doesn't. But
|
401 |
-;; this test passes on my Fedora and debian systesm.
|
|
402 |
-;; See issue #64.
|
|
401 |
+;; this test passes on my Fedora and debian systems. See issue #64.
|
|
402 |
+;; So until we figure this out, disable this test when we're running a
|
|
403 |
+;; pipeline with linux, but otherwise enable it. The pipeline defines
|
|
404 |
+;; the envvar GITLAB_CI so check for that.
|
|
405 |
+;;
|
|
406 |
+;; It would be better if lisp-unit had a way of marking tests as known
|
|
407 |
+;; failures, but it doesn't.
|
|
408 |
+#+#.(cl:if (cl:and (ext:featurep :linux) (unix:unix-getenv "GITLAB_CI")) '(or) '(and))
|
|
403 | 409 |
(define-test issue.41.1
|
404 | 410 |
(:tag :issues)
|
405 | 411 |
(issue-41-tester unix:sigstop))
|