Skip to content

Commit

Permalink
More experimenting with Racket 6.12 Heisenfailure
Browse files Browse the repository at this point in the history
  • Loading branch information
greghendershott committed Oct 7, 2024
1 parent c89e2fb commit 9d4a22c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions racket/scribble.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

(define racket-newer-than-6.12 (version<? "6.12" (version)))

(define bluebox-cache (delay/thread (make-blueboxes-cache #t)))
(define bluebox-cache (delay (make-blueboxes-cache #t)))

(define (get-bluebox-string tag)
(match (and racket-newer-than-6.12
Expand Down Expand Up @@ -245,9 +245,9 @@
[(cons term _) term]))))

(module+ test
;; Experimental hack to debug test failures happening only on CI,
;; where xref-index seems to return an empty list, but only for
;; Racket 6.12 (not stable or snapshot versions).
;; Experimental hack to debug test failures happening only on CI and
;; only for Racket 6.12 (not stable or snapshot versions), where
;; xref-index seems to return an empty list.
(when (getenv "CI")
(let loop ()
(when (null? (xref-index (load-collections-xref)))
Expand Down

0 comments on commit 9d4a22c

Please sign in to comment.