diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 61e23dbbc905ca0e9877d32b69aad10701e90ad2..2d39666b651055d573233202b06abffdfe18e9ff 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,6 +47,12 @@ variables: # this setting cuts cache creation time. FF_USE_FASTZIP: "true" + # If RUNTEZTALIAS is true, then Tezt tests are included in the @runtest + # alias. We set it to false to deactivate these tests in the unit + # test jobs, as they already run in the Tezt jobs. It is set to true + # in the opam jobs where we want to run the tests --with-test. + RUNTEZTALIAS: "false" + # Image templates .image_template__runtime_build_e2etest_dependencies_template: image: ${build_deps_image_name}:runtime-build-e2etest-dependencies--${build_deps_image_version} diff --git a/.gitlab/ci/jobs/coverage/coverage.yml b/.gitlab/ci/jobs/coverage/coverage.yml index 9e30a4e2339c0a6e892a928cc3a392c2a951f7f9..b5b5d8c175d8f8d5370199da2dace75935a14211 100644 --- a/.gitlab/ci/jobs/coverage/coverage.yml +++ b/.gitlab/ci/jobs/coverage/coverage.yml @@ -56,7 +56,6 @@ unified_coverage: - "tezt 39/40" - "tezt 40/40" - "unit:non-proto-x86_64" - - "unit:lib-store-unix" script: # On the development branches, we compute coverage - ./scripts/ci/report_coverage.sh diff --git a/.gitlab/ci/jobs/packaging/opam_prepare.yml b/.gitlab/ci/jobs/packaging/opam_prepare.yml index 1313e4a4d272eb9d2b9ef72564657cd2edea7a01..62d69117eb8563ea14cd8f5d3ac31146573258a7 100644 --- a/.gitlab/ci/jobs/packaging/opam_prepare.yml +++ b/.gitlab/ci/jobs/packaging/opam_prepare.yml @@ -23,6 +23,8 @@ - opam_logs/ expire_in: 1 week when: always + variables: + RUNTEZTALIAS: "true" opam:prepare: extends: diff --git a/.gitlab/ci/jobs/test/unit.yml b/.gitlab/ci/jobs/test/unit.yml index e96bca060e13b61fd7c8325c9223b83b1e4afbc6..99fb86f5a2de2f7cd59566b6630dce76adea4880 100644 --- a/.gitlab/ci/jobs/test/unit.yml +++ b/.gitlab/ci/jobs/test/unit.yml @@ -47,12 +47,6 @@ unit:non-proto-x86_64: variables: MAKE_TARGETS: test-nonproto-unit -unit:lib-store-unix: - extends: - - .unit_test_template_x86_64_coverage - variables: - MAKE_TARGETS: test-lib-store-unit - unit:webassembly-x86_64: extends: - .unit_test_template_x86_64 diff --git a/Makefile b/Makefile index f838b26687c562b197dc140b9b61938c071886b4..e1b700fed4184eb68efad7fc9724bc4893c45a9e 100644 --- a/Makefile +++ b/Makefile @@ -273,19 +273,10 @@ test-unit-alpha: @dune build --profile=$(PROFILE) @src/proto_alpha/lib_protocol/runtest # TODO: https://gitlab.com/tezos/tezos/-/issues/5377 -# Running the runtest/runtezt targets in parallel causes a hang. Until we find the cause, -# we run the targets sequentially. +# Running the runtest_js targets intermittently hangs. .PHONY: test-js test-js: @dune build --error-reporting=twice @runtest_js - @dune build --error-reporting=twice @runtezt_js - -# separate job to use tezt with js. Eventually should be merged with -# the job about (test-js) . For the moment this is not run in the CI -# TODO: https://gitlab.com/tezos/tezos/-/issues/5377 -.PHONY: tezt-js -tezt-js: - @dune build --error-reporting=twice @runtezt_js .PHONY: build-tezt build-tezt: diff --git a/docs/developer/alcotezt.rst b/docs/developer/alcotezt.rst index c6f89c96942e5c5e00973648cfab1f9aa14aead5..0aadfd5be34f68125d803e04220e5e51c1692f74 100644 --- a/docs/developer/alcotezt.rst +++ b/docs/developer/alcotezt.rst @@ -13,12 +13,10 @@ function. This will: - Create a *test library* that registers the tests in the modules given as argument to ``tezt``. - - Create a *runner executable* ``main.exe`` in the test folder. The - runner links with the test library and consists of a single call to + - Create a *test executable* ``main.exe`` in the test folder. The + test executable links with the test library and consists of a single call to Tezt's `Test.run `__. - - Add a ``runtezt`` alias in the Dune file of the test target that - executes the runner. - Finally, link the test library with Tezt's main entrypoint at ``tezt/tests/main.exe`` so that it registers all Alcotezts. @@ -33,15 +31,15 @@ For a given folder ``$TEST_DIR``, the Alcotezts contained therein can be invoked Manifest. Through ``dune``, this is done with ``dune exec $TEST_DIR/main.exe``. This will execute the tests in ``$TEST_DIR`` (but not in its subdirectories). - 2. Through Dune, by building the ``runtezt`` alias in the test target - folder. That is, executing ``dune build @$TEST_DIR/runtezt``. + 2. Through Dune, by building the ``runtest`` alias in the test target + folder. That is, executing ``dune build @$TEST_DIR/runtest``. This will execute the tests in ``$TEST_DIR`` and its subdirectories. 3. By executing the full Tezt test suite, via the main entrypoint at ``tezt/tests/main.exe``. Through Dune, this is done with ``dune exec tezt/tests/main.exe``. -Execution through the ``main.exe`` runner -+++++++++++++++++++++++++++++++++++++++++ +Execution through the test executable ++++++++++++++++++++++++++++++++++++++ The advantage of passing through the Manifest-generated runner is that it only depends on the tests themselves and the tested modules (and @@ -59,17 +57,24 @@ arguments to Tezt, append ``-- `` to the above command:: dune exec src/lib_clic/test/main.exe -- --list -Execution through the Dune ``runtezt`` alias +Execution through the Dune ``runtest`` alias ++++++++++++++++++++++++++++++++++++++++++++ -The Manifest-generated ``runtezt`` alias can be used to execute all -Alcotezts in a folder and its sub-folders, recursively. For example, -to run all Alcotezts of protocol Alpha, run:: +The ``runtest`` alias can be used to execute all tests, including +Alcotezts, in a folder and its recursive sub-folders. For example, to +run all tests of protocol Alpha, run:: - dune build @src/proto_alpha/runtezt + dune build @src/proto_alpha/runtest On the other hand, there is no convenient way to pass arguments to the -underlying Tezt binaries with this method. +underlying tests with this method. + +The Alcotezts can be dynamically disabled in the ``runtest`` alias by +setting the environment variable ``RUNTEZTALIAS`` to ``false``. For +instance, to run all the unit tests in protocol Alpha exception the +Alcotezts, you can run:: + + RUNTEZTALIAS=false dune build @src/proto_alpha/runtest Execution through the Tezt main entrypoint ++++++++++++++++++++++++++++++++++++++++++ @@ -157,15 +162,10 @@ There is no way to redirect the output of ``Printf``. Consequently, the output of Alcotezts that call this module directly cannot be hidden. -The ``runtest``/``runtezt`` aliases -+++++++++++++++++++++++++++++++++++ - -Alcotezts *are not* registered as a dependency on the ``runtest`` -alias. This is to avoid executing them when invoking other test -frameworks through the ``runtest`` alias in the CI. -That is, ``dune runtest $TEST_DIR`` will not -execute any Alcotezt contained in ``$TEST_DIR``. +Integration with the ``runtest`` aliases +++++++++++++++++++++++++++++++++++++++++ -Instead, Alcotezts registered through manifest create an alias ``runtezt``, that can be -used with ``dune build @$TEST_DIR/runtezt``, or one of the other methods described :ref:`above -`. +Alcotezts are registered as a dependency on the ``runtest`` +alias. However, they are not executed through this alias in +the CI. Instead, they run through the Tezt main runner to enable load +balancing. diff --git a/docs/developer/testing.rst b/docs/developer/testing.rst index 90dc19809176022e72a47e80f6366dd578be759e..6525523bb93ff0b567e5d4bf30b30561957bae35 100644 --- a/docs/developer/testing.rst +++ b/docs/developer/testing.rst @@ -198,8 +198,8 @@ Typical use cases: - Conversion of pre-existing Alcotests to Tezt Example tests: - - Unit tests for :package:`tezos-clic`. To execute them locally, run ``dune build @src/lib_clic/runtezt``. - - Unit tests for :package:`tezos-version`. To execute them locally, run ``dune build @src/lib_version/runtezt``. + - Unit tests for :package:`tezos-clic`. To execute them locally, run ``dune build @src/lib_clic/runtest``. + - Unit tests for :package:`tezos-version`. To execute them locally, run ``dune build @src/lib_version/runtest``. See :doc:`alcotezt` for more information on how to convert tests to Alcotezt, and how to execute them. diff --git a/docs/developer/tezt.rst b/docs/developer/tezt.rst index e87325588592e3eff1a51bf302db86729bc3ec80..1ab4cc4627456fde1d9375c1608711079186cba2 100644 --- a/docs/developer/tezt.rst +++ b/docs/developer/tezt.rst @@ -248,10 +248,10 @@ Then, declare those files in ``manifest/main.ml``:: ~deps:[octez_base] This causes the manifest to generate executable ``src/lib_base/tezt/main.exe`` for you. -This executable calls ``Test.run``. It also declares a Dune alias ``runtezt`` +This executable calls ``Test.run``. It also declares a Dune alias ``runtest`` so that you can run your tests with either of the following commands:: - dune build @src/lib_base/runtezt + dune build @src/lib_base/runtest dune exec src/lib_base/tezt/main.exe Note that your tests will actually also be available in ``tezt/tests/main.exe``. diff --git a/manifest/main.ml b/manifest/main.ml index 850b9b4c045cd65fce524ee7932fae999a520491..96446244d8a6711626ad16948224357572af6437 100644 --- a/manifest/main.ml +++ b/manifest/main.ml @@ -4862,7 +4862,7 @@ end = struct but the test uses absolute paths to find those files (thanks to [DUNE_SOURCEROOT] and [Filename.dirname __FILE__]), so those copies are not actually used. This is needed so that the test - can be run either with [dune build @runtezt], + can be run either with [dune build @runtest], with [dune exec src/proto_alpha/lib_protocol/test/regression/main.exe], or with [dune exec tezt/tests/main.exe -- -f test_logging.ml]. *) let _ = diff --git a/manifest/manifest.ml b/manifest/manifest.ml index 116e62fa47498b66eed2e5a35031456cc2d6e8b4..f64c4fb7180f54dd6a1857e8407d290295c2d566 100644 --- a/manifest/manifest.ml +++ b/manifest/manifest.ml @@ -295,7 +295,7 @@ module Dune = struct ] let alias_rule ?(deps = Stdlib.List.[]) ?(alias_deps = Stdlib.List.[]) - ?deps_dune ?action ?locks ?package name = + ?deps_dune ?action ?locks ?package ?enabled_if name = let deps = match (deps, alias_deps, deps_dune) with | _ :: _, _, Some _ | _, _ :: _, Some _ -> @@ -314,6 +314,7 @@ module Dune = struct (opt package @@ fun x -> [S "package"; S x]); (match deps with [] -> E | _ -> S "deps" :: deps); (opt locks @@ fun locks -> [S "locks"; S locks]); + (opt enabled_if @@ fun enabled_if -> [S "enabled_if"; enabled_if]); [ S "action"; (match action with None -> [S "progn"] | Some action -> action); @@ -330,8 +331,8 @@ module Dune = struct let glob_files_rec expr = [S "glob_files_rec"; S expr] - let runtest ?(alias = "runtest") ?action ?package ?locks ~dep_files ~dep_globs - ~dep_globs_rec name = + let runtest ?(alias = "runtest") ?action ?package ?locks ?enabled_if + ~dep_files ~dep_globs ~dep_globs_rec name = let deps_dune = let files = List.map (fun s -> S s) dep_files in let globs = List.map glob_files dep_globs in @@ -343,16 +344,17 @@ module Dune = struct let action = Option.value ~default:[S "run"; S ("%{dep:./" ^ name ^ ".exe}")] action in - alias_rule alias ?package ?deps_dune ?locks ~action + alias_rule alias ?package ?deps_dune ?locks ?enabled_if ~action - let runtest_js ?(alias = "runtest_js") ?package ?locks ~dep_files ~dep_globs - ~dep_globs_rec name = + let runtest_js ?(alias = "runtest_js") ?package ?locks ?enabled_if ~dep_files + ~dep_globs ~dep_globs_rec name = let action = [S "run"; S "node"; S ("%{dep:./" ^ name ^ ".bc.js}")] in runtest ~alias ~action ?package ?locks + ?enabled_if ~dep_files ~dep_globs ~dep_globs_rec @@ -1008,6 +1010,7 @@ module Target = struct names : string Ne_list.t; runtest_alias : string option; locks : string option; + enabled_if : Dune.s_expr option; } type preprocessor_dep = File of string @@ -1534,8 +1537,9 @@ module Target = struct | Some modes -> List.mem Dune.Native modes in match (kind, opam, dep_files) with - | Test_executable {names; runtest_alias = Some alias; locks}, package, _ - -> + | ( Test_executable {names; runtest_alias = Some alias; locks; enabled_if}, + package, + _ ) -> let runtest_js_rules = if run_js then List.map @@ -1546,6 +1550,7 @@ module Target = struct ~dep_globs ~dep_globs_rec ?locks + ?enabled_if ?package name) (Ne_list.to_list names) @@ -1561,13 +1566,15 @@ module Target = struct ~dep_globs ~dep_globs_rec ?locks + ?enabled_if ?package name) (Ne_list.to_list names) else [] in runtest_rules @ runtest_js_rules - | ( Test_executable {names = name, _; runtest_alias = None; locks = _}, + | ( Test_executable + {names = name, _; runtest_alias = None; locks = _; enabled_if = _}, _, _ :: _ ) -> invalid_argf @@ -1685,18 +1692,30 @@ module Target = struct | [] -> invalid_argf "Target.private_exes: at least one name must be given" | head :: tail -> Private_executable (head, tail) - let test ?(alias = "runtest") ?dep_files ?dep_globs ?dep_globs_rec ?locks = + let test ?(alias = "runtest") ?dep_files ?dep_globs ?dep_globs_rec ?locks + ?enabled_if = + (match (alias, enabled_if, locks) with + | "", Some _, _ | "", _, Some _ -> + invalid_arg + "Target.tests: cannot specify enabled_if or locks without alias" + | _ -> ()) ; let runtest_alias = if alias = "" then None else Some alias in internal ?dep_files ?dep_globs ?dep_globs_rec @@ fun test_name -> - Test_executable {names = (test_name, []); runtest_alias; locks} + Test_executable {names = (test_name, []); runtest_alias; locks; enabled_if} - let tests ?(alias = "runtest") ?dep_files ?dep_globs ?dep_globs_rec ?locks = + let tests ?(alias = "runtest") ?dep_files ?dep_globs ?dep_globs_rec ?locks + ?enabled_if = + (match (alias, enabled_if, locks) with + | "", Some _, _ | "", _, Some _ -> + invalid_arg + "Target.tests: cannot specify enabled_if or locks without alias" + | _ -> ()) ; let runtest_alias = if alias = "" then None else Some alias in internal ?dep_files ?dep_globs ?dep_globs_rec @@ fun test_names -> match test_names with | [] -> invalid_arg "Target.tests: at least one name must be given" | head :: tail -> - Test_executable {names = (head, tail); runtest_alias; locks} + Test_executable {names = (head, tail); runtest_alias; locks; enabled_if} let vendored_lib ?(released_on_opam = true) ?main_module ?(js_compatible = false) ?(npm_deps = []) name version = @@ -1900,7 +1919,14 @@ let register_tezt_targets ~make_tezt_exe = let (_ : Target.t option) = Target.test exe_name - ~alias:"runtezt" + (* Tezts can be deselected from the runtest alias by setting + the environment variable [RUNTEZTALIAS] to [false]. If + this environment variable is unset, or set to any value + other than [false], then they are selected. + + For more info on [%{env:VAR=VAL}] see + https://dune.readthedocs.io/en/stable/concepts.html#variables *) + ~enabled_if:Dune.[S "<>"; S "false"; S "%{env:RUNTEZTALIAS=true}"] ~path ~with_macos_security_framework ~opam diff --git a/manifest/manifest.mli b/manifest/manifest.mli index e61d68dd85f0d972130cc434462b16e90f65d58f..1bd153333567210658e69b26b3e5560afc1e2167 100644 --- a/manifest/manifest.mli +++ b/manifest/manifest.mli @@ -142,6 +142,8 @@ module Dune : sig This is important in particular for [runtest] rules, so that dune knows which tests to run when opam runs the tests for a package. + - [enabled_if] specifies the Dune [enabled_if] clause of this rule. + The last [string] argument is the name of the alias. For instance, if this name is [abc], you can build the rule with [dune build @abc]. *) val alias_rule : @@ -151,6 +153,7 @@ module Dune : sig ?action:s_expr -> ?locks:string -> ?package:string -> + ?enabled_if:s_expr -> string -> s_expr @@ -889,8 +892,8 @@ val private_exes : string list maker - [alias]: if non-empty, an alias is set up for the given test, named [alias]. Default is ["runtest"]. Note that for JS tests, ["_js"] is appended to this alias. Also note that if [alias] is non-empty, the target must belong to an opam package - (i.e. [~opam] must also be non-empty). If given, [locks] is set for this alias - (see {!Dune.alias_rule} for more information). + (i.e. [~opam] must also be non-empty). If given, the [enabled_if] and/or [locks] + clauses are added to this alias. - [dep_files]: a list of files to add as dependencies using [(deps (file ...))] in the [runtest] alias. @@ -909,6 +912,7 @@ val test : ?dep_globs:string list -> ?dep_globs_rec:string list -> ?locks:string -> + ?enabled_if:Dune.s_expr -> string maker (** Same as {!test} but with several names, to define multiple tests at once. *) @@ -918,6 +922,7 @@ val tests : ?dep_globs:string list -> ?dep_globs_rec:string list -> ?locks:string -> + ?enabled_if:Dune.s_expr -> string list maker (** Register a Tezt test. diff --git a/opam/octez-bls12-381-polynomial.opam b/opam/octez-bls12-381-polynomial.opam index 2ef284e3f9eec603306e61717eac13accb5171ac..0130813c0668a58ac769122167a4a910e104206c 100644 --- a/opam/octez-bls12-381-polynomial.opam +++ b/opam/octez-bls12-381-polynomial.opam @@ -23,6 +23,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Polynomials over BLS12-381 finite field - Temporary vendored version of Octez" diff --git a/opam/octez-polynomial.opam b/opam/octez-polynomial.opam index e2a19e799ea86407060a1b17130ee531647200e2..31e463c35d715fa8a2c763505811201aac38d46f 100644 --- a/opam/octez-polynomial.opam +++ b/opam/octez-polynomial.opam @@ -21,6 +21,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Polynomials over finite fields" diff --git a/opam/tezos-baking-016-PtMumbai.opam b/opam/tezos-baking-016-PtMumbai.opam index 13edf2584578df6f3e12cecb1641c2db98248b0b..8baedc8cd0121184a2fdf2d96b0c4017b2a51406 100644 --- a/opam/tezos-baking-016-PtMumbai.opam +++ b/opam/tezos-baking-016-PtMumbai.opam @@ -46,6 +46,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: base library for `tezos-baker/accuser`" diff --git a/opam/tezos-baking-017-PtNairob.opam b/opam/tezos-baking-017-PtNairob.opam index 131b95b09d273c60f000e3770d076b7caa098a7f..b31a406e50e7d8a4eeab7c1d962bbdeaa0d1a2a8 100644 --- a/opam/tezos-baking-017-PtNairob.opam +++ b/opam/tezos-baking-017-PtNairob.opam @@ -47,6 +47,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: base library for `tezos-baker/accuser`" diff --git a/opam/tezos-baking-alpha.opam b/opam/tezos-baking-alpha.opam index 208f5a1f6a7cc293f613f794db6d5bcf026f9f4b..baa7a5e40733661930bf7d1dc4db0b9bbece4d4b 100644 --- a/opam/tezos-baking-alpha.opam +++ b/opam/tezos-baking-alpha.opam @@ -47,6 +47,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: base library for `tezos-baker/accuser`" diff --git a/opam/tezos-base.opam b/opam/tezos-base.opam index 11bc5d5371e411a02390d7b6cc3c254e468977c4..475b3c29655de1ca8162a6f2217c9bb1891fde45 100644 --- a/opam/tezos-base.opam +++ b/opam/tezos-base.opam @@ -33,6 +33,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: meta-package and pervasive type definitions for Tezos" diff --git a/opam/tezos-benchmark-tests.opam b/opam/tezos-benchmark-tests.opam index 068c5e5a13ab8f82d2cf3737e8973b23d33be0e5..5791b3cecc63da655d0ebb745ce9e08a21b58b3e 100644 --- a/opam/tezos-benchmark-tests.opam +++ b/opam/tezos-benchmark-tests.opam @@ -23,6 +23,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: tests for lib-benchmarks" diff --git a/opam/tezos-clic.opam b/opam/tezos-clic.opam index 97673e8c15f1e688f41179185c93526dc88d77d7..fb8da3b0ed057f9285a78f19eff1e409e9454ff4 100644 --- a/opam/tezos-clic.opam +++ b/opam/tezos-clic.opam @@ -23,6 +23,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library of auto-documented command-line-parsing combinators" diff --git a/opam/tezos-client-016-PtMumbai.opam b/opam/tezos-client-016-PtMumbai.opam index da8eb2579684ca37fe80b27269acbd6446aa1fc7..bcdc209fa226ad61f2364c1bf158b702f7db42b6 100644 --- a/opam/tezos-client-016-PtMumbai.opam +++ b/opam/tezos-client-016-PtMumbai.opam @@ -41,6 +41,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-017-PtNairob.opam b/opam/tezos-client-017-PtNairob.opam index 8f535f3adb7a0d53b83852f5d0ce0aa98c5e4877..3005825c56f3fb87c6a4236b0d999590ebb190e1 100644 --- a/opam/tezos-client-017-PtNairob.opam +++ b/opam/tezos-client-017-PtNairob.opam @@ -41,6 +41,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-alpha.opam b/opam/tezos-client-alpha.opam index 952f469ce90f21a45e82f566f22f930913f5dcbb..547eb8b66614d9815cd9470b037baee82b902a7d 100644 --- a/opam/tezos-client-alpha.opam +++ b/opam/tezos-client-alpha.opam @@ -41,6 +41,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-base-unix.opam b/opam/tezos-client-base-unix.opam index 2be528812529f24ac1a30957e86495bc893174a8..891d347e6c638ac2fee96a1ef2dcf885fe04a69f 100644 --- a/opam/tezos-client-base-unix.opam +++ b/opam/tezos-client-base-unix.opam @@ -34,6 +34,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: common helpers for `tezos-client` (unix-specific fragment)" diff --git a/opam/tezos-client-base.opam b/opam/tezos-client-base.opam index 0d47055b3b5cbbb9b1bfaf2007b1462b8a257fc8..3c5da340b0647e5df23df29019535e35a11ed897 100644 --- a/opam/tezos-client-base.opam +++ b/opam/tezos-client-base.opam @@ -23,6 +23,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: common helpers for `tezos-client`" diff --git a/opam/tezos-context.opam b/opam/tezos-context.opam index 6bdbf4b6762da9496d65763b4ed8300a17698b7e..4e2ab17a0a244bced08f42a5625503f65157efcc 100644 --- a/opam/tezos-context.opam +++ b/opam/tezos-context.opam @@ -30,6 +30,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: on-disk context abstraction for `octez-node`" diff --git a/opam/tezos-crypto-dal.opam b/opam/tezos-crypto-dal.opam index b4d4565ee8e1fb29a20e6161917f304f5830ba04..8f60a186c26de57bc87b604e9677996289021cdc 100644 --- a/opam/tezos-crypto-dal.opam +++ b/opam/tezos-crypto-dal.opam @@ -25,6 +25,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "DAL cryptographic primitives" diff --git a/opam/tezos-crypto.opam b/opam/tezos-crypto.opam index 63e228f31d622182c634c37017dba584067d2545..b18acc7cbb9eda2cac7eaab836be3b6710bdd8cd 100644 --- a/opam/tezos-crypto.opam +++ b/opam/tezos-crypto.opam @@ -32,6 +32,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library with all the cryptographic primitives used by Tezos" diff --git a/opam/tezos-dac-017-PtNairob.opam b/opam/tezos-dac-017-PtNairob.opam index 1c6fd1dc4a21d9d21b6ef056f49da002711f30a0..faac988bb31e5a27dcfd27c8a9becb0ee718539a 100644 --- a/opam/tezos-dac-017-PtNairob.opam +++ b/opam/tezos-dac-017-PtNairob.opam @@ -29,6 +29,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for the Data availability Committee" diff --git a/opam/tezos-dac-alpha.opam b/opam/tezos-dac-alpha.opam index c9455e166f1b20a3c1aac0bf03733a605e9a2a51..5881dfe29b6f17d0cf60d3e297aee5a20726e60f 100644 --- a/opam/tezos-dac-alpha.opam +++ b/opam/tezos-dac-alpha.opam @@ -29,6 +29,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for the Data availability Committee" diff --git a/opam/tezos-dac-node-lib-test.opam b/opam/tezos-dac-node-lib-test.opam index 655542591eb550ae682f54b544630f4216965318..71e5c5b068db85edc2b858ef2a71ca0f8cb5e7e5 100644 --- a/opam/tezos-dac-node-lib-test.opam +++ b/opam/tezos-dac-node-lib-test.opam @@ -23,6 +23,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Test for dac node lib" diff --git a/opam/tezos-dal-016-PtMumbai.opam b/opam/tezos-dal-016-PtMumbai.opam index 605da522474bb223f6cc1351e58fe91677d3abf5..595346daf66a48f663978549fcb1392410e73bf0 100644 --- a/opam/tezos-dal-016-PtMumbai.opam +++ b/opam/tezos-dal-016-PtMumbai.opam @@ -29,6 +29,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for the Data availability Layer" diff --git a/opam/tezos-dal-017-PtNairob.opam b/opam/tezos-dal-017-PtNairob.opam index 16046a2bfa47b448c0648c34aae49a5f3573f560..a70f0de5fb13a678e738efe15ce1daa3979ffdeb 100644 --- a/opam/tezos-dal-017-PtNairob.opam +++ b/opam/tezos-dal-017-PtNairob.opam @@ -29,6 +29,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for the Data availability Layer" diff --git a/opam/tezos-dal-alpha.opam b/opam/tezos-dal-alpha.opam index d1f462a1a2ff1fa867d5f5ef9214e749355a778d..1e7785e7fc03fe41d860a9b3236410ca34b6a21b 100644 --- a/opam/tezos-dal-alpha.opam +++ b/opam/tezos-dal-alpha.opam @@ -29,6 +29,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for the Data availability Layer" diff --git a/opam/tezos-error-monad.opam b/opam/tezos-error-monad.opam index 6f31fd2ec82422a802e33a2d527b0a766529779f..bd2d13e4c11e556371dc231e77e1a555f9b57657 100644 --- a/opam/tezos-error-monad.opam +++ b/opam/tezos-error-monad.opam @@ -25,6 +25,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: error monad" diff --git a/opam/tezos-hacl.opam b/opam/tezos-hacl.opam index 8696b7582c7a485a95224fb248e94b7cf6d4e5c7..3650934659435dad8a36a616da6102622b1565c9 100644 --- a/opam/tezos-hacl.opam +++ b/opam/tezos-hacl.opam @@ -33,6 +33,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: thin layer around hacl-star" diff --git a/opam/tezos-layer2-store.opam b/opam/tezos-layer2-store.opam index 8fc4e21628606fa14f0ea914be22c891b315d4f6..d1f880b5386aaf0bf01c0c3219278e9d8d467b81 100644 --- a/opam/tezos-layer2-store.opam +++ b/opam/tezos-layer2-store.opam @@ -29,6 +29,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: layer2 storage utils" diff --git a/opam/tezos-lazy-containers-tests.opam b/opam/tezos-lazy-containers-tests.opam index 3013dd304e5d58d69206af2087aafae99528df0d..eb2f132ea37bc84d7cc0df5b362f4e752234b798 100644 --- a/opam/tezos-lazy-containers-tests.opam +++ b/opam/tezos-lazy-containers-tests.opam @@ -21,6 +21,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Various tests for the lazy containers library" diff --git a/opam/tezos-lwt-result-stdlib.opam b/opam/tezos-lwt-result-stdlib.opam index 4407cba3664c8ecad7c50852adb152d5a6ce4865..c4cbaa485b1c404c8f698cfbac3d7089d91603e4 100644 --- a/opam/tezos-lwt-result-stdlib.opam +++ b/opam/tezos-lwt-result-stdlib.opam @@ -21,6 +21,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] { with-test & arch != "arm32" & arch != "x86_32" } - ["dune" "build" "@runtezt" "-p" name "-j" jobs] { with-test & arch != "arm32" & arch != "x86_32" } ] synopsis: "Tezos: error-aware stdlib replacement" diff --git a/opam/tezos-micheline-rewriting.opam b/opam/tezos-micheline-rewriting.opam index a7640e10850d1aa914b27a7fe21ef93ba28394a3..0fc2f0f9d3d31b1f47ce0437f94393c211aa0d87 100644 --- a/opam/tezos-micheline-rewriting.opam +++ b/opam/tezos-micheline-rewriting.opam @@ -24,6 +24,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library for rewriting Micheline expressions" diff --git a/opam/tezos-mockup.opam b/opam/tezos-mockup.opam index cd344f16d2e9123537937cda5044e872574b7625..aafa484a0df48961e4a400e6ea973809e8970754 100644 --- a/opam/tezos-mockup.opam +++ b/opam/tezos-mockup.opam @@ -32,6 +32,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library of auto-documented RPCs (mockup mode)" diff --git a/opam/tezos-p2p.opam b/opam/tezos-p2p.opam index 3eee0862e8b712ad2fd6639fe87f85c858492842..636d526a8b9a73bc8c9073a98402d7fed529d8a3 100644 --- a/opam/tezos-p2p.opam +++ b/opam/tezos-p2p.opam @@ -32,6 +32,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library for a pool of P2P connections" diff --git a/opam/tezos-protocol-016-PtMumbai-tests.opam b/opam/tezos-protocol-016-PtMumbai-tests.opam index 3758ea31f2d1b7d5a32bf95f9abdbdc38d849e4b..51e055e80dfe0b21f5a7666e88f43f1adebd1b94 100644 --- a/opam/tezos-protocol-016-PtMumbai-tests.opam +++ b/opam/tezos-protocol-016-PtMumbai-tests.opam @@ -40,6 +40,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: tests for economic-protocol definition" diff --git a/opam/tezos-protocol-017-PtNairob-tests.opam b/opam/tezos-protocol-017-PtNairob-tests.opam index 76e17a834c18924ae64a34ea13acc4e7079311c7..24e6dc306f5374ddfb876dd89bd1a36149f21fda 100644 --- a/opam/tezos-protocol-017-PtNairob-tests.opam +++ b/opam/tezos-protocol-017-PtNairob-tests.opam @@ -40,6 +40,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: tests for economic-protocol definition" diff --git a/opam/tezos-protocol-alpha-tests.opam b/opam/tezos-protocol-alpha-tests.opam index 2284a347bcd030f0443fde5ad104f0fc4ab0434f..187c709e7090a89690f09e318ece3c79eb8423a8 100644 --- a/opam/tezos-protocol-alpha-tests.opam +++ b/opam/tezos-protocol-alpha-tests.opam @@ -40,6 +40,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: tests for economic-protocol definition" diff --git a/opam/tezos-protocol-environment.opam b/opam/tezos-protocol-environment.opam index 7f3a76a9c833337c14a0d981764ccfd731f982b1..311f64d40928d7f4217eee117667ab239009048a 100644 --- a/opam/tezos-protocol-environment.opam +++ b/opam/tezos-protocol-environment.opam @@ -38,7 +38,6 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Interface layer between the protocols and the shell" description: "The protocol-environment is a two-sided component sitting between the shell and diff --git a/opam/tezos-protocol-plugin-016-PtMumbai-tests.opam b/opam/tezos-protocol-plugin-016-PtMumbai-tests.opam index 0c9924353ce57c27c0e43fdebab4c5978b59f255..08253de819e1c38fba08b4c693ed032af5b53e2d 100644 --- a/opam/tezos-protocol-plugin-016-PtMumbai-tests.opam +++ b/opam/tezos-protocol-plugin-016-PtMumbai-tests.opam @@ -26,6 +26,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol plugin tests" diff --git a/opam/tezos-protocol-plugin-017-PtNairob-tests.opam b/opam/tezos-protocol-plugin-017-PtNairob-tests.opam index a035935583199aa17a651c2f9ff734adb3210d37..3422ca9a0473347e8f7b6084a15b204b3a2b43ca 100644 --- a/opam/tezos-protocol-plugin-017-PtNairob-tests.opam +++ b/opam/tezos-protocol-plugin-017-PtNairob-tests.opam @@ -26,6 +26,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol plugin tests" diff --git a/opam/tezos-protocol-plugin-alpha-tests.opam b/opam/tezos-protocol-plugin-alpha-tests.opam index 3e33281722041e6e3a2dc661a574d73b051fe6f6..b63b2cc5e8fc5f28e9b7ffb3e44c083ca67a9049 100644 --- a/opam/tezos-protocol-plugin-alpha-tests.opam +++ b/opam/tezos-protocol-plugin-alpha-tests.opam @@ -26,6 +26,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol plugin tests" diff --git a/opam/tezos-proxy-server-config.opam b/opam/tezos-proxy-server-config.opam index c795f6e3c9f04b6d550e2b6120a3215205462c52..632a24230157ed33cd399334b73fee7f2b96d26d 100644 --- a/opam/tezos-proxy-server-config.opam +++ b/opam/tezos-proxy-server-config.opam @@ -22,6 +22,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: proxy server configuration" diff --git a/opam/tezos-proxy.opam b/opam/tezos-proxy.opam index 8e616003d7b55ddab32b56363038d3305a8d57b4..339d6550ff7a52cf626ece2d4dcbebede0c8bacf 100644 --- a/opam/tezos-proxy.opam +++ b/opam/tezos-proxy.opam @@ -34,6 +34,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: proxy" diff --git a/opam/tezos-requester.opam b/opam/tezos-requester.opam index f390ba8d11084b6d219b25e123eec46acb04676e..93411c7ac107fddf3ac732f6608340af4f522f09 100644 --- a/opam/tezos-requester.opam +++ b/opam/tezos-requester.opam @@ -24,6 +24,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: generic resource fetching service" diff --git a/opam/tezos-rpc-http-server.opam b/opam/tezos-rpc-http-server.opam index 5d29316779273431914e99b4dbb275f97342e848..9a08bf0f2a28a4a53008bbfdfb38a772516e58db 100644 --- a/opam/tezos-rpc-http-server.opam +++ b/opam/tezos-rpc-http-server.opam @@ -27,6 +27,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library of auto-documented RPCs (http server)" diff --git a/opam/tezos-sc-rollup-node-test.opam b/opam/tezos-sc-rollup-node-test.opam index 6f807ae0ba75c5165d1c305300624434d0bff9a2..36772d19d9c451ca02f2fcd0ce5e288f806c1772 100644 --- a/opam/tezos-sc-rollup-node-test.opam +++ b/opam/tezos-sc-rollup-node-test.opam @@ -34,6 +34,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tests for the smart rollup node library" diff --git a/opam/tezos-shell-context-test.opam b/opam/tezos-shell-context-test.opam index c5075c83ae159945f8b1f542f08f6844746a6cb9..176b296bf6f13d84c1412f60756ecd7554e4f37e 100644 --- a/opam/tezos-shell-context-test.opam +++ b/opam/tezos-shell-context-test.opam @@ -21,6 +21,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Testing the Shell Context" diff --git a/opam/tezos-shell-services.opam b/opam/tezos-shell-services.opam index cbb7134383e97b8ed97b9ca46b8067c63e961866..2ac6b9093867da8a3861008ad012af40ca2ed8cb 100644 --- a/opam/tezos-shell-services.opam +++ b/opam/tezos-shell-services.opam @@ -22,6 +22,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: descriptions of RPCs exported by `tezos-shell`" diff --git a/opam/tezos-shell.opam b/opam/tezos-shell.opam index f0cadc09966c43c674dd8a7380d0117305f046e2..3d72479b0808f920282286cdc94f672fe1471fcb 100644 --- a/opam/tezos-shell.opam +++ b/opam/tezos-shell.opam @@ -42,6 +42,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: core of `octez-node` (gossip, validation scheduling, mempool, ...)" diff --git a/opam/tezos-signer-backends.opam b/opam/tezos-signer-backends.opam index 163307e11a7b8a79211fd4000b972d76f3081a00..5944f94b4f373b128b1ba127793b898504d79a8e 100644 --- a/opam/tezos-signer-backends.opam +++ b/opam/tezos-signer-backends.opam @@ -38,6 +38,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: remote-signature backends for `tezos-client`" diff --git a/opam/tezos-stdlib-unix.opam b/opam/tezos-stdlib-unix.opam index 1a90160f004538409f05208eab1a4378ad677eaa..e461e1e6604a5657577424853be6f516d7ca3102 100644 --- a/opam/tezos-stdlib-unix.opam +++ b/opam/tezos-stdlib-unix.opam @@ -35,6 +35,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: yet-another local-extension of the OCaml standard library (unix-specific fragment)" diff --git a/opam/tezos-stdlib.opam b/opam/tezos-stdlib.opam index ca8bdb8b22cb22d93faaca88253113855d6c8108..3183c9a298c3dd66ac09da74f92dd3f865ec22ef 100644 --- a/opam/tezos-stdlib.opam +++ b/opam/tezos-stdlib.opam @@ -27,6 +27,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: yet-another local-extension of the OCaml standard library" diff --git a/opam/tezos-store.opam b/opam/tezos-store.opam index 48006b8c751c8622008833516bd3541f780fcc4b..3c344f3951379df60d8a6f57ba15316181d535b9 100644 --- a/opam/tezos-store.opam +++ b/opam/tezos-store.opam @@ -48,7 +48,6 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: store for `octez-node`" description: "This library provides abstraction for storing and iterating over blocks. diff --git a/opam/tezos-tree-encoding-test.opam b/opam/tezos-tree-encoding-test.opam index 928c1bc74fac066b48c694fe18a14642c0a795e3..e17249b597d900c614e571f96a426acfd9961e60 100644 --- a/opam/tezos-tree-encoding-test.opam +++ b/opam/tezos-tree-encoding-test.opam @@ -24,6 +24,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tests for the tree encoding library" diff --git a/opam/tezos-version.opam b/opam/tezos-version.opam index 38f2358a7b7ddc4f9cb92fbd824f5c3d6c15eccc..0e3e8768f909c0b66bb2bd977017e40849a83e77 100644 --- a/opam/tezos-version.opam +++ b/opam/tezos-version.opam @@ -20,6 +20,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: version information generated from Git" diff --git a/opam/tezos-webassembly-interpreter.opam b/opam/tezos-webassembly-interpreter.opam index 491d3c7137f562f98eb2769d4309bbc419378e82..85e0d0068ab198405b533407d74567764fe15796 100644 --- a/opam/tezos-webassembly-interpreter.opam +++ b/opam/tezos-webassembly-interpreter.opam @@ -23,6 +23,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "WebAssembly reference interpreter with tweaks for Tezos" diff --git a/opam/tezos-workers.opam b/opam/tezos-workers.opam index 69c0dbd304a0894f3b5128b2696743efc6a63f00..77bf229a2615bd773bbd82ad81ff29f1425c1a5d 100644 --- a/opam/tezos-workers.opam +++ b/opam/tezos-workers.opam @@ -22,6 +22,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: worker library" diff --git a/opam/tezt-tezos.opam b/opam/tezt-tezos.opam index d3c4bb2ea9f075bdb8d2aa18aef62f3b37570b43..ff74f320683e693f812f19eedf0722ae2028dbc6 100644 --- a/opam/tezt-tezos.opam +++ b/opam/tezt-tezos.opam @@ -22,6 +22,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos test framework based on Tezt" diff --git a/src/lib_base/test/dune b/src/lib_base/test/dune index 0f40e994fadd146360b19582fb95a6f7b1cb9c71..a65372282770563e746b301b1b5a967e5de0ba2a 100644 --- a/src/lib_base/test/dune +++ b/src/lib_base/test/dune @@ -36,9 +36,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-base) (deps points.ok points.ko) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule @@ -56,9 +57,10 @@ (modules main_js)) (rule - (alias runtezt_js) + (alias runtest_js) (package tezos-base) (deps points.ok points.ko) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run node %{dep:./main_js.bc.js}))) (rule diff --git a/src/lib_base/unix/test/dune b/src/lib_base/unix/test/dune index dbee3d665c981437d5f25f8abc8e76e482a878d9..9cdabb82a3de9787787538d394564277cf76b753 100644 --- a/src/lib_base/unix/test/dune +++ b/src/lib_base/unix/test/dune @@ -40,7 +40,11 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-base) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-base) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_benchmark/lib_micheline_rewriting/test/dune b/src/lib_benchmark/lib_micheline_rewriting/test/dune index d508c8c45fa5671b81dc12e1ee94513a150b127e..c43985e60b77e7c9e548f1e17a6732a3c9319105 100644 --- a/src/lib_benchmark/lib_micheline_rewriting/test/dune +++ b/src/lib_benchmark/lib_micheline_rewriting/test/dune @@ -31,8 +31,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-micheline-rewriting) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_benchmark/test/dune b/src/lib_benchmark/test/dune index 733e5e123934d295f03eb063a4ca87b2c5605a78..875833bc633bf95e2214cc672474899d7e40ff6e 100644 --- a/src/lib_benchmark/test/dune +++ b/src/lib_benchmark/test/dune @@ -38,8 +38,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-benchmark-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_bls12_381_polynomial/test/dune b/src/lib_bls12_381_polynomial/test/dune index 3e87d31f6337ccef20a6f9c022a1db3ce3ad63b4..c7c14563d9463421d0d6320fb352f3a4e6d408dc 100644 --- a/src/lib_bls12_381_polynomial/test/dune +++ b/src/lib_bls12_381_polynomial/test/dune @@ -36,9 +36,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package octez-bls12-381-polynomial) (deps srs_zcash_g1_5) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_clic/test/dune b/src/lib_clic/test/dune index 1aa9985d0d034a00e3eac8b2a9cdf9431f4f9f63..5a051779be4a1f662d69242518a51b412b065e69 100644 --- a/src/lib_clic/test/dune +++ b/src/lib_clic/test/dune @@ -28,7 +28,11 @@ tezt) (modules main)) -(rule (alias runtezt) (package tezos-clic) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-clic) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_client_base/test/dune b/src/lib_client_base/test/dune index 07e58f67869e59c36cd3bd7a79449ede3765bd44..aea92b18dfad9dd59905f2666593effbb0935909 100644 --- a/src/lib_client_base/test/dune +++ b/src/lib_client_base/test/dune @@ -34,8 +34,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-client-base) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule @@ -56,8 +57,9 @@ (modules main_js)) (rule - (alias runtezt_js) + (alias runtest_js) (package tezos-client-base) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run node %{dep:./main_js.bc.js}))) (rule diff --git a/src/lib_client_base_unix/test/dune b/src/lib_client_base_unix/test/dune index 68cac468206704d7334f09887880b49cb79fb322..e63f5950d11af266a4c3fb9fbdcdbd7b2f2189cc 100644 --- a/src/lib_client_base_unix/test/dune +++ b/src/lib_client_base_unix/test/dune @@ -33,8 +33,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-client-base-unix) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_context/memory/test/dune b/src/lib_context/memory/test/dune index 08931b6a9985f30f31c766ceab4094e0665e24ff..12bf98271b44e7a84d0df7805a125e5314dfdb69 100644 --- a/src/lib_context/memory/test/dune +++ b/src/lib_context/memory/test/dune @@ -31,8 +31,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-context) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_context/test/dune b/src/lib_context/test/dune index 5cd9113d2e6441317ed2e896b7bd3b6ae997ff1f..83f86e96779bed6bc5f12e9920db6448bfb86f53 100644 --- a/src/lib_context/test/dune +++ b/src/lib_context/test/dune @@ -36,8 +36,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-context) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_crypto/test-unix/dune b/src/lib_crypto/test-unix/dune index 34eccc1516bbe9d0b4b627200e318f9986fcecd9..32ce59d22e7d787f7fb0d1f9c79422b1f0b812d9 100644 --- a/src/lib_crypto/test-unix/dune +++ b/src/lib_crypto/test-unix/dune @@ -38,7 +38,11 @@ tezt) (modules main)) -(rule (alias runtezt) (package tezos-crypto) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-crypto) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_crypto/test/dune b/src/lib_crypto/test/dune index d27d762c3cafd1efc7940fccc5c3d293c021a198..f748e4468f78d4398c5d7fd9aa40078d3a55c950 100644 --- a/src/lib_crypto/test/dune +++ b/src/lib_crypto/test/dune @@ -55,7 +55,11 @@ tezt) (modules main)) -(rule (alias runtezt) (package tezos-crypto) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-crypto) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) @@ -72,8 +76,9 @@ (modules main_js)) (rule - (alias runtezt_js) + (alias runtest_js) (package tezos-crypto) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run node %{dep:./main_js.bc.js}))) (rule diff --git a/src/lib_crypto_dal/test/dune b/src/lib_crypto_dal/test/dune index 63b7f9f58f2a48de38251394d517cfa57001ed34..7b464a11c4590310f7f93c9230880dea8ed35358 100644 --- a/src/lib_crypto_dal/test/dune +++ b/src/lib_crypto_dal/test/dune @@ -35,9 +35,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-crypto-dal) (deps srs_zcash_g1_5 srs_zcash_g2_5) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_dac_node/test/dune b/src/lib_dac_node/test/dune index 875801c6fd7f3d0093bb6080ce67edd120dfc264..0fe664acf0219e3fae6b087deb6aa54854b1be62 100644 --- a/src/lib_dac_node/test/dune +++ b/src/lib_dac_node/test/dune @@ -40,8 +40,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-dac-node-lib-test) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_error_monad/test/dune b/src/lib_error_monad/test/dune index 3b641a780844310228298fabe15d75b39098f166..0f7955f6cd01aa617f77f0c7775182fd4cd65391 100644 --- a/src/lib_error_monad/test/dune +++ b/src/lib_error_monad/test/dune @@ -32,8 +32,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-error-monad) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule @@ -54,8 +55,9 @@ (modules main_js)) (rule - (alias runtezt_js) + (alias runtest_js) (package tezos-error-monad) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run node %{dep:./main_js.bc.js}))) (rule diff --git a/src/lib_hacl/test/dune b/src/lib_hacl/test/dune index 091b6e7afac974b114b128bd8b2127ec55c7c7e2..dc75e64c51425140667b59620e7015af3b29d883 100644 --- a/src/lib_hacl/test/dune +++ b/src/lib_hacl/test/dune @@ -48,7 +48,11 @@ tezt) (modules main)) -(rule (alias runtezt) (package tezos-hacl) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-hacl) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) @@ -65,8 +69,9 @@ (modules main_js)) (rule - (alias runtezt_js) + (alias runtest_js) (package tezos-hacl) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run node %{dep:./main_js.bc.js}))) (rule diff --git a/src/lib_layer2_store/test/dune b/src/lib_layer2_store/test/dune index 0703c5910ca7dc8caa4c2d4a38d9e75169378fe3..75ce8b12037894df0613e4ffd9adb82a62e01b99 100644 --- a/src/lib_layer2_store/test/dune +++ b/src/lib_layer2_store/test/dune @@ -30,8 +30,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-layer2-store) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_lazy_containers/test/dune b/src/lib_lazy_containers/test/dune index 3d5fe425bc12cca26d88efccfe7078469e676736..921bf116292174aed0884dc109f46c498f2ea6ff 100644 --- a/src/lib_lazy_containers/test/dune +++ b/src/lib_lazy_containers/test/dune @@ -29,8 +29,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-lazy-containers-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_lwt_result_stdlib/test/dune b/src/lib_lwt_result_stdlib/test/dune index 50ef616de6a3a3f6e59c76a0b06d39a97d4297c8..3ecf4d8d1376132169a8b8db5d4fb0c01c5177ff 100644 --- a/src/lib_lwt_result_stdlib/test/dune +++ b/src/lib_lwt_result_stdlib/test/dune @@ -42,8 +42,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-lwt-result-stdlib) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_mockup/test/dune b/src/lib_mockup/test/dune index f62ff0a1581b84d4f81a99d9cee25b9427c207ff..05ff497bc7577cf4a74bf95865ba9a00906e8b85 100644 --- a/src/lib_mockup/test/dune +++ b/src/lib_mockup/test/dune @@ -37,7 +37,11 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-mockup) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-mockup) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_p2p/tezt/dune b/src/lib_p2p/tezt/dune index ee31591ca3b786d269e54f4200c057bc2553a436..09c78a2457c4c940fa4e64e31625b38c2a0eb88f 100644 --- a/src/lib_p2p/tezt/dune +++ b/src/lib_p2p/tezt/dune @@ -40,7 +40,11 @@ tezt) (modules main)) -(rule (alias runtezt) (package tezos-p2p) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-p2p) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_polynomial/test/dune b/src/lib_polynomial/test/dune index 69da6cb80949a01c657e9e25be6e256382168511..9a9b016441673e5d29785899478ce2b37eed3e9a 100644 --- a/src/lib_polynomial/test/dune +++ b/src/lib_polynomial/test/dune @@ -27,8 +27,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package octez-polynomial) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_protocol_environment/test/dune b/src/lib_protocol_environment/test/dune index 5f3fcabf7f460ac9c092ba4ed594fc65a19df656..efdddcba9af5076c881b853e04f63900ced5560e 100644 --- a/src/lib_protocol_environment/test/dune +++ b/src/lib_protocol_environment/test/dune @@ -38,8 +38,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-environment) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_protocol_environment/test_shell_context/dune b/src/lib_protocol_environment/test_shell_context/dune index 1455fd5fc832e09d321b61d012e137f68a5d02d0..1d652f463f138238d870a73b4b19cb462e32a7c4 100644 --- a/src/lib_protocol_environment/test_shell_context/dune +++ b/src/lib_protocol_environment/test_shell_context/dune @@ -31,8 +31,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-shell-context-test) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_proxy/test/dune b/src/lib_proxy/test/dune index 6affb1c9babacbd175faa17a75970d4a132fd11d..c958c42d044ad1be25bfe413147c5091011c8009 100644 --- a/src/lib_proxy/test/dune +++ b/src/lib_proxy/test/dune @@ -43,7 +43,11 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-proxy) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-proxy) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_proxy/test_helpers/shell_services/test/dune b/src/lib_proxy/test_helpers/shell_services/test/dune index f9f357d68e4d0ab1946ab5e3750a8489016508a0..93ed4a083bdce818a5a15e3e9446825932312337 100644 --- a/src/lib_proxy/test_helpers/shell_services/test/dune +++ b/src/lib_proxy/test_helpers/shell_services/test/dune @@ -31,7 +31,11 @@ tezt) (modules main)) -(rule (alias runtezt) (package tezos-proxy) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-proxy) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_proxy_server_config/test/dune b/src/lib_proxy_server_config/test/dune index f330d1754a694739398f782aa82ce6752cf7070d..11d6979570d6ae5bb7b7ad79af957c5c6e2cff95 100644 --- a/src/lib_proxy_server_config/test/dune +++ b/src/lib_proxy_server_config/test/dune @@ -32,8 +32,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-proxy-server-config) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_requester/test/dune b/src/lib_requester/test/dune index 2fb0e8b5e2384abdf44c37976390ba2ce427cd80..79cc6b8fb7a9c5be4db3f858fd4d0939b3c8e218 100644 --- a/src/lib_requester/test/dune +++ b/src/lib_requester/test/dune @@ -37,8 +37,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-requester) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_rpc_http/test/dune b/src/lib_rpc_http/test/dune index 296298decb9c722f203fd88b34db95c17a925fcf..a01a9618a9dada489c4ad14f607959f17af5c8ef 100644 --- a/src/lib_rpc_http/test/dune +++ b/src/lib_rpc_http/test/dune @@ -37,8 +37,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-rpc-http-server) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_sapling/test/dune b/src/lib_sapling/test/dune index f4bbc29bdb52bd4d4fbcb65bcf71525f2408aeac..c957cee7aa17dcb75014f0ef7ad30ff7c73d4801 100644 --- a/src/lib_sapling/test/dune +++ b/src/lib_sapling/test/dune @@ -66,9 +66,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-sapling) (deps vectors.csv vectors-zip32.csv) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_shell/test/dune b/src/lib_shell/test/dune index 5c22cfd320bd1ef362dc2f8467f87a7bc5f68b85..11f1b9be1d3eacc91546fef181bc57d3a7eaeafa 100644 --- a/src/lib_shell/test/dune +++ b/src/lib_shell/test/dune @@ -75,7 +75,11 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-shell) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-shell) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_shell_services/test/dune b/src/lib_shell_services/test/dune index 2ac9f78dfa41418b32257c2f1bd0a9f787c20886..1d113c8ccaf176d29f863bf328e8f05419d54813 100644 --- a/src/lib_shell_services/test/dune +++ b/src/lib_shell_services/test/dune @@ -32,8 +32,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-shell-services) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule @@ -51,8 +52,9 @@ (modules main_js)) (rule - (alias runtezt_js) + (alias runtest_js) (package tezos-shell-services) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run node %{dep:./main_js.bc.js}))) (rule diff --git a/src/lib_signer_backends/test/dune b/src/lib_signer_backends/test/dune index b1d0143323cd94684aa4c0f141dde00ffc8926ea..1d40c19677fdf45fb5be2aef0e49c6143cf1cc5f 100644 --- a/src/lib_signer_backends/test/dune +++ b/src/lib_signer_backends/test/dune @@ -40,8 +40,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-signer-backends) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_signer_backends/unix/test/dune b/src/lib_signer_backends/unix/test/dune index e505661e723d77a67906c5a70cf78d454f7cad87..1a33187268e081baf4e4a6a54615d6b23f265be3 100644 --- a/src/lib_signer_backends/unix/test/dune +++ b/src/lib_signer_backends/unix/test/dune @@ -36,8 +36,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-signer-backends) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_stdlib/test-unix/dune b/src/lib_stdlib/test-unix/dune index 684f533dcde6a851f849d32016bf771a4b6cdd13..4f0bab8565e845ce060194aa221cf8d6e76f934d 100644 --- a/src/lib_stdlib/test-unix/dune +++ b/src/lib_stdlib/test-unix/dune @@ -35,7 +35,11 @@ tezt) (modules main)) -(rule (alias runtezt) (package tezos-stdlib) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-stdlib) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_stdlib/test/dune b/src/lib_stdlib/test/dune index 66ef906248196af2e6fea6f41ccf8813f59386c1..34fe63118a5b82d649b2247df4c3b7a2bcc36fff 100644 --- a/src/lib_stdlib/test/dune +++ b/src/lib_stdlib/test/dune @@ -43,7 +43,11 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-stdlib) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-stdlib) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) @@ -63,8 +67,9 @@ (modules main_js)) (rule - (alias runtezt_js) + (alias runtest_js) (package tezos-stdlib) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run node %{dep:./main_js.bc.js}))) (rule diff --git a/src/lib_stdlib_unix/test/dune b/src/lib_stdlib_unix/test/dune index 3317f80193c79b5cd3444821ee9dfe967bb7134e..c9962d45050701c0f89bdf8cbdb04a066b9d6a4e 100644 --- a/src/lib_stdlib_unix/test/dune +++ b/src/lib_stdlib_unix/test/dune @@ -34,8 +34,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-stdlib-unix) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_store/unix/test/dune b/src/lib_store/unix/test/dune index 98d0d1ee061b68a331c422a8550c78a08f0603aa..b63f42b363016bd8ae4bee80ad5c969a59ea11d3 100644 --- a/src/lib_store/unix/test/dune +++ b/src/lib_store/unix/test/dune @@ -71,7 +71,11 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-store) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezos-store) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml) diff --git a/src/lib_tree_encoding/test/dune b/src/lib_tree_encoding/test/dune index abd279788ad3e38b5ad34347d6952df700085bc3..0dd01eea8d5b70c56d52507d9907580e5d38d417 100644 --- a/src/lib_tree_encoding/test/dune +++ b/src/lib_tree_encoding/test/dune @@ -35,8 +35,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-tree-encoding-test) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_version/test/dune b/src/lib_version/test/dune index 2c9893c545294eec1ef8d22d4331fdb9c2cb83ff..2185770405c2d5151e4fbc1c3e2f1ead88bc356d 100644 --- a/src/lib_version/test/dune +++ b/src/lib_version/test/dune @@ -31,8 +31,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-version) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule @@ -50,8 +51,9 @@ (modules main_js)) (rule - (alias runtezt_js) + (alias runtest_js) (package tezos-version) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run node %{dep:./main_js.bc.js}))) (rule diff --git a/src/lib_webassembly/tests/dune b/src/lib_webassembly/tests/dune index 03c80033c3800e1e332fb7709d99db57ac165e2c..6ff5f874aa5efcbb211376785f479698ee864efb 100644 --- a/src/lib_webassembly/tests/dune +++ b/src/lib_webassembly/tests/dune @@ -28,8 +28,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-webassembly-interpreter) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/lib_workers/test/dune b/src/lib_workers/test/dune index b89f0374a186fc312fdcb36de9518e4aa17521c9..64584244fc389608d6ab1bcdc36df007ab3f1769 100644 --- a/src/lib_workers/test/dune +++ b/src/lib_workers/test/dune @@ -38,8 +38,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-workers) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_client/test/dune b/src/proto_016_PtMumbai/lib_client/test/dune index ea3c3dd4ad9340193aa8c8455444996376b4b640..da1578e9a460cbf3c264cb5b3bfabe9ad9ab682b 100644 --- a/src/proto_016_PtMumbai/lib_client/test/dune +++ b/src/proto_016_PtMumbai/lib_client/test/dune @@ -45,8 +45,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-client-016-PtMumbai) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_dal/test/dune b/src/proto_016_PtMumbai/lib_dal/test/dune index 858baf037ba07921b4275b9a438a78372aee7d7b..04fbc73bef7a815bb4ccd7197d0fd9625f4dbb3e 100644 --- a/src/proto_016_PtMumbai/lib_dal/test/dune +++ b/src/proto_016_PtMumbai/lib_dal/test/dune @@ -38,8 +38,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-dal-016-PtMumbai) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_delegate/test/dune b/src/proto_016_PtMumbai/lib_delegate/test/dune index 8206c345908c7a7ad2db85edba2e5e5ea069c5f0..4e586a4f4f7fb6555bc5680a9c38ba041c562be9 100644 --- a/src/proto_016_PtMumbai/lib_delegate/test/dune +++ b/src/proto_016_PtMumbai/lib_delegate/test/dune @@ -45,8 +45,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-baking-016-PtMumbai) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_plugin/test/dune b/src/proto_016_PtMumbai/lib_plugin/test/dune index 70d7d736ad7c9e56f2631fd39029ba43bfd5a114..1ca373c52a4b9f001856c7de7eeb3ba40608896c 100644 --- a/src/proto_016_PtMumbai/lib_plugin/test/dune +++ b/src/proto_016_PtMumbai/lib_plugin/test/dune @@ -54,8 +54,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-plugin-016-PtMumbai-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/consensus/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/consensus/dune index 4a436a53b8d4f211dc88fda0fb655e7f62b11881..624622ff4987f75278b60475181656b255f6abe7 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/consensus/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/consensus/dune @@ -55,8 +55,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/dune index 182c5ac90be784b5769f5e097eb8d06ea6e44093..edec5df63cd7acff206b5e187bf18c8c46813202 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/dune @@ -48,9 +48,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) (deps (glob_files wasm_kernel/*.wasm)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/gas/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/gas/dune index 9ad3d27331b88b98bf7603fd34310a465782453b..339899a8aa6e748edbca7a67c5c342e39fea1172 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/gas/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/gas/dune @@ -36,8 +36,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/michelson/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/michelson/dune index c3545cbe131086e72355d7f61b1582ce9b1ce894..a86fb297c34e2c0c86938f1fb5c22b3ee30dff71 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/michelson/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/michelson/dune @@ -70,12 +70,13 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) (deps (glob_files contracts/*) (glob_files patched_contracts/*) (glob_files_rec ../../../../../../michelson_test_scripts/*)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/operations/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/operations/dune index b421955372788c595a896de4414087b8dd20b0c0..197400d5fc73ab3117024bd17767b71a69f33ede 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/operations/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/operations/dune @@ -54,9 +54,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) (deps (glob_files contracts/*)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/validate/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/validate/dune index c4da91d164aad4ab5365882379460f69b34d881a..8a40ed68eabffa9d9b51740049739b172d028a71 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/validate/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/validate/dune @@ -54,8 +54,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/pbt/dune b/src/proto_016_PtMumbai/lib_protocol/test/pbt/dune index aa2b2f7f667e21abc6b1defd231f64cc37bcbe01..7561df4c3718cdafd84284ddc892306fd3b33c12 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/pbt/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/pbt/dune @@ -72,8 +72,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/regression/dune b/src/proto_016_PtMumbai/lib_protocol/test/regression/dune index e795506d03655c72c7b436fe61e56db1c9de0cee..837d431da7099e2669733d14d50fadf17db3d4b5 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/regression/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/regression/dune @@ -39,11 +39,12 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) (deps (glob_files contracts/*.tz) (glob_files expected/test_logging.ml/*.out)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_protocol/test/unit/dune b/src/proto_016_PtMumbai/lib_protocol/test/unit/dune index ff995683c840a3dab614703b5fbc318b3088c8c1..f9e9b57cf855146d8babdbec10020c743305ac25 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/unit/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/unit/dune @@ -87,8 +87,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-016-PtMumbai-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_016_PtMumbai/lib_sc_rollup_node/test/dune b/src/proto_016_PtMumbai/lib_sc_rollup_node/test/dune index a8cd5803af889e2a62c6e7accae131c7936df1b2..cfd8230f6ff9490bf95b429e8f2cbacf9409e908 100644 --- a/src/proto_016_PtMumbai/lib_sc_rollup_node/test/dune +++ b/src/proto_016_PtMumbai/lib_sc_rollup_node/test/dune @@ -40,8 +40,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-sc-rollup-node-test) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_client/test/dune b/src/proto_017_PtNairob/lib_client/test/dune index 8fe17a865dfb0839089d597ac6f1ed93b189dce5..efa3f000762d1f57db899cce8a8daaa4b8369f3b 100644 --- a/src/proto_017_PtNairob/lib_client/test/dune +++ b/src/proto_017_PtNairob/lib_client/test/dune @@ -45,8 +45,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-client-017-PtNairob) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_dac_plugin/test/dune b/src/proto_017_PtNairob/lib_dac_plugin/test/dune index 281a3a4a6a60cb9946c7ff7518a147212a788bcd..5e2225979b018eeb1c95854f25442bc2f423a6cb 100644 --- a/src/proto_017_PtNairob/lib_dac_plugin/test/dune +++ b/src/proto_017_PtNairob/lib_dac_plugin/test/dune @@ -42,8 +42,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-dac-017-PtNairob) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_dal/test/dune b/src/proto_017_PtNairob/lib_dal/test/dune index 93b86554a0277bc584806427fb6f221b090f7a1b..804512704ae3ef95f76a6bf0bf82419d1c97fd31 100644 --- a/src/proto_017_PtNairob/lib_dal/test/dune +++ b/src/proto_017_PtNairob/lib_dal/test/dune @@ -38,8 +38,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-dal-017-PtNairob) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_delegate/test/dune b/src/proto_017_PtNairob/lib_delegate/test/dune index 33a473dda4ed8a02c7e039f25af978f433954b12..15f28f6fa37ad5cd5c0174d23f9d4cb3080491f0 100644 --- a/src/proto_017_PtNairob/lib_delegate/test/dune +++ b/src/proto_017_PtNairob/lib_delegate/test/dune @@ -45,8 +45,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-baking-017-PtNairob) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_plugin/test/dune b/src/proto_017_PtNairob/lib_plugin/test/dune index b6870095abf3d0be677243ed82a6e05410010c24..53ad3cdfaa879e85ac5a531110a23354f24b7a34 100644 --- a/src/proto_017_PtNairob/lib_plugin/test/dune +++ b/src/proto_017_PtNairob/lib_plugin/test/dune @@ -54,8 +54,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-plugin-017-PtNairob-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/integration/consensus/dune b/src/proto_017_PtNairob/lib_protocol/test/integration/consensus/dune index 1b9883735dd8d038d2ab2e2304e35edc089a5d04..dcc030dd8cb376ef038d3bb27d7d70c26212eedc 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/integration/consensus/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/integration/consensus/dune @@ -55,8 +55,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/integration/dune b/src/proto_017_PtNairob/lib_protocol/test/integration/dune index b693985a9757704af4cc592d23c062a26a62543f..c1924d1328ded754b3cad31b9d2671475e8d118c 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/integration/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/integration/dune @@ -48,9 +48,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) (deps (glob_files wasm_kernel/*.wasm)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/integration/gas/dune b/src/proto_017_PtNairob/lib_protocol/test/integration/gas/dune index f672359723a1544e0aea4492373570614ec54393..b020e8428bb01017cdef06c3e43d6f3b2a249157 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/integration/gas/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/integration/gas/dune @@ -36,8 +36,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/integration/michelson/dune b/src/proto_017_PtNairob/lib_protocol/test/integration/michelson/dune index 591d17699012a7c6577eba25998125d73ea069f2..6479a398b7d274f76d5aa837ec65ea021ff71420 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/integration/michelson/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/integration/michelson/dune @@ -70,12 +70,13 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) (deps (glob_files contracts/*) (glob_files patched_contracts/*) (glob_files_rec ../../../../../../michelson_test_scripts/*)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/integration/operations/dune b/src/proto_017_PtNairob/lib_protocol/test/integration/operations/dune index 1fb2146fd6a062b744ca831b6f0136cbcd758424..82399d4d0cc8c200139b81fe7a56897bf8590ef5 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/integration/operations/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/integration/operations/dune @@ -53,9 +53,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) (deps (glob_files contracts/*)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/integration/validate/dune b/src/proto_017_PtNairob/lib_protocol/test/integration/validate/dune index 7583e561a113f1fa968892fb42bb74a7644c5471..c7ae8878677701b4643b883d7c099ceedb4d164b 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/integration/validate/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/integration/validate/dune @@ -54,8 +54,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/pbt/dune b/src/proto_017_PtNairob/lib_protocol/test/pbt/dune index bcada9c56f93016f80d8749de62200e8a1872d85..5cae4856cbe5fc3d2057e7bedd399376ed53858b 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/pbt/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/pbt/dune @@ -72,8 +72,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/regression/dune b/src/proto_017_PtNairob/lib_protocol/test/regression/dune index fb784bb650fe69ac0bcd241fe117ad3c608d0d93..1bbb272eec4c344f9100207d445c524f2744be97 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/regression/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/regression/dune @@ -39,11 +39,12 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) (deps (glob_files contracts/*.tz) (glob_files expected/test_logging.ml/*.out)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_protocol/test/unit/dune b/src/proto_017_PtNairob/lib_protocol/test/unit/dune index b509ba76ebf69c9e2d7b472e42168b258d38a45f..9f88b1fd4e5848f62f21aea13c6fd0a3df1ef32a 100644 --- a/src/proto_017_PtNairob/lib_protocol/test/unit/dune +++ b/src/proto_017_PtNairob/lib_protocol/test/unit/dune @@ -85,8 +85,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-017-PtNairob-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_017_PtNairob/lib_sc_rollup_node/test/dune b/src/proto_017_PtNairob/lib_sc_rollup_node/test/dune index 0c4be912fd2e83a556809a95d4c4a07447456edb..aaf6eedbeb444f02b19534711acf3274817f52b2 100644 --- a/src/proto_017_PtNairob/lib_sc_rollup_node/test/dune +++ b/src/proto_017_PtNairob/lib_sc_rollup_node/test/dune @@ -40,8 +40,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-sc-rollup-node-test) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_client/test/dune b/src/proto_alpha/lib_client/test/dune index 6a37a175607d6879b57eb03eb2095ff805928c91..1dcf450e5e586a711dad1bfd1d9744c9e30bb4ba 100644 --- a/src/proto_alpha/lib_client/test/dune +++ b/src/proto_alpha/lib_client/test/dune @@ -45,8 +45,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-client-alpha) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_dac_plugin/test/dune b/src/proto_alpha/lib_dac_plugin/test/dune index 3b4e454d6e252d7f9a05c0750534bbab7d23bc45..3f91199cb100c9b4c55eb79dc7f2855c761aa7b3 100644 --- a/src/proto_alpha/lib_dac_plugin/test/dune +++ b/src/proto_alpha/lib_dac_plugin/test/dune @@ -42,8 +42,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-dac-alpha) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_dal/test/dune b/src/proto_alpha/lib_dal/test/dune index 2ba69866c9a57bf8d73a2312fe2a679f6a588400..556c1d298977f101ffdc2391b50cb23854863392 100644 --- a/src/proto_alpha/lib_dal/test/dune +++ b/src/proto_alpha/lib_dal/test/dune @@ -38,8 +38,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-dal-alpha) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_delegate/test/dune b/src/proto_alpha/lib_delegate/test/dune index 706b888e7f2fc691f2781843b0e9cac2e9d74a1a..95048d5ea590b62121a5cba44d633255f846a09d 100644 --- a/src/proto_alpha/lib_delegate/test/dune +++ b/src/proto_alpha/lib_delegate/test/dune @@ -45,8 +45,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-baking-alpha) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_plugin/test/dune b/src/proto_alpha/lib_plugin/test/dune index 5cdafd3624a42a2b0a2010ff2eadc08b76e431f5..1d8398ee0a44c8e5b0bf3ed371657e8551d264e0 100644 --- a/src/proto_alpha/lib_plugin/test/dune +++ b/src/proto_alpha/lib_plugin/test/dune @@ -54,8 +54,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-plugin-alpha-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/integration/consensus/dune b/src/proto_alpha/lib_protocol/test/integration/consensus/dune index 92fe3e3fbd1a936d9958d4130a83b226f6d2c7af..25d49561579fe52c4990c083118697e5b0790490 100644 --- a/src/proto_alpha/lib_protocol/test/integration/consensus/dune +++ b/src/proto_alpha/lib_protocol/test/integration/consensus/dune @@ -54,8 +54,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/integration/dune b/src/proto_alpha/lib_protocol/test/integration/dune index ce2cc809c2d40901e4b7f21d2a63561bdb27fe54..3354358ec99d6b22ae050c524c44a3e9cee51628 100644 --- a/src/proto_alpha/lib_protocol/test/integration/dune +++ b/src/proto_alpha/lib_protocol/test/integration/dune @@ -48,9 +48,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) (deps (glob_files wasm_kernel/*.wasm)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/integration/gas/dune b/src/proto_alpha/lib_protocol/test/integration/gas/dune index 0dec55471c64b959d991a965bc66ab948c312763..0614024c0f11d5947a8f1b71a89f6297bb986d1d 100644 --- a/src/proto_alpha/lib_protocol/test/integration/gas/dune +++ b/src/proto_alpha/lib_protocol/test/integration/gas/dune @@ -36,8 +36,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/integration/michelson/dune b/src/proto_alpha/lib_protocol/test/integration/michelson/dune index 2d1bdf43125dba69cd3b22a3e6db36f39170838f..b2b7e98360c084985434e0950d3f9a728126c0ea 100644 --- a/src/proto_alpha/lib_protocol/test/integration/michelson/dune +++ b/src/proto_alpha/lib_protocol/test/integration/michelson/dune @@ -69,12 +69,13 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) (deps (glob_files contracts/*) (glob_files patched_contracts/*) (glob_files_rec ../../../../../../michelson_test_scripts/*)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/dune b/src/proto_alpha/lib_protocol/test/integration/operations/dune index e5271ad452ed64dde0dd326a5d431c4f0dea3de0..75169b562aff7cd95472b0ef102629d196ec7ba1 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/dune +++ b/src/proto_alpha/lib_protocol/test/integration/operations/dune @@ -52,9 +52,10 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) (deps (glob_files contracts/*)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/integration/validate/dune b/src/proto_alpha/lib_protocol/test/integration/validate/dune index 5aa689d327af81429603b4fb8aa346843ff7f88c..318c86e9b56b9c49a4fd19dd62d56c5ddbeaf51a 100644 --- a/src/proto_alpha/lib_protocol/test/integration/validate/dune +++ b/src/proto_alpha/lib_protocol/test/integration/validate/dune @@ -54,8 +54,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/pbt/dune b/src/proto_alpha/lib_protocol/test/pbt/dune index cf9aa4066635a65de3219c7f570318f490bf937a..2de7189dbcf133fcbd22964553d2b7ac2d75b8cc 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/dune +++ b/src/proto_alpha/lib_protocol/test/pbt/dune @@ -72,8 +72,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/regression/dune b/src/proto_alpha/lib_protocol/test/regression/dune index 2fd1dde8bad67360213df3145c9dfeda1001cd73..63bf7c2bd15d43e6b49143d8c21e534201b29967 100644 --- a/src/proto_alpha/lib_protocol/test/regression/dune +++ b/src/proto_alpha/lib_protocol/test/regression/dune @@ -39,11 +39,12 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) (deps (glob_files contracts/*.tz) (glob_files expected/test_logging.ml/*.out)) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_protocol/test/unit/dune b/src/proto_alpha/lib_protocol/test/unit/dune index ef1598ffb81c5338ee461eea660797ab1a5aab37..75d1f001ab4b3a83ca7b8e1d72fa5a8d39b43c5a 100644 --- a/src/proto_alpha/lib_protocol/test/unit/dune +++ b/src/proto_alpha/lib_protocol/test/unit/dune @@ -85,8 +85,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-protocol-alpha-tests) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/src/proto_alpha/lib_sc_rollup_node/test/dune b/src/proto_alpha/lib_sc_rollup_node/test/dune index c1ab36f7bf655fcebe55a05633335f127d0dc87f..cced4a548dce98280077a00fd142f214402f8559 100644 --- a/src/proto_alpha/lib_sc_rollup_node/test/dune +++ b/src/proto_alpha/lib_sc_rollup_node/test/dune @@ -40,8 +40,9 @@ (modules main)) (rule - (alias runtezt) + (alias runtest) (package tezos-sc-rollup-node-test) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe}))) (rule diff --git a/tezt/self_tests/dune b/tezt/self_tests/dune index b597472dd9fcda26490b8654bc15a6dbcb7c3cc6..d8dba2f9aeccc6c7ae1f638798af2b52b24f712f 100644 --- a/tezt/self_tests/dune +++ b/tezt/self_tests/dune @@ -26,7 +26,11 @@ tezt) (modules main)) -(rule (alias runtezt) (package tezt-tezos) (action (run %{dep:./main.exe}))) +(rule + (alias runtest) + (package tezt-tezos) + (enabled_if (<> false %{env:RUNTEZTALIAS=true})) + (action (run %{dep:./main.exe}))) (rule (targets main.ml)