Skip to content

Commit 781a033

Browse files
committed
Disable backtrace and PBTs on s390x too (OCaml5 bytecode arch)
1 parent b10075a commit 781a033

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/dune

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
(name backtrace)
9999
(libraries domainslib)
100100
(modules backtrace)
101-
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power))))
101+
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power) (<> %{architecture} s390x))))
102102
;; disabled temporarily on bytecode switches https://github.com/ocaml/dune/issues/7845
103103

104104
(test
@@ -112,14 +112,16 @@
112112
(name task_one_dep)
113113
(modules task_one_dep)
114114
(libraries qcheck-multicoretests-util qcheck-core qcheck-core.runner domainslib)
115-
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power))) ;; takes forever on bytecode
115+
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power) (<> %{architecture} s390x)))
116+
;; takes forever on bytecode
116117
(action (run %{test} --verbose)))
117118

118119
(test
119120
(name task_more_deps)
120121
(modules task_more_deps)
121122
(libraries qcheck-multicoretests-util qcheck-core qcheck-core.runner domainslib)
122-
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power))) ;; takes forever on bytecode
123+
(enabled_if (and (= %{arch_sixtyfour} true) (<> %{architecture} power) (<> %{architecture} s390x)))
124+
;; takes forever on bytecode
123125
(action (run %{test} --verbose)))
124126

125127
(test

0 commit comments

Comments
 (0)