Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions test/dune
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,15 @@
(name backtrace)
(libraries domainslib)
(modules backtrace)
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power) (<> %{architecture} s390x))))
;; disabled temporarily on bytecode switches https://github.com/ocaml/dune/issues/7845
(enabled_if (<> %{system} mingw64)) ;; triggers a known issue on mingw https://github.com/ocaml/ocaml/pull/12231
(modes byte native))
;; byte_complete .exes don't include debug+trace info https://github.com/ocaml/dune/issues/7845
;; so on a bytecode switch/platform we build a plain bytecode version w/trace info
;; and rename it to .exe
(rule
(target backtrace.exe)
(action (copy backtrace.bc backtrace.exe))
(enabled_if (and (= %{bin-available:ocamlopt} false) (<> %{system} mingw64))))

(test
(name off_by_one)
Expand All @@ -112,16 +119,14 @@
(name task_one_dep)
(modules task_one_dep)
(libraries qcheck-multicoretests-util qcheck-core qcheck-core.runner domainslib)
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power) (<> %{architecture} s390x)))
;; takes forever on bytecode
(enabled_if %{bin-available:ocamlopt}) ;; takes forever on bytecode
(action (run %{test} --verbose)))

(test
(name task_more_deps)
(modules task_more_deps)
(libraries qcheck-multicoretests-util qcheck-core qcheck-core.runner domainslib)
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power) (<> %{architecture} s390x)))
;; takes forever on bytecode
(enabled_if %{bin-available:ocamlopt}) ;; takes forever on bytecode
(action (run %{test} --verbose)))

(test
Expand Down