https://gitlab.com/tezos/tezos
Raw File
Tip revision: acf1ca896cfbdc02e73ca64b17c12a0ff95e14ff authored by Luciano Freitas on 28 March 2024, 13:56:02 UTC
MIR: include path to wrap parameters in entrypoints
Tip revision: acf1ca8
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