[Git][cmucl/cmucl][master] 2 commits: Issue #64: Disable test when running CI
Raymond Toy pushed to branch master at cmucl / cmucl Commits: 05f11fa5 by Raymond Toy at 2018-07-21T03:38:57+00:00 Issue #64: Disable test when running CI - - - - - 576fc79d by Raymond Toy at 2018-07-21T03:38:57+00:00 Merge branch 'rtoy-issue-64' into 'master' Issue #64: Disable test when running CI See merge request cmucl/cmucl!40 - - - - - 1 changed file: - tests/issues.lisp Changes: ===================================== tests/issues.lisp ===================================== --- a/tests/issues.lisp +++ b/tests/issues.lisp @@ -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)) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/compare/50b1201eb4ac46e9174c4d0f5... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/compare/50b1201eb4ac46e9174c4d0f5... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy