mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
Allow explicit fallback to bytecode for various tests
Relax the requirements for the tests, to fall back on the bytecode version when the native version is not available. Otherwise the tests will fail on bytecode-only architectures.
This commit is contained in:
parent
1367d5b855
commit
f58310913a
3 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
(test
|
(test
|
||||||
(name t)
|
(name t)
|
||||||
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
|
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
|
||||||
(modes native)
|
(modes (best exe))
|
||||||
(package containers)
|
(package containers)
|
||||||
(preprocess
|
(preprocess
|
||||||
(action
|
(action
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
(test
|
(test
|
||||||
(name t)
|
(name t)
|
||||||
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
|
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
|
||||||
(modes native)
|
(modes (best exe))
|
||||||
(package containers-data)
|
(package containers-data)
|
||||||
(libraries containers containers-data containers_testlib iter gen))
|
(libraries containers containers-data containers_testlib iter gen))
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
(test
|
(test
|
||||||
(name t)
|
(name t)
|
||||||
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
|
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
|
||||||
(modes native)
|
(modes (best exe))
|
||||||
(package containers-thread)
|
(package containers-thread)
|
||||||
(libraries containers containers-thread containers_testlib iter threads))
|
(libraries containers containers-thread containers_testlib iter threads))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue