Skip to content

Commit 694f046

Browse files
committed
Disable backtrace test on Mingw for now
1 parent a86b6ed commit 694f046

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/dune

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,15 @@
9898
(name backtrace)
9999
(libraries domainslib)
100100
(modules backtrace)
101+
(enabled_if (<> %{system} mingw64)) ;; triggers a known issue on mingw https://github.com/ocaml/ocaml/pull/12231
101102
(modes byte native))
102103
;; byte_complete .exes don't include debug+trace info https://github.com/ocaml/dune/issues/7845
103104
;; so on a bytecode switch/platform we build a plain bytecode version w/trace info
104105
;; and rename it to .exe
105106
(rule
106107
(target backtrace.exe)
107108
(action (copy backtrace.bc backtrace.exe))
108-
(enabled_if (= %{bin-available:ocamlopt} false)))
109+
(enabled_if (and (= %{bin-available:ocamlopt} false) (<> %{system} mingw64))))
109110

110111
(test
111112
(name off_by_one)

0 commit comments

Comments
 (0)