https://gitlab.com/tezos/tezos
Raw File
Tip revision: 184d3d7468cd633d56954a1cb592758fbbac3312 authored by Jun Furuse on 23 August 2023, 22:45:44 UTC
Benchmark: introduces Ast module for code optimization
Tip revision: 184d3d7
dune
; This file was automatically generated, do not edit.
; Edit file manifest/main.ml instead.

(library
 (name src_proto_alpha_lib_delegate_test_tezt_lib)
 (instrumentation (backend bisect_ppx))
 (libraries
  tezt.core
  octez-libs.tezos-base
  octez-libs.tezos-micheline
  tezos-client-alpha
  tezos-protocol-alpha
  octez-libs.tezos-base-test-helpers
  tezos-baking-alpha.mockup-simulator
  tezos-baking-alpha
  tezos-protocol-alpha.parameters
  octez-libs.tezos-crypto
  octez-alcotezt
  uri)
 (library_flags (:standard -linkall))
 (flags
  (:standard)
  -open Tezt_core
  -open Tezt_core.Base
  -open Tezos_base.TzPervasives
  -open Tezos_base.TzPervasives.Error_monad.Legacy_monad_globals
  -open Tezos_micheline
  -open Tezos_client_alpha
  -open Tezos_protocol_alpha
  -open Tezos_base_test_helpers
  -open Tezos_alpha_mockup_simulator
  -open Tezos_baking_alpha
  -open Octez_alcotezt)
 (modules test_scenario))

(executable
 (name main)
 (instrumentation (backend bisect_ppx --bisect-sigterm))
 (libraries
  src_proto_alpha_lib_delegate_test_tezt_lib
  tezt)
 (link_flags
  (:standard)
  (:include %{workspace_root}/macos-link-flags.sexp))
 (modules main))

(rule
 (alias runtest)
 (package tezos-baking-alpha)
 (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