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:
Samuel Hym 2022-12-15 18:40:37 +01:00 committed by Fardale
parent 1367d5b855
commit f58310913a
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
(test
(name t)
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
(modes native)
(modes (best exe))
(package containers)
(preprocess
(action

View file

@ -1,6 +1,6 @@
(test
(name t)
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
(modes native)
(modes (best exe))
(package containers-data)
(libraries containers containers-data containers_testlib iter gen))

View file

@ -1,6 +1,6 @@
(test
(name t)
(flags :standard -strict-sequence -warn-error -a+8 -open CCShims_)
(modes native)
(modes (best exe))
(package containers-thread)
(libraries containers containers-thread containers_testlib iter threads))