From 7ceee7b69bc9da857d826e79f4eedf5dbe04856d Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:22:10 +0100 Subject: [PATCH 01/10] Alcotezt-UX:rename headers [lib_client/test] --- src/lib_base/test/test_bounded.ml | 2 +- src/lib_base/test/test_p2p_addr.ml | 2 +- src/lib_base/test/test_protocol.ml | 2 +- src/lib_base/test/test_sized.ml | 2 +- src/lib_base/test/test_time.ml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib_base/test/test_bounded.ml b/src/lib_base/test/test_bounded.ml index cfd150d44e73..40bd01d0d8be 100644 --- a/src/lib_base/test/test_bounded.ml +++ b/src/lib_base/test/test_bounded.ml @@ -26,7 +26,7 @@ (* Testing ------- Component: Base - Invocation: dune exec src/lib_base/test/test_bounded.exe + Invocation: dune exec src/lib_base/test/main.exe Subject: Test the [Bounded] module. *) diff --git a/src/lib_base/test/test_p2p_addr.ml b/src/lib_base/test/test_p2p_addr.ml index 5b87808e231f..aafdbf86b1ce 100644 --- a/src/lib_base/test/test_p2p_addr.ml +++ b/src/lib_base/test/test_p2p_addr.ml @@ -26,7 +26,7 @@ (* Testing ------- Component: Base, P2p - Invocation: dune build @src/lib_base/runtest + Invocation: dune exec src/lib_base/test/main.exe Subject: Check the parsing of addresses with domain names *) diff --git a/src/lib_base/test/test_protocol.ml b/src/lib_base/test/test_protocol.ml index b5f74ce60628..844598d82f2a 100644 --- a/src/lib_base/test/test_protocol.ml +++ b/src/lib_base/test/test_protocol.ml @@ -26,7 +26,7 @@ (* Testing ------- Component: Base, Protocol - Invocation: dune build @src/lib_base/runtest + Invocation: dune exec src/lib_base/test/main.exe Subject: Check the ordering of protocol versions *) diff --git a/src/lib_base/test/test_sized.ml b/src/lib_base/test/test_sized.ml index d9e35ac3ee36..6fbc6a626e97 100644 --- a/src/lib_base/test/test_sized.ml +++ b/src/lib_base/test/test_sized.ml @@ -26,7 +26,7 @@ (* Testing ------- Component: Base - Invocation: dune exec src/lib_base/test/test_sized.exe + Invocation: dune exec src/lib_base/test/main.exe Subject: Check that the sized map and set functions behave correctly *) diff --git a/src/lib_base/test/test_time.ml b/src/lib_base/test/test_time.ml index d5382878f3b5..9993335c0398 100644 --- a/src/lib_base/test/test_time.ml +++ b/src/lib_base/test/test_time.ml @@ -26,7 +26,7 @@ (* Testing ------- Component: Base - Invocation: dune exec src/lib_base/test/test_time.exe + Invocation: dune exec src/lib_base/test/main.exe Subject: Check that the Protocol and System times behave correctly regarding addition and encoding (binary and JSON) *) -- GitLab From 3abc2b0b453b920ae04a6ee0bf20e06ae322302a Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:27:49 +0100 Subject: [PATCH 02/10] Alcotezt-UX:rename headers [lib_clic/test] --- src/lib_clic/test/test_clic.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_clic/test/test_clic.ml b/src/lib_clic/test/test_clic.ml index 1f240db6910e..c59758719ced 100644 --- a/src/lib_clic/test/test_clic.ml +++ b/src/lib_clic/test/test_clic.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Tezos_clic library - Invocation: dune build @src/lib_clic/runtest + Invocation: dune exec src/lib_clic/test/main.exe Subject: Test the functionality of the Tezos_clic library, such as CLI command dispatch, parameters and auto-completion. *) -- GitLab From 98fb9c762a775a6a22ff2947e73bb5f0b39e9c21 Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:29:54 +0100 Subject: [PATCH 03/10] Alcotezt-UX:rename headers [lib_client_base/test] --- src/lib_client_base/test/bip39_tests.ml | 2 +- src/lib_client_base/test/pbkdf_tests.ml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib_client_base/test/bip39_tests.ml b/src/lib_client_base/test/bip39_tests.ml index 0259f73e026d..c1364523b68c 100644 --- a/src/lib_client_base/test/bip39_tests.ml +++ b/src/lib_client_base/test/bip39_tests.ml @@ -1,7 +1,7 @@ (** Testing ------- Component: Client Base - Invocation: dune build @src/lib_client_base/runtest + Invocation: dune exec src/lib_client_base/test/main.exe Subject: BIP39 seed phrases. Mnemonic sentences for the generation of deterministic wallets. *) diff --git a/src/lib_client_base/test/pbkdf_tests.ml b/src/lib_client_base/test/pbkdf_tests.ml index 6e924238d0ac..c942540efc2b 100644 --- a/src/lib_client_base/test/pbkdf_tests.ml +++ b/src/lib_client_base/test/pbkdf_tests.ml @@ -1,7 +1,7 @@ (** Testing ------- Component: Client Base - Invocation: dune build @src/lib_client_base/runtest + Invocation: dune exec src/lib_client_base/test/main.exe Subject: On Password-Based Key Derivation Function 2 (PBKDF2) when using hash functions SHA256 and SHA512. *) -- GitLab From 6116818fc2016ce0cb2602f1a9f85c1fcc618c26 Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:30:28 +0100 Subject: [PATCH 04/10] Alcotezt-UX:rename headers [lib_client_base_unix/test] --- src/lib_client_base_unix/test/test_mockup_wallet.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_client_base_unix/test/test_mockup_wallet.ml b/src/lib_client_base_unix/test/test_mockup_wallet.ml index 2bbd65103283..bc966ec867ca 100644 --- a/src/lib_client_base_unix/test/test_mockup_wallet.ml +++ b/src/lib_client_base_unix/test/test_mockup_wallet.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Mockup wallet library - Invocation: dune build @src/lib_client_base_unix/runtest + Invocation: dune exec src/lib_client_base_unix/test/main.exe Subject: Unit tests of the Mockup wallet library *) -- GitLab From e4cb4767d4a18ef421addf0bdc1c449b5e8e851b Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:31:36 +0100 Subject: [PATCH 05/10] Alcotezt-UX:rename invocation [lib_context/test] --- src/lib_context/test/test_context.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_context/test/test_context.ml b/src/lib_context/test/test_context.ml index 7140899796c5..8e2772acf53e 100644 --- a/src/lib_context/test/test_context.ml +++ b/src/lib_context/test/test_context.ml @@ -26,7 +26,7 @@ (* Testing ------- Component: Context - Invocation: dune build @src/lib_context/runtest + Invocation: dune exec src/lib_context/test/main.exe Subject: On context features. *) -- GitLab From e347d04275867e1f4a2e7638bb22f277044c1813 Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:33:23 +0100 Subject: [PATCH 06/10] Alcotezt-UX:rename invocation lib_crypto/[test],[test-unix] --- src/lib_crypto/test-unix/test_crypto_box.ml | 2 +- src/lib_crypto/test/test_base58.ml | 2 +- src/lib_crypto/test/test_blake2b.ml | 2 +- src/lib_crypto/test/test_context_hash.ml | 2 +- src/lib_crypto/test/test_crypto_box.ml | 2 +- src/lib_crypto/test/test_deterministic_nonce.ml | 2 +- src/lib_crypto/test/test_merkle.ml | 2 +- src/lib_crypto/test/test_prop_signature.ml | 2 +- src/lib_crypto/test/test_signature_encodings.ml | 2 +- src/lib_crypto/test/test_timelock.ml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/lib_crypto/test-unix/test_crypto_box.ml b/src/lib_crypto/test-unix/test_crypto_box.ml index c75f955caa94..d628ff9141eb 100644 --- a/src/lib_crypto/test-unix/test_crypto_box.ml +++ b/src/lib_crypto/test-unix/test_crypto_box.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test-unix/main.exe Subject: Roundtrips for functions built on the HACL* NaCl API. *) diff --git a/src/lib_crypto/test/test_base58.ml b/src/lib_crypto/test/test_base58.ml index 499b9e6c6a0a..24b9f5c6c637 100644 --- a/src/lib_crypto/test/test_base58.ml +++ b/src/lib_crypto/test/test_base58.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Dependencies: src/lib_crypto/test/roundtrips.ml Subject: Encoding in Base58 *) diff --git a/src/lib_crypto/test/test_blake2b.ml b/src/lib_crypto/test/test_blake2b.ml index 37205ef3d7b4..f0517f79c3c2 100644 --- a/src/lib_crypto/test/test_blake2b.ml +++ b/src/lib_crypto/test/test_blake2b.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Dependencies: src/lib_crypto/test/roundtrips.ml Subject: On the hash function BLAKE2b *) diff --git a/src/lib_crypto/test/test_context_hash.ml b/src/lib_crypto/test/test_context_hash.ml index 38188985a05a..dde30672af57 100644 --- a/src/lib_crypto/test/test_context_hash.ml +++ b/src/lib_crypto/test/test_context_hash.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Dependencies: src/lib_crypto/test/context_hash.ml Subject: On context hash *) diff --git a/src/lib_crypto/test/test_crypto_box.ml b/src/lib_crypto/test/test_crypto_box.ml index 05b6762fdfb6..18624cef68ec 100644 --- a/src/lib_crypto/test/test_crypto_box.ml +++ b/src/lib_crypto/test/test_crypto_box.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Subject: Roundtrips for functions built on the HACL* NaCl API. *) diff --git a/src/lib_crypto/test/test_deterministic_nonce.ml b/src/lib_crypto/test/test_deterministic_nonce.ml index b71c9fac59ee..7234ff50cb9d 100644 --- a/src/lib_crypto/test/test_deterministic_nonce.ml +++ b/src/lib_crypto/test/test_deterministic_nonce.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Subject: On hash functions with deterministic nonce *) diff --git a/src/lib_crypto/test/test_merkle.ml b/src/lib_crypto/test/test_merkle.ml index caf77d82578c..dbb642b15238 100644 --- a/src/lib_crypto/test/test_merkle.ml +++ b/src/lib_crypto/test/test_merkle.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Subject: Merkle tree *) diff --git a/src/lib_crypto/test/test_prop_signature.ml b/src/lib_crypto/test/test_prop_signature.ml index 09285cbdad59..0c3b6ecd21a1 100644 --- a/src/lib_crypto/test/test_prop_signature.ml +++ b/src/lib_crypto/test/test_prop_signature.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Subject: Property-tests over the interface S.SIGNATURE and its instantiations. *) diff --git a/src/lib_crypto/test/test_signature_encodings.ml b/src/lib_crypto/test/test_signature_encodings.ml index d9a531ac05f4..1348de63f7bf 100644 --- a/src/lib_crypto/test/test_signature_encodings.ml +++ b/src/lib_crypto/test/test_signature_encodings.ml @@ -25,7 +25,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Dependencies: src/lib_crypto/test/roundtrips.ml Subject: Checking Base58 key encodings *) diff --git a/src/lib_crypto/test/test_timelock.ml b/src/lib_crypto/test/test_timelock.ml index 84fcb405c36a..315041df743e 100644 --- a/src/lib_crypto/test/test_timelock.ml +++ b/src/lib_crypto/test/test_timelock.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Crypto - Invocation: dune build @src/lib_crypto/runtest + Invocation: dune exec src/lib_crypto/test/main.exe Dependencies: src/lib_crypto/test/timelock.ml Subject: On timelock implementation *) -- GitLab From f03a56db6aea4dedebc5772f6a3249bf987612ea Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:34:26 +0100 Subject: [PATCH 07/10] Alcotezt-UX:rename invocation [lib_error_monad/test] --- src/lib_error_monad/test/test_registration.ml | 2 +- src/lib_error_monad/test/test_splitted_error_encoding.ml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib_error_monad/test/test_registration.ml b/src/lib_error_monad/test/test_registration.ml index 04beb596dc4b..068caa6b8bf2 100644 --- a/src/lib_error_monad/test/test_registration.ml +++ b/src/lib_error_monad/test/test_registration.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Error Monad - Invocation: dune build @src/lib_error_monad/runtest + Invocation: dune exec src/lib_error_monad/test/main.exe Subject: On the registration and query of errors. *) diff --git a/src/lib_error_monad/test/test_splitted_error_encoding.ml b/src/lib_error_monad/test/test_splitted_error_encoding.ml index 4160c77b9810..965dac60427c 100644 --- a/src/lib_error_monad/test/test_splitted_error_encoding.ml +++ b/src/lib_error_monad/test/test_splitted_error_encoding.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Error Monad - Invocation: dune build @src/lib_error_monad/runtest + Invocation: dune exec src/lib_error_monad/test/main.exe Subject: On the wrapping of error_encoding in a splitted. *) -- GitLab From 77eceb998c6758ff73b93bff7608feb680c6ed28 Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:34:53 +0100 Subject: [PATCH 08/10] Alcotezt-UX:rename invocation [lib_mockup/test] --- src/lib_mockup/test/test_fuzzing_mockup_args.ml | 2 +- src/lib_mockup/test/test_mockup_args.ml | 2 +- src/lib_mockup/test/test_persistence.ml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib_mockup/test/test_fuzzing_mockup_args.ml b/src/lib_mockup/test/test_fuzzing_mockup_args.ml index 306244f4a124..ae7503097744 100644 --- a/src/lib_mockup/test/test_fuzzing_mockup_args.ml +++ b/src/lib_mockup/test/test_fuzzing_mockup_args.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Mockup args library - Invocation: dune build @src/lib_mockup/runtest + Invocation: dune exec src/lib_mockup/test/main.exe Subject: Fuzzing tests of the Mockup args library *) diff --git a/src/lib_mockup/test/test_mockup_args.ml b/src/lib_mockup/test/test_mockup_args.ml index 60abecb32d4e..dbe54846fa0e 100644 --- a/src/lib_mockup/test/test_mockup_args.ml +++ b/src/lib_mockup/test/test_mockup_args.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Mockup args library - Invocation: dune build @src/lib_mockup/runtest + Invocation: dune exec src/lib_mockup/test/main.exe Subject: Unit tests of the Mockup args library *) diff --git a/src/lib_mockup/test/test_persistence.ml b/src/lib_mockup/test/test_persistence.ml index 7b96c9446fe8..611649640b62 100644 --- a/src/lib_mockup/test/test_persistence.ml +++ b/src/lib_mockup/test/test_persistence.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Persistence library - Invocation: dune build @src/lib_mockup/runtest + Invocation: dune exec src/lib_mockup/test/main.exe Subject: Unit tests of the Persistence library *) -- GitLab From 816c1ad79a0277d45ffaaadafc1ebffd7b877169 Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:36:01 +0100 Subject: [PATCH 09/10] Alcotezt-UX:rename invocation lib_pro_env/[test],[test_shell_context] --- src/lib_protocol_environment/test/test_cache.ml | 2 +- src/lib_protocol_environment/test/test_data_encoding.ml | 2 +- src/lib_protocol_environment/test/test_mem_context.ml | 2 +- .../test/test_mem_context_array_theory.ml | 2 +- .../test_shell_context/test_proxy_context.ml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib_protocol_environment/test/test_cache.ml b/src/lib_protocol_environment/test/test_cache.ml index dcaa13569ca1..4ca22ad30cef 100644 --- a/src/lib_protocol_environment/test/test_cache.ml +++ b/src/lib_protocol_environment/test/test_cache.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Protocol Cache - Invocation: dune exec src/lib_protocol_environment/test/test.exe -- test "^cache$" + Invocation: dune exec src/lib_protocol_environment/test/main.exe Dependencies: src/lib_protocol_environment/test/assert.ml Subject: Low-level operations on protocol cache *) diff --git a/src/lib_protocol_environment/test/test_data_encoding.ml b/src/lib_protocol_environment/test/test_data_encoding.ml index fe94ff58fcaa..4d137bce6de7 100644 --- a/src/lib_protocol_environment/test/test_data_encoding.ml +++ b/src/lib_protocol_environment/test/test_data_encoding.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Environment structs - Invocation: dune exec src/lib_protocol_environment/test/test.exe -- test "^data_encoding$" + Invocation: dune exec src/lib_protocol_environment/test/main.exe Subject: Environment structs modifications to Data_encoding e.g. in src/lib_protocol_environment/structs/v5_data_encoding.ml *) diff --git a/src/lib_protocol_environment/test/test_mem_context.ml b/src/lib_protocol_environment/test/test_mem_context.ml index aae452ecfab3..68fa87e60923 100644 --- a/src/lib_protocol_environment/test/test_mem_context.ml +++ b/src/lib_protocol_environment/test/test_mem_context.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Environment - Invocation: dune exec src/lib_protocol_environment/test/test.exe -- test "^mem_context$" + Invocation: dune exec src/lib_protocol_environment/test/main.exe Dependencies: src/lib_protocol_environment/test/assert.ml Subject: Low-level operations on memory contexts. *) diff --git a/src/lib_protocol_environment/test/test_mem_context_array_theory.ml b/src/lib_protocol_environment/test/test_mem_context_array_theory.ml index 4619bf00670d..0fa7cf170103 100644 --- a/src/lib_protocol_environment/test/test_mem_context_array_theory.ml +++ b/src/lib_protocol_environment/test/test_mem_context_array_theory.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Environment - Invocation: dune exec src/lib_protocol_environment/test/test_mem_context_array_theory.exe + Invocation: dune exec src/lib_protocol_environment/test/main.exe Dependencies: src/lib_protocol_environment/test/test_mem_context.ml Subject: get/set operations on memory contexts. *) diff --git a/src/lib_protocol_environment/test_shell_context/test_proxy_context.ml b/src/lib_protocol_environment/test_shell_context/test_proxy_context.ml index 499c81a0b5e0..2bbcb6e2f1a1 100644 --- a/src/lib_protocol_environment/test_shell_context/test_proxy_context.ml +++ b/src/lib_protocol_environment/test_shell_context/test_proxy_context.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Proxy context (without delegation for now) - Invocation: dune exec src/lib_protocol_environment/test_shell_context/test_proxy_context.exe + Invocation: dune exec src/lib_protocol_environment/test_shell_context/main.exe Dependencies: src/lib_protocol_environment/test_shell_context/assert.ml Subject: Low-level operations on proxy contexts. *) -- GitLab From 242e3bff1d749599e3c9eb6dbc779fff9d98e435 Mon Sep 17 00:00:00 2001 From: lykimq Date: Mon, 20 Mar 2023 12:37:52 +0100 Subject: [PATCH 10/10] Alcotezt-UX:rename invocation lib_proxy/[test],[test_helpers] --- src/lib_proxy/test/test_fuzzing_light.ml | 2 +- src/lib_proxy/test/test_fuzzing_proxy_getter.ml | 2 +- src/lib_proxy/test/test_light.ml | 2 +- src/lib_proxy/test/test_proxy.ml | 2 +- .../test_helpers/shell_services/test/test_block_services.ml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib_proxy/test/test_fuzzing_light.ml b/src/lib_proxy/test/test_fuzzing_light.ml index 5fd24dfbd137..53f3b4db93ef 100644 --- a/src/lib_proxy/test/test_fuzzing_light.ml +++ b/src/lib_proxy/test/test_fuzzing_light.ml @@ -27,7 +27,7 @@ ------- Component: Client - Invocation: dune build @src/lib_proxy/runtest + Invocation: dune exec src/lib_proxy/test/main.exe Dependencies: src/lib_proxy/test/light_lib.ml src/lib_proxy/test/test_light.ml Description: Most generators in this module are recursive / nested, hence diff --git a/src/lib_proxy/test/test_fuzzing_proxy_getter.ml b/src/lib_proxy/test/test_fuzzing_proxy_getter.ml index 2889f9918281..dc2486c13675 100644 --- a/src/lib_proxy/test/test_fuzzing_proxy_getter.ml +++ b/src/lib_proxy/test/test_fuzzing_proxy_getter.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Proxy getter - Invocation: dune build @src/lib_proxy/runtest + Invocation: dune exec src/lib_proxy/test/main.exe Subject: Fuzzing tests of internals of the client's --mode proxy *) diff --git a/src/lib_proxy/test/test_light.ml b/src/lib_proxy/test/test_light.ml index f75f2c01a6a4..23312391d741 100644 --- a/src/lib_proxy/test/test_light.ml +++ b/src/lib_proxy/test/test_light.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Client - Invocation: dune build @src/lib_proxy/runtest + Invocation: dune exec src/lib_proxy/test/main.exe Dependencies: src/lib_proxy/test/light_lib.ml *) diff --git a/src/lib_proxy/test/test_proxy.ml b/src/lib_proxy/test/test_proxy.ml index 32d3de00896d..e0d82f11a737 100644 --- a/src/lib_proxy/test/test_proxy.ml +++ b/src/lib_proxy/test/test_proxy.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Client - Invocation: dune build @src/lib_proxy/runtest + Invocation: dune exec src/lib_proxy/test/main.exe Subject: --mode proxy of the client *) diff --git a/src/lib_proxy/test_helpers/shell_services/test/test_block_services.ml b/src/lib_proxy/test_helpers/shell_services/test/test_block_services.ml index d95da07791d2..b3c6b0aa4502 100644 --- a/src/lib_proxy/test_helpers/shell_services/test/test_block_services.ml +++ b/src/lib_proxy/test_helpers/shell_services/test/test_block_services.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Block services - Invocation: dune exec src/lib_shell_services/test_helpers/test/test_block_services.exe + Invocation: dune exec src/lib_proxy/test_helpers/shell_services/test/main.exe Subject: Fuzzing tests of equalities *) -- GitLab