https://gitlab.com/tezos/tezos
Raw File
Tip revision: e1dc9c51e1ab1a6387befbd8b51b096ff00735eb authored by François Thiré on 08 March 2024, 12:50:35 UTC
Key_value_store: Reimplement `value_exist`
Tip revision: e1dc9c5
dune
; This file was automatically generated, do not edit.
; Edit file manifest/main.ml instead.

(library
 (name src_lib_workers_test_tezt_lib)
 (instrumentation (backend bisect_ppx))
 (libraries
  tezt.core
  octez-libs.stdlib
  octez-libs.stdlib-unix
  octez-libs.base
  octez-libs.tezos-workers
  octez-libs.test-helpers
  octez-libs.base-test-helpers
  octez-alcotezt)
 (library_flags (:standard -linkall))
 (flags
  (:standard)
  -open Tezt_core
  -open Tezt_core.Base
  -open Tezos_stdlib
  -open Tezos_stdlib_unix
  -open Tezos_base
  -open Tezos_base.TzPervasives
  -open Tezos_base.Worker_types
  -open Tezos_workers
  -open Tezos_test_helpers
  -open Tezos_base_test_helpers
  -open Octez_alcotezt)
 (modules mocked_worker test_workers_unit))

(executable
 (name main)
 (instrumentation (backend bisect_ppx --bisect-sigterm))
 (libraries
  src_lib_workers_test_tezt_lib
  tezt)
 (modules main))

(rule
 (alias runtest)
 (package octez-libs)
 (enabled_if (<> false %{env:RUNTEZTALIAS=true}))
 (action (run %{dep:./main.exe})))

(rule
 (targets main.ml)
 (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()"))))
back to top