From f9b4c9a9d3ef4e8f0a3825123d35843fb4db9115 Mon Sep 17 00:00:00 2001 From: lykimq Date: Wed, 16 Nov 2022 16:51:48 +0700 Subject: [PATCH 1/5] Tezt/Test: change typecheck_script returns unit --- tezt/lib_tezos/client.ml | 2 +- tezt/lib_tezos/client.mli | 2 +- tezt/tests/bad_indentation.ml | 2 +- tezt/tests/gas_bound.ml | 2 +- tezt/tests/mockup.ml | 2 +- tezt/tests/order_in_top_level.ml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tezt/lib_tezos/client.ml b/tezt/lib_tezos/client.ml index bb77ee8f0419..b1083b5a6a50 100644 --- a/tezt/lib_tezos/client.ml +++ b/tezt/lib_tezos/client.ml @@ -1601,7 +1601,7 @@ let typecheck_script ~script ?(details = false) ?(emacs = false) ?gas ~legacy client - |> Process.check_and_read_stdout + |> Process.check let spawn_run_tzip4_view ?hooks ?source ?payer ?gas ?unparsing_mode ~entrypoint ~contract ?input ?(unlimited_gas = false) client = diff --git a/tezt/lib_tezos/client.mli b/tezt/lib_tezos/client.mli index 416af5c1c513..45901e8a929a 100644 --- a/tezt/lib_tezos/client.mli +++ b/tezt/lib_tezos/client.mli @@ -1239,7 +1239,7 @@ val typecheck_script : ?gas:int -> ?legacy:bool -> t -> - string Lwt.t + unit Lwt.t (** Same as [typecheck_script], but do not wait for the process to exit. *) val spawn_typecheck_script : diff --git a/tezt/tests/bad_indentation.ml b/tezt/tests/bad_indentation.ml index 75ef68f3ce4b..e5d615224a98 100644 --- a/tezt/tests/bad_indentation.ml +++ b/tezt/tests/bad_indentation.ml @@ -83,7 +83,7 @@ let test_formatted_typechecks = ~dst_format:`Michelson client in - let* _ = Client.typecheck_script ~script:formatted_script client in + let* () = Client.typecheck_script ~script:formatted_script client in unit let test_formatted_hash = diff --git a/tezt/tests/gas_bound.ml b/tezt/tests/gas_bound.ml index cd62eb147f53..3128ee16cea0 100644 --- a/tezt/tests/gas_bound.ml +++ b/tezt/tests/gas_bound.ml @@ -75,7 +75,7 @@ let test_originate_first_explosion client () = let expected_msg = rex "Gas limit exceeded during typechecking or execution" in - let* _ = Client.typecheck_script ~script:first_explosion client in + let* () = Client.typecheck_script ~script:first_explosion client in let process = Client.spawn_originate_contract ~alias:"first_explosion" diff --git a/tezt/tests/mockup.ml b/tezt/tests/mockup.ml index b01e89d0eb1b..b4a0f69d1c33 100644 --- a/tezt/tests/mockup.ml +++ b/tezt/tests/mockup.ml @@ -224,7 +224,7 @@ let test_typechecking_and_normalization_work_with_constants = let* _ = Client.register_global_constant ~src ~value ?burn_cap client in let script = "file:./tezt/tests/contracts/proto_alpha/constant_unit.tz" in let* _ = Client.normalize_script ~script client in - let* _ = Client.typecheck_script ~script client in + let* () = Client.typecheck_script ~script client in return () let test_simple_baking_event = diff --git a/tezt/tests/order_in_top_level.ml b/tezt/tests/order_in_top_level.ml index c6e77e024b97..e183ece20cb0 100644 --- a/tezt/tests/order_in_top_level.ml +++ b/tezt/tests/order_in_top_level.ml @@ -56,7 +56,7 @@ let test_order_in_top_level = permutations top_level_elements |> Lwt_list.iter_s @@ fun elements -> let script = String.concat ";\n" elements in - let* _ = Client.typecheck_script client ~script in + let* () = Client.typecheck_script client ~script in unit let register ~protocols = test_order_in_top_level protocols -- GitLab From 296ce41efb4ee436da0994baf1b5067e8e82142f Mon Sep 17 00:00:00 2001 From: lykimq Date: Thu, 24 Nov 2022 11:04:17 +0700 Subject: [PATCH 2/5] Tezt/test: add typecheck tests --- tezt/lib_tezos/client.ml | 30 +++++++----- tezt/lib_tezos/client.mli | 6 +++ tezt/tests/contract_typecheck.ml | 84 ++++++++++++++++++++++++++++++++ tezt/tests/main.ml | 1 + 4 files changed, 108 insertions(+), 13 deletions(-) create mode 100644 tezt/tests/contract_typecheck.ml diff --git a/tezt/lib_tezos/client.ml b/tezt/lib_tezos/client.ml index b1083b5a6a50..3631c1e002f8 100644 --- a/tezt/lib_tezos/client.ml +++ b/tezt/lib_tezos/client.ml @@ -1576,25 +1576,29 @@ let normalize_type ?hooks ~typ client = let typecheck_data ~data ~typ ?gas ?(legacy = false) client = spawn_typecheck_data ~data ~typ ?gas ~legacy client |> Process.check -let spawn_typecheck_script ~script ?(details = false) ?(emacs = false) +let spawn_typecheck_script ?hooks ?protocol_hash ~script + ?(no_base_dir_warnings = false) ?(details = false) ?(emacs = false) ?(no_print_source = false) ?gas ?(legacy = false) client = let gas_cmd = Option.map Int.to_string gas |> Option.map (fun g -> ["--gas"; g]) in - let cmd = - ["typecheck"; "script"; script] - @ Option.value ~default:[] gas_cmd - @ (if details then ["--details"] else []) - @ (if emacs then ["--emacs"] else []) - @ (if no_print_source then ["--no-print-source"] else []) - @ if legacy then ["--legacy"] else [] - in - spawn_command client cmd - -let typecheck_script ~script ?(details = false) ?(emacs = false) - ?(no_print_source = false) ?gas ?(legacy = false) client = + spawn_command ?hooks ?protocol_hash client + @@ optional_switch "no-base-dir-warnings" no_base_dir_warnings + @ ["typecheck"; "script"; script] + @ Option.value ~default:[] gas_cmd + @ (if details then ["--details"] else []) + @ (if emacs then ["--emacs"] else []) + @ (if no_print_source then ["--no-print-source"] else []) + @ if legacy then ["--legacy"] else [] + +let typecheck_script ?hooks ?protocol_hash ~script ?no_base_dir_warnings + ?(details = false) ?(emacs = false) ?(no_print_source = false) ?gas + ?(legacy = false) client = spawn_typecheck_script + ?hooks + ?protocol_hash ~script + ?no_base_dir_warnings ~details ~emacs ~no_print_source diff --git a/tezt/lib_tezos/client.mli b/tezt/lib_tezos/client.mli index 45901e8a929a..c9c2ba9db1e1 100644 --- a/tezt/lib_tezos/client.mli +++ b/tezt/lib_tezos/client.mli @@ -1232,7 +1232,10 @@ val spawn_typecheck_data : (** Run [octez-client typecheck script ..]*) val typecheck_script : + ?hooks:Process.hooks -> + ?protocol_hash:string -> script:string -> + ?no_base_dir_warnings:bool -> ?details:bool -> ?emacs:bool -> ?no_print_source:bool -> @@ -1243,7 +1246,10 @@ val typecheck_script : (** Same as [typecheck_script], but do not wait for the process to exit. *) val spawn_typecheck_script : + ?hooks:Process.hooks -> + ?protocol_hash:string -> script:string -> + ?no_base_dir_warnings:bool -> ?details:bool -> ?emacs:bool -> ?no_print_source:bool -> diff --git a/tezt/tests/contract_typecheck.ml b/tezt/tests/contract_typecheck.ml new file mode 100644 index 000000000000..62ab86b585a0 --- /dev/null +++ b/tezt/tests/contract_typecheck.ml @@ -0,0 +1,84 @@ +(*****************************************************************************) +(* *) +(* Open Source License *) +(* Copyright (c) 2020 Nomadic Labs *) +(* Copyright (c) 2022 Marigold *) +(* *) +(* Permission is hereby granted, free of charge, to any person obtaining a *) +(* copy of this software and associated documentation files (the "Software"),*) +(* to deal in the Software without restriction, including without limitation *) +(* the rights to use, copy, modify, merge, publish, distribute, sublicense, *) +(* and/or sell copies of the Software, and to permit persons to whom the *) +(* Software is furnished to do so, subject to the following conditions: *) +(* *) +(* The above copyright notice and this permission notice shall be included *) +(* in all copies or substantial portions of the Software. *) +(* *) +(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*) +(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *) +(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *) +(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*) +(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *) +(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *) +(* DEALINGS IN THE SOFTWARE. *) +(* *) +(*****************************************************************************) + +(* Testing + ------- + Components: Michelson + Invocation: dune exec tezt/tests/main.exe -- --file contract_typecheck.ml + Subject: Regression testing of Michelson typechecking +*) + +(* Using the lighter hook that only scrubs the clients [--base-dir] *) +let hooks = + Tezos_regression.hooks_custom + ~scrubbed_global_options:["--base-dir"; "-d"] + ~replace_variables:Fun.id + () + +let test_typecheck_contract protocol contract = + Protocol.register_regression_test + ~__FILE__ + ~title:(sf "Tc %s" contract) + ~tags:["client"; "michelson"; "typechecking"] + (fun _protocol -> + let client = Client.create_with_mode Mockup in + Client.typecheck_script + ~script:contract + ~protocol_hash:(Protocol.hash protocol) + ~hooks + ~no_base_dir_warnings:true + ~details:true + client) + [protocol] + +let test_typecheck protocols = + List.iter + (fun protocol -> + (* Type check regression tests for all contracts (except "ill_typed" and "legacy") *) + let pytest_dir = + sf + "tests_python/contracts_%s" + (match protocol with + | Protocol.Alpha -> "alpha" + | _ -> sf "%03d" @@ Protocol.number protocol) + in + List.iter + (fun subdir -> + Array.iter + (fun script -> + test_typecheck_contract protocol (pytest_dir // subdir // script)) + (Sys.readdir (pytest_dir // subdir))) + [ + "attic"; + "entrypoints"; + "opcodes"; + "macros"; + "mini_scenarios"; + "non_regression"; + ]) + protocols + +let register ~protocols = test_typecheck protocols diff --git a/tezt/tests/main.ml b/tezt/tests/main.ml index 41b6231cc315..66d55b37682d 100644 --- a/tezt/tests/main.ml +++ b/tezt/tests/main.ml @@ -112,6 +112,7 @@ let register_protocol_tests_that_use_supports_correctly () = Contract_hash_fun.register ~protocols ; Contract_hash_with_origination.register ~protocols ; Contract_opcodes.register ~protocols ; + Contract_typecheck.register ~protocols ; Contract_mini_scenarios.register ~protocols ; Create_contract.register ~protocols ; Deposits_limit.register ~protocols ; -- GitLab From e8e2bd6b6cf72086ee4c8c0cfc32bfda98c564cb Mon Sep 17 00:00:00 2001 From: lykimq Date: Thu, 24 Nov 2022 11:27:00 +0700 Subject: [PATCH 3/5] Test: alpha remove pytest traces, remove tests, add tezt traces --- ...tTypecheck::test_typecheck[macros--fail.tz].out | 5 ----- tests_python/tests_alpha/test_contract.py | 14 -------------- ...ts_python-contracts_alpha-attic-accounts.tz.out | 2 +- ... tests_python-contracts_alpha-attic-add1.tz.out | 2 +- ...s_python-contracts_alpha-attic-add1_list.tz.out | 2 +- ...hon-contracts_alpha-attic-after_strategy.tz.out | 2 +- ...ests_python-contracts_alpha-attic-always.tz.out | 2 +- ...ests_python-contracts_alpha-attic-append.tz.out | 2 +- ...ts_python-contracts_alpha-attic-at_least.tz.out | 2 +- ...sts_python-contracts_alpha-attic-auction.tz.out | 2 +- ..._python-contracts_alpha-attic-bad_lockup.tz.out | 2 +- ...thon-contracts_alpha-attic-big_map_union.tz.out | 2 +- ...on-contracts_alpha-attic-cadr_annotation.tz.out | 2 +- ...ests_python-contracts_alpha-attic-concat.tz.out | 2 +- ...ython-contracts_alpha-attic-conditionals.tz.out | 2 +- ..._python-contracts_alpha-attic-cons_twice.tz.out | 2 +- ...ts_python-contracts_alpha-attic-cps_fact.tz.out | 2 +- ...-contracts_alpha-attic-create_add1_lists.tz.out | 2 +- ...hon-contracts_alpha-attic-data_publisher.tz.out | 2 +- ...ts_python-contracts_alpha-attic-dispatch.tz.out | 2 +- ...tests_python-contracts_alpha-attic-empty.tz.out | 2 +- ...python-contracts_alpha-attic-fail_amount.tz.out | 2 +- ...ests_python-contracts_alpha-attic-faucet.tz.out | 2 +- ...sts_python-contracts_alpha-attic-forward.tz.out | 2 +- ...Tc tests_python-contracts_alpha-attic-id.tz.out | 2 +- ...thon-contracts_alpha-attic-infinite_loop.tz.out | 2 +- ...hon-contracts_alpha-attic-insertion_sort.tz.out | 2 +- ...thon-contracts_alpha-attic-int_publisher.tz.out | 2 +- ...python-contracts_alpha-attic-king_of_tez.tz.out | 2 +- ...ntracts_alpha-attic-list_of_transactions.tz.out | 2 +- ...tests_python-contracts_alpha-attic-queue.tz.out | 2 +- ..._python-contracts_alpha-attic-reduce_map.tz.out | 2 +- ..._python-contracts_alpha-attic-reentrancy.tz.out | 2 +- ...s_python-contracts_alpha-attic-reservoir.tz.out | 2 +- ...ontracts_alpha-attic-scrutable_reservoir.tz.out | 2 +- ...n-contracts_alpha-attic-spawn_identities.tz.out | 2 +- ...ts_alpha-entrypoints-big_map_entrypoints.tz.out | 2 +- ...cts_alpha-entrypoints-delegatable_target.tz.out | 2 +- ...thon-contracts_alpha-entrypoints-manager.tz.out | 2 +- ...acts_alpha-entrypoints-no_default_target.tz.out | 2 +- ...s_alpha-entrypoints-no_entrypoint_target.tz.out | 2 +- ...ontracts_alpha-entrypoints-rooted_target.tz.out | 2 +- ...cts_alpha-entrypoints-simple_entrypoints.tz.out | 2 +- ...sts_python-contracts_alpha-macros-assert.tz.out | 2 +- ...thon-contracts_alpha-macros-assert_cmpeq.tz.out | 2 +- ...thon-contracts_alpha-macros-assert_cmpge.tz.out | 2 +- ...thon-contracts_alpha-macros-assert_cmpgt.tz.out | 2 +- ...thon-contracts_alpha-macros-assert_cmple.tz.out | 2 +- ...thon-contracts_alpha-macros-assert_cmplt.tz.out | 2 +- ...hon-contracts_alpha-macros-assert_cmpneq.tz.out | 2 +- ..._python-contracts_alpha-macros-assert_eq.tz.out | 2 +- ..._python-contracts_alpha-macros-assert_ge.tz.out | 2 +- ..._python-contracts_alpha-macros-assert_gt.tz.out | 2 +- ..._python-contracts_alpha-macros-assert_le.tz.out | 2 +- ..._python-contracts_alpha-macros-assert_lt.tz.out | 2 +- ...python-contracts_alpha-macros-assert_neq.tz.out | 2 +- ...n-contracts_alpha-macros-big_map_get_add.tz.out | 2 +- ...ython-contracts_alpha-macros-big_map_mem.tz.out | 2 +- ...python-contracts_alpha-macros-build_list.tz.out | 2 +- ...hon-contracts_alpha-macros-carn_and_cdrn.tz.out | 2 +- ...ts_python-contracts_alpha-macros-compare.tz.out | 2 +- ...hon-contracts_alpha-macros-compare_bytes.tz.out | 2 +- ...tests_python-contracts_alpha-macros-fail.tz.out | 5 +++++ ..._python-contracts_alpha-macros-guestbook.tz.out | 2 +- ...contracts_alpha-macros-macro_annotations.tz.out | 2 +- ...thon-contracts_alpha-macros-map_caddaadr.tz.out | 2 +- ...ython-contracts_alpha-macros-max_in_list.tz.out | 2 +- ... tests_python-contracts_alpha-macros-min.tz.out | 2 +- ...python-contracts_alpha-macros-pair_macro.tz.out | 2 +- ...thon-contracts_alpha-macros-set_caddaadr.tz.out | 2 +- ...hon-contracts_alpha-macros-take_my_money.tz.out | 2 +- ...thon-contracts_alpha-macros-unpair_macro.tz.out | 2 +- ...s_alpha-mini_scenarios-add_clear_tickets.tz.out | 2 +- ...acts_alpha-mini_scenarios-authentication.tz.out | 2 +- ...alpha-mini_scenarios-big_map_entrypoints.tz.out | 2 +- ...racts_alpha-mini_scenarios-big_map_magic.tz.out | 2 +- ...tracts_alpha-mini_scenarios-big_map_read.tz.out | 2 +- ...racts_alpha-mini_scenarios-big_map_store.tz.out | 2 +- ...racts_alpha-mini_scenarios-big_map_write.tz.out | 2 +- ...cts_alpha-mini_scenarios-create_contract.tz.out | 2 +- ...ha-mini_scenarios-create_contract_simple.tz.out | 2 +- ...cts_alpha-mini_scenarios-default_account.tz.out | 2 +- ...a-mini_scenarios-execution_order_appender.t.out | 2 +- ...ha-mini_scenarios-execution_order_caller.tz.out | 2 +- ...ha-mini_scenarios-execution_order_storer.tz.out | 2 +- ...acts_alpha-mini_scenarios-fa12_reference.tz.out | 2 +- ...ts_alpha-mini_scenarios-generic_multisig.tz.out | 2 +- ...n-contracts_alpha-mini_scenarios-groth16.tz.out | 2 +- ...contracts_alpha-mini_scenarios-hardlimit.tz.out | 2 +- ...cts_alpha-mini_scenarios-legacy_multisig.tz.out | 2 +- ...on-contracts_alpha-mini_scenarios-lockup.tz.out | 2 +- ...acts_alpha-mini_scenarios-lqt_fa12.mligo.tz.out | 2 +- ...tracts_alpha-mini_scenarios-multiple_en2.tz.out | 2 +- ...a-mini_scenarios-multiple_entrypoints_count.out | 2 +- ..._alpha-mini_scenarios-originate_contract.tz.out | 2 +- ...ha-mini_scenarios-parameterized_multisig.tz.out | 2 +- ...a-mini_scenarios-receive_tickets_in_big_map.out | 2 +- ...on-contracts_alpha-mini_scenarios-replay.tz.out | 2 +- ...ha-mini_scenarios-reveal_signed_preimage.tz.out | 2 +- ...a-mini_scenarios-send_tickets_in_big_map.tz.out | 2 +- ...a-mini_scenarios-ticket_builder_fungible.tz.out | 2 +- ...a-mini_scenarios-ticket_builder_non_fungibl.out | 2 +- ...ha-mini_scenarios-ticket_wallet_fungible.tz.out | 2 +- ...a-mini_scenarios-ticket_wallet_non_fungible.out | 2 +- ...s_alpha-mini_scenarios-vote_for_delegate.tz.out | 2 +- ...s_alpha-mini_scenarios-weather_insurance.tz.out | 2 +- ...thon-contracts_alpha-mini_scenarios-xcat.tz.out | 2 +- ...contracts_alpha-mini_scenarios-xcat_dapp.tz.out | 2 +- ..._alpha-non_regression-bad_annot_contract.tz.out | 2 +- ...n-contracts_alpha-non_regression-bug_262.tz.out | 2 +- ...n-contracts_alpha-non_regression-bug_843.tz.out | 2 +- ...ntracts_alpha-non_regression-pairk_annot.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-abs.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-add.tz.out | 2 +- ...contracts_alpha-opcodes-add_bls12_381_fr.tz.out | 2 +- ...contracts_alpha-opcodes-add_bls12_381_g1.tz.out | 2 +- ...contracts_alpha-opcodes-add_bls12_381_g2.tz.out | 2 +- ...tracts_alpha-opcodes-add_delta_timestamp.tz.out | 2 +- ...tracts_alpha-opcodes-add_timestamp_delta.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-address.tz.out | 2 +- ...acts_alpha-opcodes-amount_after_fib_view.tz.out | 2 +- ...ha-opcodes-amount_after_nonexistent_view.tz.out | 2 +- ...ontracts_alpha-opcodes-amount_after_view.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-and.tz.out | 2 +- ...ython-contracts_alpha-opcodes-and_binary.tz.out | 2 +- ...python-contracts_alpha-opcodes-and_bytes.tz.out | 2 +- ...on-contracts_alpha-opcodes-and_logical_1.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-balance.tz.out | 2 +- ...cts_alpha-opcodes-balance_after_fib_view.tz.out | 2 +- ...a-opcodes-balance_after_nonexistent_view.tz.out | 2 +- ...ntracts_alpha-opcodes-balance_after_view.tz.out | 2 +- ...-contracts_alpha-opcodes-big_map_mem_nat.tz.out | 2 +- ...ntracts_alpha-opcodes-big_map_mem_string.tz.out | 2 +- ...-contracts_alpha-opcodes-big_map_to_self.tz.out | 2 +- ...a-opcodes-bls12_381_fr_push_bytes_not_padde.out | 2 +- ...acts_alpha-opcodes-bls12_381_fr_push_nat.tz.out | 2 +- ...tracts_alpha-opcodes-bls12_381_fr_to_int.tz.out | 2 +- ...acts_alpha-opcodes-bls12_381_fr_to_mutez.tz.out | 2 +- ...ntracts_alpha-opcodes-bls12_381_fr_z_int.tz.out | 2 +- ...ntracts_alpha-opcodes-bls12_381_fr_z_nat.tz.out | 2 +- ...ntracts_alpha-opcodes-bls12_381_z_fr_int.tz.out | 2 +- ...ntracts_alpha-opcodes-bls12_381_z_fr_nat.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-bytes.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-car.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-cdr.tz.out | 2 +- ..._python-contracts_alpha-opcodes-chain_id.tz.out | 2 +- ...n-contracts_alpha-opcodes-chain_id_store.tz.out | 2 +- ...-contracts_alpha-opcodes-check_signature.tz.out | 2 +- ..._python-contracts_alpha-opcodes-comb-get.tz.out | 2 +- ...on-contracts_alpha-opcodes-comb-literals.tz.out | 2 +- ...ython-contracts_alpha-opcodes-comb-set-2.tz.out | 2 +- ..._python-contracts_alpha-opcodes-comb-set.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-comb.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-compare.tz.out | 2 +- ...contracts_alpha-opcodes-compare_big_type.tz.out | 2 +- ...ontracts_alpha-opcodes-compare_big_type2.tz.out | 2 +- ...thon-contracts_alpha-opcodes-comparisons.tz.out | 2 +- ...hon-contracts_alpha-opcodes-concat_hello.tz.out | 2 +- ...ntracts_alpha-opcodes-concat_hello_bytes.tz.out | 2 +- ...thon-contracts_alpha-opcodes-concat_list.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-cons.tz.out | 2 +- ...hon-contracts_alpha-opcodes-contains_all.tz.out | 2 +- ..._python-contracts_alpha-opcodes-contract.tz.out | 2 +- ...-contracts_alpha-opcodes-create_contract.tz.out | 2 +- ...s_alpha-opcodes-create_contract_rootname.tz.out | 2 +- ...pha-opcodes-create_contract_rootname_alt.tz.out | 2 +- ..._alpha-opcodes-create_contract_with_view.tz.out | 2 +- ...-contracts_alpha-opcodes-diff_timestamps.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-dig_eq.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-dign.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-dip.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-dipn.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-dropn.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-dugn.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-dup-n.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-ediv.tz.out | 2 +- ...ython-contracts_alpha-opcodes-ediv_mutez.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-emit.tz.out | 2 +- ...python-contracts_alpha-opcodes-empty_map.tz.out | 2 +- ...thon-contracts_alpha-opcodes-exec_concat.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-first.tz.out | 2 +- ...cts_alpha-opcodes-get_and_update_big_map.tz.out | 2 +- ...ntracts_alpha-opcodes-get_and_update_map.tz.out | 2 +- ...ontracts_alpha-opcodes-get_big_map_value.tz.out | 2 +- ...on-contracts_alpha-opcodes-get_map_value.tz.out | 2 +- ...s_alpha-opcodes-hash_consistency_checker.tz.out | 2 +- ..._python-contracts_alpha-opcodes-hash_key.tz.out | 2 +- ...thon-contracts_alpha-opcodes-hash_string.tz.out | 2 +- ... tests_python-contracts_alpha-opcodes-if.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-if_some.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-int.tz.out | 2 +- ...python-contracts_alpha-opcodes-iter_fail.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-keccak.tz.out | 2 +- ...ython-contracts_alpha-opcodes-left_right.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-level.tz.out | 2 +- ...thon-contracts_alpha-opcodes-list_concat.tz.out | 2 +- ...ontracts_alpha-opcodes-list_concat_bytes.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-list_id.tz.out | 2 +- ...thon-contracts_alpha-opcodes-list_id_map.tz.out | 2 +- ...python-contracts_alpha-opcodes-list_iter.tz.out | 2 +- ...n-contracts_alpha-opcodes-list_map_block.tz.out | 2 +- ...python-contracts_alpha-opcodes-list_size.tz.out | 2 +- ...on-contracts_alpha-opcodes-loop_failwith.tz.out | 2 +- ...python-contracts_alpha-opcodes-loop_left.tz.out | 2 +- ...ntracts_alpha-opcodes-loop_left_failwith.tz.out | 2 +- ...python-contracts_alpha-opcodes-lsl_bytes.tz.out | 2 +- ...python-contracts_alpha-opcodes-lsr_bytes.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-map_car.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-map_id.tz.out | 2 +- ..._python-contracts_alpha-opcodes-map_iter.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-map_map.tz.out | 2 +- ...ntracts_alpha-opcodes-map_map_sideeffect.tz.out | 2 +- ...thon-contracts_alpha-opcodes-map_mem_nat.tz.out | 2 +- ...n-contracts_alpha-opcodes-map_mem_string.tz.out | 2 +- ..._python-contracts_alpha-opcodes-map_size.tz.out | 2 +- ...cts_alpha-opcodes-merge_comparable_pairs.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-mul.tz.out | 2 +- ...contracts_alpha-opcodes-mul_bls12_381_fr.tz.out | 2 +- ...contracts_alpha-opcodes-mul_bls12_381_g1.tz.out | 2 +- ...contracts_alpha-opcodes-mul_bls12_381_g2.tz.out | 2 +- ...hon-contracts_alpha-opcodes-mul_overflow.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-munch.tz.out | 2 +- ...acts_alpha-opcodes-mutez_to_bls12_381_fr.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-neg.tz.out | 2 +- ...contracts_alpha-opcodes-neg_bls12_381_fr.tz.out | 2 +- ...contracts_alpha-opcodes-neg_bls12_381_g1.tz.out | 2 +- ...contracts_alpha-opcodes-neg_bls12_381_g2.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-none.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-noop.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-not.tz.out | 2 +- ...ython-contracts_alpha-opcodes-not_binary.tz.out | 2 +- ...python-contracts_alpha-opcodes-not_bytes.tz.out | 2 +- ... tests_python-contracts_alpha-opcodes-or.tz.out | 2 +- ...python-contracts_alpha-opcodes-or_binary.tz.out | 2 +- ..._python-contracts_alpha-opcodes-or_bytes.tz.out | 2 +- ...ontracts_alpha-opcodes-originate_big_map.tz.out | 2 +- ...ython-contracts_alpha-opcodes-packunpack.tz.out | 2 +- ...n-contracts_alpha-opcodes-packunpack_rev.tz.out | 2 +- ...ntracts_alpha-opcodes-packunpack_rev_cty.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-pair_id.tz.out | 2 +- ...on-contracts_alpha-opcodes-pairing_check.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-pexec.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-pexec_2.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-proxy.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-ret_int.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-reverse.tz.out | 2 +- ...hon-contracts_alpha-opcodes-reverse_loop.tz.out | 2 +- ...tracts_alpha-opcodes-sapling_empty_state.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-self.tz.out | 2 +- ...hon-contracts_alpha-opcodes-self_address.tz.out | 2 +- ...lpha-opcodes-self_address_after_fib_view.tz.out | 2 +- ...a-opcodes-self_address_after_nonexistent_vi.out | 2 +- ...ts_alpha-opcodes-self_address_after_view.tz.out | 2 +- ...tracts_alpha-opcodes-self_after_fib_view.tz.out | 2 +- ...lpha-opcodes-self_after_nonexistent_view.tz.out | 2 +- ...-contracts_alpha-opcodes-self_after_view.tz.out | 2 +- ...pha-opcodes-self_with_default_entrypoint.tz.out | 2 +- ...racts_alpha-opcodes-self_with_entrypoint.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-sender.tz.out | 2 +- ...acts_alpha-opcodes-sender_after_fib_view.tz.out | 2 +- ...ha-opcodes-sender_after_nonexistent_view.tz.out | 2 +- ...ontracts_alpha-opcodes-sender_after_view.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-set_car.tz.out | 2 +- ...s_python-contracts_alpha-opcodes-set_cdr.tz.out | 2 +- ...hon-contracts_alpha-opcodes-set_delegate.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-set_id.tz.out | 2 +- ..._python-contracts_alpha-opcodes-set_iter.tz.out | 2 +- ...ython-contracts_alpha-opcodes-set_member.tz.out | 2 +- ..._python-contracts_alpha-opcodes-set_size.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-sets.tz.out | 2 +- ...ests_python-contracts_alpha-opcodes-sha3.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-shifts.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-slice.tz.out | 2 +- ...thon-contracts_alpha-opcodes-slice_bytes.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-slices.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-source.tz.out | 2 +- ...thon-contracts_alpha-opcodes-split_bytes.tz.out | 2 +- ...hon-contracts_alpha-opcodes-split_string.tz.out | 2 +- ...ntracts_alpha-opcodes-store_bls12_381_fr.tz.out | 2 +- ...ntracts_alpha-opcodes-store_bls12_381_g1.tz.out | 2 +- ...ntracts_alpha-opcodes-store_bls12_381_g2.tz.out | 2 +- ...thon-contracts_alpha-opcodes-store_input.tz.out | 2 +- ...python-contracts_alpha-opcodes-store_now.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-str_id.tz.out | 2 +- ...tracts_alpha-opcodes-sub_timestamp_delta.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-subset.tz.out | 2 +- ...thon-contracts_alpha-opcodes-tez_add_sub.tz.out | 2 +- ...ython-contracts_alpha-opcodes-ticket_bad.tz.out | 2 +- ...contracts_alpha-opcodes-ticket_big_store.tz.out | 2 +- ...thon-contracts_alpha-opcodes-ticket_join.tz.out | 2 +- ...thon-contracts_alpha-opcodes-ticket_read.tz.out | 2 +- ...hon-contracts_alpha-opcodes-ticket_split.tz.out | 2 +- ...n-contracts_alpha-opcodes-ticket_store-2.tz.out | 2 +- ...hon-contracts_alpha-opcodes-ticket_store.tz.out | 2 +- ...ython-contracts_alpha-opcodes-ticketer-2.tz.out | 2 +- ..._python-contracts_alpha-opcodes-ticketer.tz.out | 2 +- ...-contracts_alpha-opcodes-transfer_amount.tz.out | 2 +- ...-contracts_alpha-opcodes-transfer_tokens.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-uncomb.tz.out | 2 +- ...ts_python-contracts_alpha-opcodes-unpair.tz.out | 2 +- ...a-opcodes-unpair_field_annotation_mismatch..out | 2 +- ...n-contracts_alpha-opcodes-update_big_map.tz.out | 2 +- ...python-contracts_alpha-opcodes-utxo_read.tz.out | 2 +- ...sts_python-contracts_alpha-opcodes-utxor.tz.out | 2 +- ..._python-contracts_alpha-opcodes-view_fib.tz.out | 2 +- ...acts_alpha-opcodes-view_mutual_recursion.tz.out | 2 +- ...thon-contracts_alpha-opcodes-view_op_add.tz.out | 2 +- ...contracts_alpha-opcodes-view_op_constant.tz.out | 2 +- ...ython-contracts_alpha-opcodes-view_op_id.tz.out | 2 +- ...s_alpha-opcodes-view_op_nonexistent_addr.tz.out | 2 +- ...s_alpha-opcodes-view_op_nonexistent_func.tz.out | 2 +- ...alpha-opcodes-view_op_test_step_contants.tz.out | 2 +- ...a-opcodes-view_op_toplevel_inconsistent_inp.out | 2 +- ...a-opcodes-view_op_toplevel_inconsistent_out.out | 2 +- ..._python-contracts_alpha-opcodes-view_rec.tz.out | 2 +- ...ontracts_alpha-opcodes-view_toplevel_lib.tz.out | 2 +- ...hon-contracts_alpha-opcodes-voting_power.tz.out | 2 +- ...tests_python-contracts_alpha-opcodes-xor.tz.out | 2 +- ...python-contracts_alpha-opcodes-xor_bytes.tz.out | 2 +- 319 files changed, 321 insertions(+), 335 deletions(-) delete mode 100644 tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-accounts.tz.out (98%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-add1.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-add1_list.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-after_strategy.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-always.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-append.tz.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-at_least.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-auction.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-bad_lockup.tz.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-big_map_union.tz.out (88%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cadr_annotation.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-concat.tz.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-conditionals.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cons_twice.tz.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cps_fact.tz.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-create_add1_lists.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-data_publisher.tz.out (94%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-dispatch.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-empty.tz.out (58%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-fail_amount.tz.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-faucet.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-forward.tz.out (99%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-id.tz.out (59%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-infinite_loop.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-insertion_sort.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-int_publisher.tz.out (95%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-king_of_tez.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-list_of_transactions.tz.out (90%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-queue.tz.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reduce_map.tz.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reentrancy.tz.out (90%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reservoir.tz.out (95%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-scrutable_reservoir.tz.out (98%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-spawn_identities.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-big_map_entrypoints.tz.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-delegatable_target.tz.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-manager.tz.out (87%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-no_default_target.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-no_entrypoint_target.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-rooted_target.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-simple_entrypoints.tz.out (59%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert.tz.out (62%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpeq.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpge.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpgt.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmple.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmplt.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpneq.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_eq.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_ge.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_gt.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_le.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_lt.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_neq.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-big_map_get_add.tz.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-big_map_mem.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-build_list.tz.out (88%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-carn_and_cdrn.tz.out (87%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-compare.tz.out (94%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-compare_bytes.tz.out (94%) create mode 100644 tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-fail.tz.out rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-guestbook.tz.out (86%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-macro_annotations.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-map_caddaadr.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-max_in_list.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-min.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-pair_macro.tz.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-set_caddaadr.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-take_my_money.tz.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-unpair_macro.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-add_clear_tickets.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-authentication.tz.out (91%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_entrypoints.tz.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_magic.tz.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_read.tz.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_store.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_write.tz.out (73%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-create_contract.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-create_contract_simple.tz.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-default_account.tz.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_appender.t.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_caller.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_storer.tz.out (64%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-fa12_reference.tz.out (99%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-generic_multisig.tz.out (98%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-groth16.tz.out (98%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-hardlimit.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-legacy_multisig.tz.out (98%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-lockup.tz.out (90%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-lqt_fa12.mligo.tz.out (99%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-multiple_en2.tz.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-multiple_entrypoints_count.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-originate_contract.tz.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-parameterized_multisig.tz.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--receive_tickets_in_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-receive_tickets_in_big_map.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-replay.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-reveal_signed_preimage.tz.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--send_tickets_in_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-send_tickets_in_big_map.tz.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_builder_fungible.tz.out (91%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_builder_non_fungibl.out (91%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_wallet_fungible.tz.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_wallet_non_fungible.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-vote_for_delegate.tz.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-weather_insurance.tz.out (95%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-xcat.tz.out (94%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-xcat_dapp.tz.out (98%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bad_annot_contract.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bug_262.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bug_843.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-pairk_annot.tz.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-abs.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add.tz.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_fr.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_g1.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_g2.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_delta_timestamp.tz.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_timestamp_delta.tz.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-address.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_fib_view.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_nonexistent_view.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_view.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_binary.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_bytes.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_logical_1.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance.tz.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_fib_view.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_nonexistent_view.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_view.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_mem_nat.tz.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_mem_string.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_to_self.tz.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_push_bytes_not_padde.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_push_nat.tz.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_to_int.tz.out (60%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_to_mutez.tz.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_z_int.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_z_nat.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_z_fr_int.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_z_fr_nat.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bytes.tz.out (58%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-car.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-cdr.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-chain_id.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-chain_id_store.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-check_signature.tz.out (87%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-get.tz.out (89%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-literals.tz.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-set-2.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-set.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb.tz.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare.tz.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare_big_type.tz.out (99%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare_big_type2.tz.out (99%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comparisons.tz.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_hello.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_hello_bytes.tz.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_list.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-cons.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-contains_all.tz.out (94%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-contract.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_rootname.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_rootname_alt.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_with_view.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-diff_timestamps.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dig_eq.tz.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dign.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dip.tz.out (73%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dipn.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dropn.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dugn.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dup-n.tz.out (88%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ediv.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ediv_mutez.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-emit.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-empty_map.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-exec_concat.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-first.tz.out (64%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_and_update_big_map.tz.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_and_update_map.tz.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_big_map_value.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_map_value.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_consistency_checker.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_key.tz.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_string.tz.out (64%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-if.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-if_some.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-int.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-iter_fail.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-keccak.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-left_right.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-level.tz.out (60%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_concat.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_concat_bytes.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_id.tz.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_id_map.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_iter.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_map_block.tz.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_size.tz.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_failwith.tz.out (62%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_left.tz.out (88%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_left_failwith.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--lsl_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-lsl_bytes.tz.out (86%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--lsr_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-lsr_bytes.tz.out (89%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_car.tz.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_id.tz.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_iter.tz.out (88%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_map.tz.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_map_sideeffect.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_mem_nat.tz.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_mem_string.tz.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_size.tz.out (62%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-merge_comparable_pairs.tz.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul.tz.out (91%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_fr.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_g1.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_g2.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_overflow.tz.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-munch.tz.out (64%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mutez_to_bls12_381_fr.tz.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg.tz.out (64%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_fr.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_g1.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_g2.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-none.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-noop.tz.out (58%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not_binary.tz.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not_bytes.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or.tz.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or_binary.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or_bytes.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-originate_big_map.tz.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack_rev.tz.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack_rev_cty.tz.out (99%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pair_id.tz.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pairing_check.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pexec.tz.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pexec_2.tz.out (87%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-proxy.tz.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ret_int.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-reverse.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-reverse_loop.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sapling_empty_state.tz.out (64%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address.tz.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_fib_view.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_nonexistent_vi.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_view.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_fib_view.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_nonexistent_view.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_view.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_with_default_entrypoint.tz.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_with_entrypoint.tz.out (91%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender.tz.out (62%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_fib_view.tz.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_nonexistent_view.tz.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_view.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_car.tz.out (73%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_cdr.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_delegate.tz.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_id.tz.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_iter.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_member.tz.out (86%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_size.tz.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sets.tz.out (91%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sha3.tz.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-shifts.tz.out (73%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slice.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slice_bytes.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slices.tz.out (96%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-source.tz.out (62%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-split_bytes.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-split_string.tz.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_fr.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_g1.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_g2.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_input.tz.out (58%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_now.tz.out (62%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-str_id.tz.out (64%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sub_timestamp_delta.tz.out (73%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-subset.tz.out (90%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-tez_add_sub.tz.out (86%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_bad.tz.out (59%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_big_store.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_join.tz.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_read.tz.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_split.tz.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_store-2.tz.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_store.tz.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticketer-2.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticketer.tz.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-transfer_amount.tz.out (60%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-transfer_tokens.tz.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-uncomb.tz.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-unpair.tz.out (98%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-unpair_field_annotation_mismatch..out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-update_big_map.tz.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-utxo_read.tz.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-utxor.tz.out (95%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_fib.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_mutual_recursion.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_add.tz.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_constant.tz.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_id.tz.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_nonexistent_addr.tz.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_nonexistent_func.tz.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_test_step_contants.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_toplevel_inconsistent_inp.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_toplevel_inconsistent_out.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_rec.tz.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_toplevel_lib.tz.out (95%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-voting_power.tz.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-xor.tz.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-xor_bytes.tz.out (84%) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out deleted file mode 100644 index 37b953f1163b..000000000000 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out +++ /dev/null @@ -1,5 +0,0 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/fail.tz] - -Well typed -Gas remaining: 1039998.449 units remaining -{ parameter unit ; storage unit ; code { FAIL } } diff --git a/tests_python/tests_alpha/test_contract.py b/tests_python/tests_alpha/test_contract.py index adb8f207f43a..03ecffb71768 100644 --- a/tests_python/tests_alpha/test_contract.py +++ b/tests_python/tests_alpha/test_contract.py @@ -377,20 +377,6 @@ class TestExecutionOrdering: assert client.get_storage(storer) == '"{}"'.format(expected) -@pytest.mark.contract -@pytest.mark.regression -class TestTypecheck: - """Regression testing of Michelson typechecking""" - - @pytest.mark.parametrize("contract", all_contracts()) - def test_typecheck(self, client_regtest: Client, contract): - client = client_regtest - assert contract.endswith( - '.tz' - ), "test contract should have .tz extension" - client.typecheck(os.path.join(CONTRACT_PATH, contract), details=True) - - @pytest.mark.slow @pytest.mark.contract class TestContracts: diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-accounts.tz.out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-accounts.tz.out index 80f2b3824cdb..ca301541231c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-accounts.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/accounts.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/accounts.tz --details Well typed Gas remaining: 1039932.585 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-add1.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-add1.tz.out index 222978e61737..b6639afc704a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-add1.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/add1.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/add1.tz --details Well typed Gas remaining: 1039996.774 units remaining { parameter int ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-add1_list.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-add1_list.tz.out index daaa2778764c..a7a301cd7783 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-add1_list.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/add1_list.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/add1_list.tz --details Well typed Gas remaining: 1039995.973 units remaining { parameter (list int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-after_strategy.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-after_strategy.tz.out index f094cdf4e3f7..72dd1e29a77d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-after_strategy.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/after_strategy.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/after_strategy.tz --details Well typed Gas remaining: 1039991.203 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-always.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-always.tz.out index 36959d0b9bec..cbaeeac4f9d4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-always.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/always.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/always.tz --details Well typed Gas remaining: 1039995.941 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-append.tz.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-append.tz.out index fc9ad53fe200..f2e6c285caa8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-append.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/append.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/append.tz --details Well typed Gas remaining: 1039993.459 units remaining { parameter (pair (list int) (list int)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-at_least.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-at_least.tz.out index 6cbac4e0723b..f9d6dfe995fd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-at_least.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/at_least.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/at_least.tz --details Well typed Gas remaining: 1039993.870 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-auction.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-auction.tz.out index c9d5dc14c92c..55dc0a83a9f8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-auction.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/auction.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/auction.tz --details Well typed Gas remaining: 1039974.418 units remaining { parameter key_hash ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-bad_lockup.tz.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-bad_lockup.tz.out index 321ad9a99587..b435a948cda4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-bad_lockup.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/bad_lockup.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/bad_lockup.tz --details Well typed Gas remaining: 1039974.993 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-big_map_union.tz.out similarity index 88% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-big_map_union.tz.out index 34f4ccc0a6a5..715438827007 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-big_map_union.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/big_map_union.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/big_map_union.tz --details Well typed Gas remaining: 1039987.459 units remaining { parameter (list (pair string int)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cadr_annotation.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cadr_annotation.tz.out index f2e67ba31334..2bab2ab20fdf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cadr_annotation.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/cadr_annotation.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/cadr_annotation.tz --details Well typed Gas remaining: 1039995.385 units remaining { parameter (pair (pair %p1 unit (string %no_name)) bool) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-concat.tz.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-concat.tz.out index 73dc09633c71..faf0b69777e1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-concat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/concat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/concat.tz --details Well typed Gas remaining: 1039993.578 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-conditionals.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-conditionals.tz.out index 3bc7212380ef..895d38506a53 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-conditionals.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/conditionals.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/conditionals.tz --details Well typed Gas remaining: 1039990.576 units remaining { parameter (or string (option int)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cons_twice.tz.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cons_twice.tz.out index a6c2095f31d5..b49546699fbb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cons_twice.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/cons_twice.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/cons_twice.tz --details Well typed Gas remaining: 1039993.758 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cps_fact.tz.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cps_fact.tz.out index d3b96edd3847..41d4655af048 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-cps_fact.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/cps_fact.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/cps_fact.tz --details Well typed Gas remaining: 1039976.109 units remaining { storage nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-create_add1_lists.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-create_add1_lists.tz.out index 9f96a6db9d53..68e2d2f531b5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-create_add1_lists.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/create_add1_lists.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/create_add1_lists.tz --details Well typed Gas remaining: 1039989.990 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-data_publisher.tz.out similarity index 94% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-data_publisher.tz.out index a22f6514ba1f..df0ee1742cc0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-data_publisher.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/data_publisher.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/data_publisher.tz --details Well typed Gas remaining: 1039975.804 units remaining { parameter (pair signature (pair string nat)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-dispatch.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-dispatch.tz.out index 6b1191e60bf0..63cb18d3fada 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-dispatch.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/dispatch.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/dispatch.tz --details Well typed Gas remaining: 1039983.006 units remaining { parameter (or string (pair string (lambda unit string))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-empty.tz.out similarity index 58% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-empty.tz.out index 6af222cd59df..6c8dec3b5f08 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-empty.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/empty.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/empty.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-fail_amount.tz.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-fail_amount.tz.out index 14c14fc71ba4..fa65a86d61a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-fail_amount.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/fail_amount.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/fail_amount.tz --details Well typed Gas remaining: 1039993.067 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-faucet.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-faucet.tz.out index aa120a0336a4..20e3e727f87c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-faucet.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/faucet.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/faucet.tz --details Well typed Gas remaining: 1039988.070 units remaining { parameter key_hash ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-forward.tz.out similarity index 99% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-forward.tz.out index 76aedad4258f..e2c55ae51233 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-forward.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/forward.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/forward.tz --details Well typed Gas remaining: 1039670.292 units remaining { parameter (or string nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-id.tz.out similarity index 59% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-id.tz.out index bf27cb0ea0c7..212b30c8ab2e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-id.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_input.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/id.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-infinite_loop.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-infinite_loop.tz.out index 4cfc7a5e1aa3..43b692a68dc2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-infinite_loop.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/infinite_loop.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/infinite_loop.tz --details Well typed Gas remaining: 1039995.465 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-insertion_sort.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-insertion_sort.tz.out index 230e24a7fe49..499a5f739bab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-insertion_sort.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/insertion_sort.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/insertion_sort.tz --details Well typed Gas remaining: 1039976.745 units remaining { parameter (list int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-int_publisher.tz.out similarity index 95% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-int_publisher.tz.out index 9f455774d8cc..8e4eefaa4e21 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-int_publisher.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/int_publisher.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/int_publisher.tz --details Well typed Gas remaining: 1039970.043 units remaining { parameter (option (pair signature int)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-king_of_tez.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-king_of_tez.tz.out index fc1026a1362c..3a7e2bc92e92 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-king_of_tez.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/king_of_tez.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/king_of_tez.tz --details Well typed Gas remaining: 1039974.327 units remaining { parameter key_hash ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-list_of_transactions.tz.out similarity index 90% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-list_of_transactions.tz.out index 9f7a77b1b9a4..0f5b585afef5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-list_of_transactions.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/list_of_transactions.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/list_of_transactions.tz --details Well typed Gas remaining: 1039985.482 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-queue.tz.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-queue.tz.out index 2bfb2caef50f..9daca69c8c43 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-queue.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/queue.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/queue.tz --details Well typed Gas remaining: 1039958.584 units remaining { parameter (option string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reduce_map.tz.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reduce_map.tz.out index aeedbf70fdb1..3034c3619d6b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reduce_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/reduce_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/reduce_map.tz --details Well typed Gas remaining: 1039978.486 units remaining { parameter (pair (lambda int int) (list int)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reentrancy.tz.out similarity index 90% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reentrancy.tz.out index cbf13b436298..171fe83a4381 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reentrancy.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/reentrancy.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/reentrancy.tz --details Well typed Gas remaining: 1039983.352 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reservoir.tz.out similarity index 95% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reservoir.tz.out index 69d97fe06818..1876bb92d73e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-reservoir.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/reservoir.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/reservoir.tz --details Well typed Gas remaining: 1039969.237 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-scrutable_reservoir.tz.out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-scrutable_reservoir.tz.out index b0029c20c347..10f110d8e462 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-scrutable_reservoir.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/scrutable_reservoir.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/scrutable_reservoir.tz --details Well typed Gas remaining: 1039889.171 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-spawn_identities.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-spawn_identities.tz.out index f96a83ad7159..0648072ed224 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-attic-spawn_identities.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/spawn_identities.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/attic/spawn_identities.tz --details Well typed Gas remaining: 1039976.440 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-big_map_entrypoints.tz.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-big_map_entrypoints.tz.out index f9e978d8a253..b884a975e7ac 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-big_map_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_entrypoints.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/entrypoints/big_map_entrypoints.tz --details Well typed Gas remaining: 1039953.156 units remaining { storage (pair (big_map string nat) (big_map string nat)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-delegatable_target.tz.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-delegatable_target.tz.out index 8d80074027c9..a26add702b75 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-delegatable_target.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[entrypoints/delegatable_target.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/entrypoints/delegatable_target.tz --details Well typed Gas remaining: 1039960.927 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-manager.tz.out similarity index 87% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-manager.tz.out index 4ba8f439bfee..267c34d878f9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-manager.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[entrypoints/manager.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/entrypoints/manager.tz --details Well typed Gas remaining: 1039984.397 units remaining { parameter (or (lambda %do unit (list operation)) (unit %default)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-no_default_target.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-no_default_target.tz.out index a7f452dd8f00..1a8083f90f2d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-no_default_target.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[entrypoints/no_default_target.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/entrypoints/no_default_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-no_entrypoint_target.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-no_entrypoint_target.tz.out index e6e20c07563a..142b527bbf5a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-no_entrypoint_target.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[entrypoints/no_entrypoint_target.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/entrypoints/no_entrypoint_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-rooted_target.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-rooted_target.tz.out index 3f9adb1d34bd..6e22c0c79add 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-rooted_target.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[entrypoints/rooted_target.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/entrypoints/rooted_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-simple_entrypoints.tz.out similarity index 59% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-simple_entrypoints.tz.out index 9963a21d1935..9462a2ec9669 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-entrypoints-simple_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[entrypoints/simple_entrypoints.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/entrypoints/simple_entrypoints.tz --details Well typed Gas remaining: 1039997.574 units remaining { parameter (or (unit %A) (or (string %B) (nat %C))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert.tz.out similarity index 62% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert.tz.out index e491eaf22aa4..4412bfc14aba 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert.tz --details Well typed Gas remaining: 1039995.213 units remaining { parameter bool ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpeq.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpeq.tz.out index ece915866f20..2fa98dc11fcd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpeq.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpeq.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_cmpeq.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpge.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpge.tz.out index 0b6f95236ee1..141ba24f753b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpge.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpge.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_cmpge.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpgt.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpgt.tz.out index 25977bfd6498..9396af0e9e2c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpgt.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpgt.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_cmpgt.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmple.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmple.tz.out index 1806e50514b1..65cefbba76db 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmple.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmple.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_cmple.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmplt.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmplt.tz.out index 18289280556e..88b2247ecfad 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmplt.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmplt.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_cmplt.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpneq.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpneq.tz.out index 767d9d5726f4..f08d8df6a78e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_cmpneq.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpneq.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_cmpneq.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_eq.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_eq.tz.out index 758c0c1c0353..6df80e608ab9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_eq.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_eq.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_eq.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_ge.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_ge.tz.out index 31b757882983..9b81e80446db 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_ge.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_ge.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_ge.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_gt.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_gt.tz.out index c1d7c46e0809..72979d83f73f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_gt.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_gt.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_gt.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_le.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_le.tz.out index a06439324409..03bd87d355ef 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_le.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_le.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_le.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_lt.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_lt.tz.out index ea92dc3db3f8..41fb9a65b9af 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_lt.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_lt.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_lt.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_neq.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_neq.tz.out index a226d05a2d5d..b7239a75e358 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-assert_neq.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_neq.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/assert_neq.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-big_map_get_add.tz.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-big_map_get_add.tz.out index 3989cfa1983f..5a95c4bd9248 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-big_map_get_add.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/big_map_get_add.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/big_map_get_add.tz --details Well typed Gas remaining: 1039971.186 units remaining { parameter (pair (pair %set_pair int (option int)) (pair %check_pair int (option int))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-big_map_mem.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-big_map_mem.tz.out index 849902ba7405..a221d369b6f0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-big_map_mem.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/big_map_mem.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/big_map_mem.tz --details Well typed Gas remaining: 1039984.191 units remaining { parameter (pair int bool) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-build_list.tz.out similarity index 88% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-build_list.tz.out index b6a56a22803b..bef433670807 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-build_list.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/build_list.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/build_list.tz --details Well typed Gas remaining: 1039985.111 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-carn_and_cdrn.tz.out similarity index 87% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-carn_and_cdrn.tz.out index b216231b4581..66a75bad7824 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-carn_and_cdrn.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/carn_and_cdrn.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/carn_and_cdrn.tz --details Well typed Gas remaining: 1039965.224 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-compare.tz.out similarity index 94% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-compare.tz.out index c89d438ef8e6..9c49dce0477f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-compare.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/compare.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/compare.tz --details Well typed Gas remaining: 1039971.322 units remaining { parameter (pair mutez mutez) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-compare_bytes.tz.out similarity index 94% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-compare_bytes.tz.out index 4795b3ca50b7..955c28a0156c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-compare_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/compare_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/compare_bytes.tz --details Well typed Gas remaining: 1039971.322 units remaining { parameter (pair bytes bytes) ; diff --git a/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-fail.tz.out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-fail.tz.out new file mode 100644 index 000000000000..5d9648d685c9 --- /dev/null +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-fail.tz.out @@ -0,0 +1,5 @@ + +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/fail.tz --details +Well typed +Gas remaining: 1039998.449 units remaining +{ parameter unit ; storage unit ; code { FAIL } } diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-guestbook.tz.out similarity index 86% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-guestbook.tz.out index 8b85a68338aa..eb816cfa5c35 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-guestbook.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/guestbook.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/guestbook.tz --details Well typed Gas remaining: 1039988.143 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-macro_annotations.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-macro_annotations.tz.out index b8a11069aba5..7d7893e9237e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-macro_annotations.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/macro_annotations.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/macro_annotations.tz --details Well typed Gas remaining: 1039993.362 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-map_caddaadr.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-map_caddaadr.tz.out index 2cfb52f9d84e..057626a6abec 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-map_caddaadr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/map_caddaadr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/map_caddaadr.tz --details Well typed Gas remaining: 1039966.766 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-max_in_list.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-max_in_list.tz.out index 57e72bf876b2..b9fcc2364530 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-max_in_list.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/max_in_list.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/max_in_list.tz --details Well typed Gas remaining: 1039987.861 units remaining { parameter (list int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-min.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-min.tz.out index e876dd084935..5304471a3129 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-min.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/min.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/min.tz --details Well typed Gas remaining: 1039991.951 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-pair_macro.tz.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-pair_macro.tz.out index 30ce0dba4fa9..9d9fbd9f12f1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-pair_macro.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/pair_macro.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/pair_macro.tz --details Well typed Gas remaining: 1039988.858 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-set_caddaadr.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-set_caddaadr.tz.out index 51ddc75b1799..7c5abcf27310 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-set_caddaadr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/set_caddaadr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/set_caddaadr.tz --details Well typed Gas remaining: 1039970.670 units remaining { parameter mutez ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-take_my_money.tz.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-take_my_money.tz.out index a6c6daa011ac..4076c0321b94 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-take_my_money.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/take_my_money.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/take_my_money.tz --details Well typed Gas remaining: 1039993.750 units remaining { parameter key_hash ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-unpair_macro.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-unpair_macro.tz.out index 9a2a0a685964..a9c8d2b993bb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-macros-unpair_macro.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/unpair_macro.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/macros/unpair_macro.tz --details Well typed Gas remaining: 1039977.130 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-add_clear_tickets.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-add_clear_tickets.tz.out index e4c1396edeec..5c319c1f8a30 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-add_clear_tickets.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/add_clear_tickets.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/add_clear_tickets.tz --details Well typed Gas remaining: 1039988.509 units remaining { parameter (or (pair %add nat string) (unit %clear)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-authentication.tz.out similarity index 91% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-authentication.tz.out index 8c4d7c57c49e..fb9588d27f1a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-authentication.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/authentication.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/authentication.tz --details Well typed Gas remaining: 1039979.836 units remaining { parameter (pair (lambda unit (list operation)) signature) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_entrypoints.tz.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_entrypoints.tz.out index 7f6f9a884c8c..0c081589dc08 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[entrypoints/big_map_entrypoints.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/big_map_entrypoints.tz --details Well typed Gas remaining: 1039953.156 units remaining { storage (pair (big_map string nat) (big_map string nat)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_magic.tz.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_magic.tz.out index 68896cac20ac..7750d275608b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_magic.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_magic.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/big_map_magic.tz --details Well typed Gas remaining: 1039954.710 units remaining { storage (or (pair (big_map string string) (big_map string string)) unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_read.tz.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_read.tz.out index ec6db73a1857..d6e34f3a0c4d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_read.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_read.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/big_map_read.tz --details Well typed Gas remaining: 1039994.234 units remaining { storage nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_store.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_store.tz.out index 03a288add64c..891db68d2916 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_store.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_store.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/big_map_store.tz --details Well typed Gas remaining: 1039996.856 units remaining { storage (big_map nat nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_write.tz.out similarity index 73% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_write.tz.out index bbde2d802194..0becd6891045 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-big_map_write.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_write.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/big_map_write.tz --details Well typed Gas remaining: 1039994.982 units remaining { storage unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-create_contract.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-create_contract.tz.out index 062baf99cca9..1089299c75cc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-create_contract.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/create_contract.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/create_contract.tz --details Well typed Gas remaining: 1039973.277 units remaining { parameter (option address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-create_contract_simple.tz.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-create_contract_simple.tz.out index 98008905cba8..ea774f0d2b48 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-create_contract_simple.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/create_contract_simple.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/create_contract_simple.tz --details Well typed Gas remaining: 1039991.809 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-default_account.tz.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-default_account.tz.out index ad621ed13f2a..5bbb4c2c044e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-default_account.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/default_account.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/default_account.tz --details Well typed Gas remaining: 1039993.750 units remaining { parameter key_hash ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_appender.t.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_appender.t.out index feeae3bafa24..397a914daa79 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_appender.t.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_appender.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/execution_order_appender.tz --details Well typed Gas remaining: 1039990.644 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_caller.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_caller.tz.out index 6919564b00ed..0c8524e0db96 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_caller.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_caller.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/execution_order_caller.tz --details Well typed Gas remaining: 1039992.571 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_storer.tz.out similarity index 64% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_storer.tz.out index 0c361e6bbf93..1e30224425ba 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-execution_order_storer.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_storer.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/execution_order_storer.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-fa12_reference.tz.out similarity index 99% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-fa12_reference.tz.out index 2afd063fd293..1112ef56b359 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-fa12_reference.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/fa12_reference.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/fa12_reference.tz --details Well typed Gas remaining: 1039349.178 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-generic_multisig.tz.out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-generic_multisig.tz.out index 195e3f2250b1..afb753fad62f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-generic_multisig.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/generic_multisig.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/generic_multisig.tz --details Well typed Gas remaining: 1039939.911 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-groth16.tz.out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-groth16.tz.out index 26ffe844b246..6d3c4e2ad0eb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-groth16.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/groth16.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/groth16.tz --details Well typed Gas remaining: 1039536.287 units remaining { storage unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-hardlimit.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-hardlimit.tz.out index b69ba51e2d5e..bb2a366928ab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-hardlimit.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/hardlimit.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/hardlimit.tz --details Well typed Gas remaining: 1039992.503 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-legacy_multisig.tz.out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-legacy_multisig.tz.out index a4c27fb35931..a9d36a1d37ba 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-legacy_multisig.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/legacy_multisig.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/legacy_multisig.tz --details Well typed Gas remaining: 1039943.391 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-lockup.tz.out similarity index 90% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-lockup.tz.out index e4d896a820ab..457587141077 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-lockup.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/lockup.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/lockup.tz --details Well typed Gas remaining: 1039983.115 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-lqt_fa12.mligo.tz.out similarity index 99% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-lqt_fa12.mligo.tz.out index 4374ef822b5b..91a764f9e1b1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-lqt_fa12.mligo.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/lqt_fa12.mligo.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/lqt_fa12.mligo.tz --details Well typed Gas remaining: 1039738.642 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-multiple_en2.tz.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-multiple_en2.tz.out index 08137ff2a3b9..f290d14ef569 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-multiple_en2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/multiple_en2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/multiple_en2.tz --details Well typed Gas remaining: 1039928.052 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-multiple_entrypoints_count.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-multiple_entrypoints_count.out index f0b438bb78b0..b4072f7a5f54 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-multiple_entrypoints_count.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/multiple_entrypoints_counter.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/multiple_entrypoints_counter.tz --details Well typed Gas remaining: 1039930.762 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-originate_contract.tz.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-originate_contract.tz.out index 66fe903450c8..fc9eef449c44 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-originate_contract.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/originate_contract.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/originate_contract.tz --details Well typed Gas remaining: 1039991.040 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-parameterized_multisig.tz.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-parameterized_multisig.tz.out index b0d17439bd1d..e0766b7c45db 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-parameterized_multisig.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/parameterized_multisig.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/parameterized_multisig.tz --details Well typed Gas remaining: 1039940.583 units remaining { storage (pair bool (pair (map nat (pair bool bool)) (pair key key))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--receive_tickets_in_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-receive_tickets_in_big_map.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--receive_tickets_in_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-receive_tickets_in_big_map.out index ee5fc76c0c4c..251db544fc0e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--receive_tickets_in_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-receive_tickets_in_big_map.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/receive_tickets_in_big_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/receive_tickets_in_big_map.tz --details Well typed Gas remaining: 1039997.029 units remaining { parameter (big_map int (ticket string)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-replay.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-replay.tz.out index d46c2729c873..85b6b3ae7fe0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-replay.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/replay.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/replay.tz --details Well typed Gas remaining: 1039990.860 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-reveal_signed_preimage.tz.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-reveal_signed_preimage.tz.out index afe8a08222a3..bc96fb4107e4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-reveal_signed_preimage.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/reveal_signed_preimage.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/reveal_signed_preimage.tz --details Well typed Gas remaining: 1039978.896 units remaining { parameter (pair bytes signature) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--send_tickets_in_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-send_tickets_in_big_map.tz.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--send_tickets_in_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-send_tickets_in_big_map.tz.out index 01a8967082cc..4d6261833372 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--send_tickets_in_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-send_tickets_in_big_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/send_tickets_in_big_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/send_tickets_in_big_map.tz --details Well typed Gas remaining: 1039967.113 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_builder_fungible.tz.out similarity index 91% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_builder_fungible.tz.out index 3c5c447d53c4..96800daac722 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_builder_fungible.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_builder_fungible.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/ticket_builder_fungible.tz --details Well typed Gas remaining: 1039974.006 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_builder_non_fungibl.out similarity index 91% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_builder_non_fungibl.out index 1752d084e472..ae528e20418f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_builder_non_fungibl.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_builder_non_fungible.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/ticket_builder_non_fungible.tz --details Well typed Gas remaining: 1039971.519 units remaining { parameter (or (ticket %burn nat) (contract %mint_destination (ticket nat))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_wallet_fungible.tz.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_wallet_fungible.tz.out index 0e28e93a993e..77a199ecfe39 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_wallet_fungible.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_wallet_fungible.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/ticket_wallet_fungible.tz --details Well typed Gas remaining: 1039937.454 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_wallet_non_fungible.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_wallet_non_fungible.out index f379061c3fd6..4a9bfa8762f9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-ticket_wallet_non_fungible.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_wallet_non_fungible.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/ticket_wallet_non_fungible.tz --details Well typed Gas remaining: 1039959.702 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-vote_for_delegate.tz.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-vote_for_delegate.tz.out index 18e9dbe7d5b8..e6cfba190c4e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-vote_for_delegate.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/vote_for_delegate.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/vote_for_delegate.tz --details Well typed Gas remaining: 1039945.231 units remaining { parameter (option key_hash) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-weather_insurance.tz.out similarity index 95% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-weather_insurance.tz.out index 6edf8db988b1..b312784900c9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-weather_insurance.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/weather_insurance.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/weather_insurance.tz --details Well typed Gas remaining: 1039963.680 units remaining { parameter (pair (signature %signed_weather_data) (nat :rain %actual_level)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-xcat.tz.out similarity index 94% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-xcat.tz.out index 6781bc9181af..c23db6ed13d2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-xcat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/xcat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/xcat.tz --details Well typed Gas remaining: 1039967.905 units remaining { parameter bytes ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-xcat_dapp.tz.out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-xcat_dapp.tz.out index 49c7b140e9df..9be8a003ff71 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-mini_scenarios-xcat_dapp.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/xcat_dapp.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/mini_scenarios/xcat_dapp.tz --details Well typed Gas remaining: 1039922.932 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bad_annot_contract.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bad_annot_contract.tz.out index a48ddfdce697..036d9ea21e2e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bad_annot_contract.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[non_regression/bad_annot_contract.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/non_regression/bad_annot_contract.tz --details Well typed Gas remaining: 1039996.681 units remaining { parameter bytes ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bug_262.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bug_262.tz.out index 4720c1f26eab..5e53f5d2d240 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bug_262.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[non_regression/bug_262.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/non_regression/bug_262.tz --details Well typed Gas remaining: 1039995.909 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bug_843.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bug_843.tz.out index 0efea4ae84a9..869ce67d0e6f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-bug_843.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[non_regression/bug_843.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/non_regression/bug_843.tz --details Well typed Gas remaining: 1039993.849 units remaining { parameter never ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-pairk_annot.tz.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-pairk_annot.tz.out index 04bab724bd66..1ea73f6c3ec9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-non_regression-pairk_annot.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[non_regression/pairk_annot.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/non_regression/pairk_annot.tz --details Well typed Gas remaining: 1039993.678 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-abs.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-abs.tz.out index c96116ca008a..169948617c48 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-abs.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/abs.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/abs.tz --details Well typed Gas remaining: 1039992.714 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add.tz.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add.tz.out index 52272097b1f6..b04495dda5dd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/add.tz --details Well typed Gas remaining: 1039947.571 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_fr.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_fr.tz.out index c58a7575dac1..238113ed8e69 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_fr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/add_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_fr bls12_381_fr) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_g1.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_g1.tz.out index 6c48c0c0a575..bee9827fbfef 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_g1.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/add_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g1 bls12_381_g1) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_g2.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_g2.tz.out index fb086bee9f5e..346df9259a22 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_g2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/add_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g2 bls12_381_g2) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_delta_timestamp.tz.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_delta_timestamp.tz.out index e0ee4f21b7b7..848bf1b55591 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_delta_timestamp.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_delta_timestamp.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/add_delta_timestamp.tz --details Well typed Gas remaining: 1039994.398 units remaining { parameter (pair int timestamp) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_timestamp_delta.tz.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_timestamp_delta.tz.out index 9e67f070de40..5a08e8951de7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-add_timestamp_delta.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_timestamp_delta.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/add_timestamp_delta.tz --details Well typed Gas remaining: 1039994.398 units remaining { parameter (pair timestamp int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-address.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-address.tz.out index 6dafccd3b4c2..af866fd68467 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-address.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/address.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/address.tz --details Well typed Gas remaining: 1039996.754 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_fib_view.tz.out index bab889e7fccc..705db60202c7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_fib_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/amount_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_nonexistent_view.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_nonexistent_view.tz.out index 2da78b9c572b..ecdbb64856fe 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_nonexistent_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/amount_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.775 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_view.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_view.tz.out index 1c7c62137e83..f842812805f2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-amount_after_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/amount_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and.tz.out index 17928dded762..c054695c4aa9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/and.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/and.tz --details Well typed Gas remaining: 1039995.193 units remaining { parameter (pair :param (bool %first) (bool %second)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_binary.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_binary.tz.out index 87991e075274..2d0e504b0159 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_binary.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_binary.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/and_binary.tz --details Well typed Gas remaining: 1039972.796 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_bytes.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_bytes.tz.out index daf6c42a8204..a35ce62ffa9b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/and_bytes.tz --details Well typed Gas remaining: 1039978.916 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_logical_1.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_logical_1.tz.out index f32d466a2599..25e680d996f9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-and_logical_1.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_logical_1.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/and_logical_1.tz --details Well typed Gas remaining: 1039996.814 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance.tz.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance.tz.out index 8fc0f466e497..b8ec5318a6ac 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/balance.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_fib_view.tz.out index 02bbe5aa50e3..4e3b63121d6f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_fib_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/balance_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_nonexistent_view.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_nonexistent_view.tz.out index 3fc7feb1ae8f..b5ef24a0798e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_nonexistent_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/balance_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.775 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_view.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_view.tz.out index 0782043d9961..28191139f8ea 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-balance_after_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/balance_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_mem_nat.tz.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_mem_nat.tz.out index 1e27896c771d..6b1e73afe9d5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_mem_nat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_mem_nat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/big_map_mem_nat.tz --details Well typed Gas remaining: 1039993.494 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_mem_string.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_mem_string.tz.out index 680fe2920f8c..4472c61f19f1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_mem_string.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_mem_string.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/big_map_mem_string.tz --details Well typed Gas remaining: 1039993.494 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_to_self.tz.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_to_self.tz.out index 1ba9473d0aeb..c1a00a34097d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-big_map_to_self.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_to_self.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/big_map_to_self.tz --details Well typed Gas remaining: 1039987.387 units remaining { parameter (or (pair %have_fun (big_map string nat) unit) (unit %default)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_push_bytes_not_padde.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_push_bytes_not_padde.out index 29ee7d242603..6f2e92b25525 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_push_bytes_not_padde.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_push_bytes_not_padded.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bls12_381_fr_push_bytes_not_padded.tz --details Well typed Gas remaining: 1039996.436 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_push_nat.tz.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_push_nat.tz.out index 157f317a6377..70bb3ae87514 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_push_nat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_push_nat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bls12_381_fr_push_nat.tz --details Well typed Gas remaining: 1039996.436 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_to_int.tz.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_to_int.tz.out index a674efcf3429..9dfbbafdea48 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_to_int.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_to_int.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bls12_381_fr_to_int.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_to_mutez.tz.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_to_mutez.tz.out index c5b28f8c640c..7a8ee232c4a9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_to_mutez.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_to_mutez.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bls12_381_fr_to_mutez.tz --details Well typed Gas remaining: 1039993.594 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_z_int.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_z_int.tz.out index 88107da091e9..629c0b68bc8a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_z_int.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_z_int.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter int ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_z_nat.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_z_nat.tz.out index ff016e1bf008..e3020305b71b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_fr_z_nat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_z_nat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_z_fr_int.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_z_fr_int.tz.out index 39858d8e0ef7..c0ca556e7e30 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_z_fr_int.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_z_fr_int.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter int ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_z_fr_nat.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_z_fr_nat.tz.out index 4c7c327425f3..f69337272ba6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bls12_381_z_fr_nat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_z_fr_nat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bytes.tz.out similarity index 58% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bytes.tz.out index 9cbb80e8d0b0..38716581344d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/bytes.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter bytes ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-car.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-car.tz.out index a80fcc1e17d7..49e2be00b623 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-car.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/car.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/car.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (pair (nat :l) (nat :r)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-cdr.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-cdr.tz.out index 72a54fce4f4d..d3158afef69e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-cdr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/cdr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/cdr.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (pair (nat :l) (nat :r)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-chain_id.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-chain_id.tz.out index 2257bd15562b..539b668f7c79 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-chain_id.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/chain_id.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/chain_id.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-chain_id_store.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-chain_id_store.tz.out index 52cba52c7af7..0a8a1711e76e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-chain_id_store.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/chain_id_store.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/chain_id_store.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-check_signature.tz.out similarity index 87% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-check_signature.tz.out index b3cea351c8a0..8beaf7cd56db 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-check_signature.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/check_signature.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/check_signature.tz --details Well typed Gas remaining: 1039988.984 units remaining { parameter key ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-get.tz.out similarity index 89% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-get.tz.out index 75bfca0bf58e..57cda1d9d4de 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-get.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-get.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/comb-get.tz --details Well typed Gas remaining: 1039966.252 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-literals.tz.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-literals.tz.out index da32ffc23977..a2c186d1de1d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-literals.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-literals.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/comb-literals.tz --details Well typed Gas remaining: 1039993.270 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-set-2.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-set-2.tz.out index 6437940e01ea..6fbc6838a20d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-set-2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-set-2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/comb-set-2.tz --details Well typed Gas remaining: 1039991.581 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-set.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-set.tz.out index 621bc67410b0..ad991cb8f115 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb-set.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-set.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/comb-set.tz --details Well typed Gas remaining: 1039991.623 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb.tz.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb.tz.out index 33a614d10559..aa4f6729a12e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comb.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/comb.tz --details Well typed Gas remaining: 1039995.014 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare.tz.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare.tz.out index 6a2909937894..143aa7395df8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/compare.tz --details Well typed Gas remaining: 1039841.663 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare_big_type.tz.out similarity index 99% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare_big_type.tz.out index 424c311228bb..25adf3c18398 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare_big_type.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare_big_type.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/compare_big_type.tz --details Well typed Gas remaining: 1039129.907 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare_big_type2.tz.out similarity index 99% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare_big_type2.tz.out index 6d22c6401e0f..724e95925265 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-compare_big_type2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare_big_type2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/compare_big_type2.tz --details Well typed Gas remaining: 1038995.158 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comparisons.tz.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comparisons.tz.out index 44dec393dbed..60668a64aabc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-comparisons.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comparisons.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/comparisons.tz --details Well typed Gas remaining: 1039977.212 units remaining { parameter (list int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_hello.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_hello.tz.out index bae595c675f0..de034c540c80 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_hello.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_hello.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/concat_hello.tz --details Well typed Gas remaining: 1039995.899 units remaining { parameter (list string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_hello_bytes.tz.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_hello_bytes.tz.out index 374e345a0901..be58dd13e258 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_hello_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_hello_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/concat_hello_bytes.tz --details Well typed Gas remaining: 1039995.973 units remaining { parameter (list bytes) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_list.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_list.tz.out index 6631b345ac05..4a120e00d354 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-concat_list.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_list.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/concat_list.tz --details Well typed Gas remaining: 1039992.537 units remaining { parameter (list string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-cons.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-cons.tz.out index 634b39c02ff2..ff66220e53f3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-cons.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/cons.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/cons.tz --details Well typed Gas remaining: 1039997.240 units remaining { parameter int ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-contains_all.tz.out similarity index 94% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-contains_all.tz.out index b02e5d9d8740..3b6591246b8b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-contains_all.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/contains_all.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/contains_all.tz --details Well typed Gas remaining: 1039974.767 units remaining { parameter (pair (list string) (list string)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-contract.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-contract.tz.out index 3c1118a535fb..e014c6b607b3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-contract.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/contract.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/contract.tz --details Well typed Gas remaining: 1039994.190 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract.tz.out index 479a2c109ba3..35109a99d43a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/create_contract.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_rootname.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_rootname.tz.out index e73ce156d14a..41ad4aa83425 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_rootname.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_rootname.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/create_contract_rootname.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_rootname_alt.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_rootname_alt.tz.out index a7491c7452cc..59a12957fc47 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_rootname_alt.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_rootname_alt.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/create_contract_rootname_alt.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_with_view.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_with_view.tz.out index b39adfae8536..73a687f3d164 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-create_contract_with_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_with_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/create_contract_with_view.tz --details Well typed Gas remaining: 1039990.516 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-diff_timestamps.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-diff_timestamps.tz.out index 9a1ae97964bf..ff57a0eb8394 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-diff_timestamps.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/diff_timestamps.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/diff_timestamps.tz --details Well typed Gas remaining: 1039995.013 units remaining { parameter (pair timestamp timestamp) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dig_eq.tz.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dig_eq.tz.out index f10e10510b43..79eaaf280dab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dig_eq.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dig_eq.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/dig_eq.tz --details Well typed Gas remaining: 1039909.247 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dign.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dign.tz.out index 8e7603635c8b..a33e0fdf7d02 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dign.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dign.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/dign.tz --details Well typed Gas remaining: 1039992.220 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dip.tz.out similarity index 73% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dip.tz.out index 78dad8a4dced..b7d967e7ca3b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dip.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dip.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/dip.tz --details Well typed Gas remaining: 1039994.918 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dipn.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dipn.tz.out index bfb77247f1bf..4fbf1e9f0fe5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dipn.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dipn.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/dipn.tz --details Well typed Gas remaining: 1039991.330 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dropn.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dropn.tz.out index 98f625ea044d..86f4f2769c6f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dropn.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dropn.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/dropn.tz --details Well typed Gas remaining: 1039994.587 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dugn.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dugn.tz.out index ff31b2338918..3f706adefff0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dugn.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dugn.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/dugn.tz --details Well typed Gas remaining: 1039992.716 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dup-n.tz.out similarity index 88% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dup-n.tz.out index 1274bee602a7..e25b86f581ce 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-dup-n.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dup-n.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/dup-n.tz --details Well typed Gas remaining: 1039968.032 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ediv.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ediv.tz.out index 00118a23766d..3e850334d618 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ediv.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ediv.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ediv.tz --details Well typed Gas remaining: 1039981.718 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ediv_mutez.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ediv_mutez.tz.out index e839b8df7655..a7af62335657 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ediv_mutez.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ediv_mutez.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ediv_mutez.tz --details Well typed Gas remaining: 1039990.621 units remaining { parameter (pair mutez (or mutez nat)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-emit.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-emit.tz.out index f54dd5db711c..4e16a335a360 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-emit.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/emit.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/emit.tz --details Well typed Gas remaining: 1039991.050 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-empty_map.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-empty_map.tz.out index a97bd198689a..13c4954fcae4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-empty_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/empty_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/empty_map.tz --details Well typed Gas remaining: 1039994.366 units remaining { storage (map string string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-exec_concat.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-exec_concat.tz.out index 39d0f8fd1675..0ac064cf4114 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-exec_concat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/exec_concat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/exec_concat.tz --details Well typed Gas remaining: 1039992.377 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-first.tz.out similarity index 64% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-first.tz.out index 585f84ab47cb..ae9bbbcdec83 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-first.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/first.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/first.tz --details Well typed Gas remaining: 1039995.098 units remaining { parameter (list nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_and_update_big_map.tz.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_and_update_big_map.tz.out index 4f92f78bbcfe..a5a3e79ad223 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_and_update_big_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_and_update_big_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/get_and_update_big_map.tz --details Well typed Gas remaining: 1039994.790 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_and_update_map.tz.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_and_update_map.tz.out index bbd675998228..c61f69223a96 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_and_update_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_and_update_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/get_and_update_map.tz --details Well typed Gas remaining: 1039994.850 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_big_map_value.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_big_map_value.tz.out index af58b25cf254..95809dde5868 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_big_map_value.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_big_map_value.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/get_big_map_value.tz --details Well typed Gas remaining: 1039992.079 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_map_value.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_map_value.tz.out index 4b3125f532a5..012819dc9abe 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-get_map_value.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_map_value.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/get_map_value.tz --details Well typed Gas remaining: 1039992.607 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_consistency_checker.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_consistency_checker.tz.out index 7d0d0412dbb6..404aed76a153 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_consistency_checker.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_consistency_checker.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/hash_consistency_checker.tz --details Well typed Gas remaining: 1039996.569 units remaining { parameter (pair mutez (pair timestamp int)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_key.tz.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_key.tz.out index 5c3ab8bc5445..2df5f50fbf3d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_key.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_key.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/hash_key.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter key ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_string.tz.out similarity index 64% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_string.tz.out index c41a88c4a551..08e3761fafef 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-hash_string.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_string.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/hash_string.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-if.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-if.tz.out index 57d41c27b5d1..c8a8fc7f18f8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-if.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/if.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/if.tz --details Well typed Gas remaining: 1039995.290 units remaining { parameter bool ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-if_some.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-if_some.tz.out index d71c9e92b968..26e39e951ab4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-if_some.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/if_some.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/if_some.tz --details Well typed Gas remaining: 1039996.019 units remaining { parameter (option string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-int.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-int.tz.out index 44b4d7e7976d..44b9b20cb2f7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-int.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/int.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/int.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-iter_fail.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-iter_fail.tz.out index 34a1afe6b463..056d05446f1a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-iter_fail.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/iter_fail.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/iter_fail.tz --details Well typed Gas remaining: 1039996.874 units remaining { parameter (set nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-keccak.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-keccak.tz.out index 9113c9eb14f7..11fb08d99513 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-keccak.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/keccak.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/keccak.tz --details Well typed Gas remaining: 1039996.837 units remaining { storage (option bytes) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-left_right.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-left_right.tz.out index a557ee99aadd..5fe38a998afd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-left_right.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/left_right.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/left_right.tz --details Well typed Gas remaining: 1039995.570 units remaining { parameter (or bool string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-level.tz.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-level.tz.out index b4b0f256924f..87516a12a2b3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-level.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/level.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/level.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_concat.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_concat.tz.out index ca9b80ec030a..b19178ba6c9f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_concat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_concat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/list_concat.tz --details Well typed Gas remaining: 1039996.374 units remaining { parameter (list string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_concat_bytes.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_concat_bytes.tz.out index d4b6edf5adec..4d87de37cab1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_concat_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_concat_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/list_concat_bytes.tz --details Well typed Gas remaining: 1039996.374 units remaining { parameter (list bytes) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_id.tz.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_id.tz.out index 11c0c0620474..80b8dc19296b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_id.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_id.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/list_id.tz --details Well typed Gas remaining: 1039997.680 units remaining { parameter (list string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_id_map.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_id_map.tz.out index 891c713b0dc2..188f2b5cb391 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_id_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_id_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/list_id_map.tz --details Well typed Gas remaining: 1039996.974 units remaining { parameter (list string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_iter.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_iter.tz.out index 0eb0de09882a..d3f5a51268a8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_iter.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_iter.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/list_iter.tz --details Well typed Gas remaining: 1039995.593 units remaining { parameter (list int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_map_block.tz.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_map_block.tz.out index b1f437f73b06..a3486263f183 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_map_block.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_map_block.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/list_map_block.tz --details Well typed Gas remaining: 1039991.624 units remaining { parameter (list int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_size.tz.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_size.tz.out index eb8820d7da09..5936f4f50eb5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-list_size.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_size.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/list_size.tz --details Well typed Gas remaining: 1039997.360 units remaining { parameter (list int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_failwith.tz.out similarity index 62% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_failwith.tz.out index 7a66b1a96320..ad888ee957ac 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_failwith.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_failwith.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/loop_failwith.tz --details Well typed Gas remaining: 1039996.957 units remaining { parameter bool ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_left.tz.out similarity index 88% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_left.tz.out index 8c49d980f743..b54ef8ced441 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_left.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_left.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/loop_left.tz --details Well typed Gas remaining: 1039987.396 units remaining { parameter (list string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_left_failwith.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_left_failwith.tz.out index ebcc0c45d0c4..f21d0be9a4df 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-loop_left_failwith.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_left_failwith.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/loop_left_failwith.tz --details Well typed Gas remaining: 1039996.716 units remaining { parameter (or string nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--lsl_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-lsl_bytes.tz.out similarity index 86% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--lsl_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-lsl_bytes.tz.out index 09f6ce8b2052..4196b92e9fdf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--lsl_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-lsl_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/lsl_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/lsl_bytes.tz --details Well typed Gas remaining: 1039972.796 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--lsr_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-lsr_bytes.tz.out similarity index 89% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--lsr_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-lsr_bytes.tz.out index e69744b5314e..00d4d596f3ca 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--lsr_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-lsr_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/lsr_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/lsr_bytes.tz --details Well typed Gas remaining: 1039959.946 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_car.tz.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_car.tz.out index 5d56e3456ef2..fae8a93535a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_car.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_car.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/map_car.tz --details Well typed Gas remaining: 1039991.063 units remaining { parameter bool ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_id.tz.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_id.tz.out index 6029321d9b3f..68bc7addae4b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_id.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_id.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/map_id.tz --details Well typed Gas remaining: 1039997.454 units remaining { parameter (map nat nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_iter.tz.out similarity index 88% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_iter.tz.out index ab812eb070b6..6a1865ecd1c4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_iter.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_iter.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/map_iter.tz --details Well typed Gas remaining: 1039986.949 units remaining { parameter (map (int :k) (int :e)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_map.tz.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_map.tz.out index 855ac0c93f92..6dfc2b6315be 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/map_map.tz --details Well typed Gas remaining: 1039993.574 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_map_sideeffect.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_map_sideeffect.tz.out index 161ee34517a4..a12c12f55549 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_map_sideeffect.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_map_sideeffect.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/map_map_sideeffect.tz --details Well typed Gas remaining: 1039988.534 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_mem_nat.tz.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_mem_nat.tz.out index 2c1c31465fd3..c6afd7304697 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_mem_nat.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_mem_nat.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/map_mem_nat.tz --details Well typed Gas remaining: 1039993.554 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_mem_string.tz.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_mem_string.tz.out index 45dfee8ce6b3..281bf9ea0c2d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_mem_string.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_mem_string.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/map_mem_string.tz --details Well typed Gas remaining: 1039993.554 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_size.tz.out similarity index 62% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_size.tz.out index 7dd28059de11..8abc616b6a6a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-map_size.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_size.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/map_size.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (map string nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-merge_comparable_pairs.tz.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-merge_comparable_pairs.tz.out index 2e882788d3e1..bf3b0e8417f0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-merge_comparable_pairs.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/merge_comparable_pairs.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/merge_comparable_pairs.tz --details Well typed Gas remaining: 1039992.173 units remaining { parameter (set (pair (nat %n) (pair %p (string %s) (int %i)))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul.tz.out similarity index 91% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul.tz.out index fa2b38439598..797ad48b65aa 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/mul.tz --details Well typed Gas remaining: 1039961.621 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_fr.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_fr.tz.out index fb1a454780c2..d7a2d23262ab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_fr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/mul_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_fr bls12_381_fr) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_g1.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_g1.tz.out index f834391d86b4..9bdef9ee7985 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_g1.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/mul_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g1 bls12_381_fr) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_g2.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_g2.tz.out index 7343005496c0..31f484c14977 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_g2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/mul_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g2 bls12_381_fr) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_overflow.tz.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_overflow.tz.out index 7f4b85955de0..acc9fce5c5b1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mul_overflow.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_overflow.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/mul_overflow.tz --details Well typed Gas remaining: 1039992.344 units remaining { parameter (or unit unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-munch.tz.out similarity index 64% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-munch.tz.out index 7d21e9a6ae9c..ef4df961b9f4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-munch.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/munch.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/munch.tz --details Well typed Gas remaining: 1039997.065 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mutez_to_bls12_381_fr.tz.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mutez_to_bls12_381_fr.tz.out index 50a8bbfa37f8..448a3ff1a723 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-mutez_to_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mutez_to_bls12_381_fr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/mutez_to_bls12_381_fr.tz --details Well typed Gas remaining: 1039992.323 units remaining { parameter mutez ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg.tz.out similarity index 64% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg.tz.out index a3637885e066..eb2401311085 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/neg.tz --details Well typed Gas remaining: 1039996.161 units remaining { parameter (or int nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_fr.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_fr.tz.out index a9348050d70b..6de2ea12b953 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_fr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/neg_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_g1.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_g1.tz.out index 5ee7c4f37b28..50598f3f0c37 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_g1.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/neg_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_g1 ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_g2.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_g2.tz.out index 1c223992c659..2b19c52aa9bc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-neg_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_g2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/neg_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_g2 ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-none.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-none.tz.out index 70a1a20bdf59..bd497152060e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-none.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/none.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/none.tz --details Well typed Gas remaining: 1039997.217 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-noop.tz.out similarity index 58% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-noop.tz.out index 5926b862fafb..f51bca32c4d8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-noop.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/noop.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/noop.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not.tz.out index 7be3b252952f..1ba806d1d85e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/not.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/not.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bool ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not_binary.tz.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not_binary.tz.out index 5e7b499cd7e6..87e5d54a9e94 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not_binary.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/not_binary.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/not_binary.tz --details Well typed Gas remaining: 1039995.545 units remaining { parameter (or int nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not_bytes.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not_bytes.tz.out index 541da8364a9c..89ccfd054f94 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-not_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/not_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/not_bytes.tz --details Well typed Gas remaining: 1039981.341 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or.tz.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or.tz.out index 5cd48794dfdf..b36720171966 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/or.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/or.tz --details Well typed Gas remaining: 1039994.425 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or_binary.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or_binary.tz.out index 694082cb0295..91fab12b66bc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or_binary.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/or_binary.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/or_binary.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or_bytes.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or_bytes.tz.out index 305e863617d9..7019492b0621 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-or_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/or_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/or_bytes.tz --details Well typed Gas remaining: 1039978.916 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-originate_big_map.tz.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-originate_big_map.tz.out index d6735214e84a..86a05b3e75f9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-originate_big_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/originate_big_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/originate_big_map.tz --details Well typed Gas remaining: 1039997.334 units remaining { parameter (big_map int int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack.tz.out index aecf98b67fcd..ee183bc03039 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/packunpack.tz --details Well typed Gas remaining: 1039987.310 units remaining { parameter (pair (pair (pair string (list int)) (set nat)) bytes) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack_rev.tz.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack_rev.tz.out index d876d9b99202..4fd364b9aad3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack_rev.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack_rev.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/packunpack_rev.tz --details Well typed Gas remaining: 1039888.774 units remaining { parameter (pair int nat string bytes mutez bool key_hash timestamp address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack_rev_cty.tz.out similarity index 99% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack_rev_cty.tz.out index a2f055562f96..b02e96b7b0e2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-packunpack_rev_cty.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack_rev_cty.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/packunpack_rev_cty.tz --details Well typed Gas remaining: 1039875.178 units remaining { parameter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pair_id.tz.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pair_id.tz.out index 1703886d84eb..ec1759aee64a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pair_id.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/pair_id.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/pair_id.tz --details Well typed Gas remaining: 1039996.769 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pairing_check.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pairing_check.tz.out index fe0facaac890..1fc1bb04c2c4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pairing_check.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/pairing_check.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/pairing_check.tz --details Well typed Gas remaining: 1039996.509 units remaining { parameter (list (pair bls12_381_g1 bls12_381_g2)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pexec.tz.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pexec.tz.out index 43eb45c3ac22..5f2edae52bef 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pexec.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/pexec.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/pexec.tz --details Well typed Gas remaining: 1039993.994 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pexec_2.tz.out similarity index 87% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pexec_2.tz.out index 55f78459d497..378c250cf20b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-pexec_2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/pexec_2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/pexec_2.tz --details Well typed Gas remaining: 1039988.161 units remaining { parameter int ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-proxy.tz.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-proxy.tz.out index bd02073df421..8f2d3007cf53 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-proxy.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/proxy.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/proxy.tz --details Well typed Gas remaining: 1039995.281 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ret_int.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ret_int.tz.out index 9ab07fdafd01..c854e9c5ec5c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ret_int.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ret_int.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ret_int.tz --details Well typed Gas remaining: 1039996.556 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-reverse.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-reverse.tz.out index 8b6787533531..feea794d7c79 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-reverse.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/reverse.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/reverse.tz --details Well typed Gas remaining: 1039995.453 units remaining { parameter (list string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-reverse_loop.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-reverse_loop.tz.out index a2597ad1eb59..ef25aea78352 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-reverse_loop.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/reverse_loop.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/reverse_loop.tz --details Well typed Gas remaining: 1039990.243 units remaining { parameter (list string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sapling_empty_state.tz.out similarity index 64% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sapling_empty_state.tz.out index 5ae52e2a6e85..83054997d074 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sapling_empty_state.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sapling_empty_state.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/sapling_empty_state.tz --details Well typed Gas remaining: 1039997.397 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self.tz.out index 10340384aa8e..cc7f20cdd765 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self.tz --details Well typed Gas remaining: 1039996.945 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address.tz.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address.tz.out index 7d429e36dfc9..ddab5aed3c73 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_address.tz --details Well typed Gas remaining: 1039990.189 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_fib_view.tz.out index c7482aa4e2a1..d11a46b2fceb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_fib_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_address_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_nonexistent_vi.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_nonexistent_vi.out index 8ade68532e41..61b0d65035bd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_nonexistent_vi.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_nonexistent_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_address_after_nonexistent_view.tz --details Well typed Gas remaining: 1039987.050 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_view.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_view.tz.out index ca0689305c1c..e9d0e00c9e3d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_address_after_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_address_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_fib_view.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_fib_view.tz.out index a421d64e9a20..b24f3e9eef6f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_fib_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_after_fib_view.tz --details Well typed Gas remaining: 1039986.060 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_nonexistent_view.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_nonexistent_view.tz.out index 27aa64ccecbe..a7fae3efe39f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_nonexistent_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.452 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_view.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_view.tz.out index 8e241af750e0..72a0577c6a63 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_after_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_after_view.tz --details Well typed Gas remaining: 1039985.886 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_with_default_entrypoint.tz.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_with_default_entrypoint.tz.out index 008e6b2a629f..632f013b0c1b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_with_default_entrypoint.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_default_entrypoint.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_with_default_entrypoint.tz --details Well typed Gas remaining: 1039988.800 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %default) (string %C))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_with_entrypoint.tz.out similarity index 91% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_with_entrypoint.tz.out index 50807ae0085f..8748dc309bb2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-self_with_entrypoint.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_entrypoint.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/self_with_entrypoint.tz --details Well typed Gas remaining: 1039970.861 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %Z) (string %C))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender.tz.out similarity index 62% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender.tz.out index e4dbed4dcfad..dd80a09a8675 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/sender.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_fib_view.tz.out index fef792b0d708..c37877985ef5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_fib_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/sender_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_nonexistent_view.tz.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_nonexistent_view.tz.out index a9eca92f717c..f5c1da43fe96 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_nonexistent_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/sender_after_nonexistent_view.tz --details Well typed Gas remaining: 1039987.050 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_view.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_view.tz.out index 7685d458cd1b..38c536f99d06 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sender_after_view.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_view.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/sender_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_car.tz.out similarity index 73% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_car.tz.out index f5d1aac00406..a5a28986a465 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_car.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_car.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/set_car.tz --details Well typed Gas remaining: 1039992.274 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_cdr.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_cdr.tz.out index 46379662badb..827537b2bd37 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_cdr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_cdr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/set_cdr.tz --details Well typed Gas remaining: 1039992.742 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_delegate.tz.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_delegate.tz.out index 0c0a969ae21c..80dcdf9ff63b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_delegate.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_delegate.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/set_delegate.tz --details Well typed Gas remaining: 1039996.276 units remaining { parameter (option key_hash) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_id.tz.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_id.tz.out index c37018214751..45feac8b3918 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_id.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_id.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/set_id.tz --details Well typed Gas remaining: 1039997.680 units remaining { parameter (set string) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_iter.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_iter.tz.out index 0c771bd7a6dd..8b43396fa34a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_iter.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_iter.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/set_iter.tz --details Well typed Gas remaining: 1039995.593 units remaining { parameter (set int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_member.tz.out similarity index 86% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_member.tz.out index c36c34c152bf..e902dde5d2df 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_member.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_member.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/set_member.tz --details Well typed Gas remaining: 1039989.840 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_size.tz.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_size.tz.out index a791706f7f08..8b5fecc5cf87 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-set_size.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_size.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/set_size.tz --details Well typed Gas remaining: 1039997.360 units remaining { parameter (set int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sets.tz.out similarity index 91% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sets.tz.out index 360afcf7ede1..fe466af2a3ce 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sets.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sets.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/sets.tz --details Well typed Gas remaining: 1039953.534 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sha3.tz.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sha3.tz.out index 11ef6be9c934..aa1ea8e967d0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sha3.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sha3.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/sha3.tz --details Well typed Gas remaining: 1039996.837 units remaining { storage (option bytes) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-shifts.tz.out similarity index 73% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-shifts.tz.out index 4b614d952ffd..4f70408d1ecb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-shifts.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/shifts.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/shifts.tz --details Well typed Gas remaining: 1039994.259 units remaining { parameter (or (pair nat nat) (pair nat nat)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slice.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slice.tz.out index 3760e12a6137..3fd0ef14fc5a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slice.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/slice.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/slice.tz --details Well typed Gas remaining: 1039993.747 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slice_bytes.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slice_bytes.tz.out index 62005cd96426..7bb754ca239c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slice_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/slice_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/slice_bytes.tz --details Well typed Gas remaining: 1039993.747 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slices.tz.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slices.tz.out index 935dfbdf7aa8..8a8f302b3dc0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-slices.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/slices.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/slices.tz --details Well typed Gas remaining: 1039937.057 units remaining { parameter (pair bytes signature) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-source.tz.out similarity index 62% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-source.tz.out index 3acb11602f8b..02df49986041 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-source.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/source.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/source.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-split_bytes.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-split_bytes.tz.out index 09f9b3e72921..c42ed28a9427 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-split_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/split_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/split_bytes.tz --details Well typed Gas remaining: 1039973.337 units remaining { parameter bytes ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-split_string.tz.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-split_string.tz.out index 8948d2c3c816..4a4a5d37dd3c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-split_string.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/split_string.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/split_string.tz --details Well typed Gas remaining: 1039973.337 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_fr.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_fr.tz.out index 45cc05c575ea..feec8ae8c5e2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_fr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/store_bls12_381_fr.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_g1.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_g1.tz.out index 596b66bf91b5..2b7e8d1eb781 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_g1.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/store_bls12_381_g1.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_g1 ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_g2.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_g2.tz.out index fa8c6a0a8a0c..89176a4610ea 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_g2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/store_bls12_381_g2.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_g2 ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_input.tz.out similarity index 58% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_input.tz.out index c91d66d98105..7e6eef6def04 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_input.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/id.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/store_input.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_now.tz.out similarity index 62% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_now.tz.out index 8d8aee87a059..92ba3417b8df 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-store_now.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_now.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/store_now.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-str_id.tz.out similarity index 64% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-str_id.tz.out index cc4bfa0b435f..4315adaf1c19 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-str_id.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/str_id.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/str_id.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter string ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sub_timestamp_delta.tz.out similarity index 73% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sub_timestamp_delta.tz.out index 5272610193ae..84aeb6f40de0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-sub_timestamp_delta.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sub_timestamp_delta.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/sub_timestamp_delta.tz --details Well typed Gas remaining: 1039995.013 units remaining { parameter (pair timestamp int) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-subset.tz.out similarity index 90% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-subset.tz.out index 57186a64f41e..9bf3abd26f5e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-subset.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/subset.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/subset.tz --details Well typed Gas remaining: 1039986.401 units remaining { parameter (pair (set string) (set string)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-tez_add_sub.tz.out similarity index 86% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-tez_add_sub.tz.out index ca6ae30d4c2c..04dbdc2e856a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-tez_add_sub.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/tez_add_sub.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/tez_add_sub.tz --details Well typed Gas remaining: 1039987.345 units remaining { parameter (pair mutez mutez) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_bad.tz.out similarity index 59% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_bad.tz.out index b497a28c3d9b..b750050e3867 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_bad.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_bad.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticket_bad.tz --details Well typed Gas remaining: 1039997.763 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_big_store.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_big_store.tz.out index d6caaeff2bbc..51ac81527d22 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_big_store.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_big_store.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticket_big_store.tz --details Well typed Gas remaining: 1039991.976 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_join.tz.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_join.tz.out index 932c47ce9e62..6e493d9a7a20 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_join.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_join.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticket_join.tz --details Well typed Gas remaining: 1039992.503 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_read.tz.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_read.tz.out index 979afbd6b84f..1382bc077f1d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_read.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_read.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticket_read.tz --details Well typed Gas remaining: 1039985.350 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_split.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_split.tz.out index e7029eab9d1c..cd930b595682 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_split.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_split.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticket_split.tz --details Well typed Gas remaining: 1039979.558 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_store-2.tz.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_store-2.tz.out index 6a01f19ffc49..f94115b2187e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_store-2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_store-2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticket_store-2.tz --details Well typed Gas remaining: 1039997.454 units remaining { parameter (option (ticket nat)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_store.tz.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_store.tz.out index 2be5e46cabd2..dba2e14eb8df 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticket_store.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_store.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticket_store.tz --details Well typed Gas remaining: 1039997.074 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticketer-2.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticketer-2.tz.out index 58ee20944006..7ea1a8926aab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticketer-2.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticketer-2.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticketer-2.tz --details Well typed Gas remaining: 1039986.226 units remaining { parameter (pair (pair address nat) nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticketer.tz.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticketer.tz.out index 85bbab8acce3..831b3bc33e7b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-ticketer.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticketer.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/ticketer.tz --details Well typed Gas remaining: 1039986.744 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-transfer_amount.tz.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-transfer_amount.tz.out index 997311e4e023..21284a2cee99 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-transfer_amount.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/transfer_amount.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/transfer_amount.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-transfer_tokens.tz.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-transfer_tokens.tz.out index 1e16540629a0..9e28de8009b4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-transfer_tokens.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/transfer_tokens.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/transfer_tokens.tz --details Well typed Gas remaining: 1039994.130 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-uncomb.tz.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-uncomb.tz.out index e6e8381b59bc..f89b6375adb0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-uncomb.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/uncomb.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/uncomb.tz --details Well typed Gas remaining: 1039993.181 units remaining { parameter (pair nat nat nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-unpair.tz.out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-unpair.tz.out index 2a760fc990b4..2d943bca26e7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-unpair.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/unpair.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/unpair.tz --details Well typed Gas remaining: 1039904.519 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-unpair_field_annotation_mismatch..out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-unpair_field_annotation_mismatch..out index d33dfb66c0a3..1c9d2ba7fb6e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-unpair_field_annotation_mismatch..out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/unpair_field_annotation_mismatch.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/unpair_field_annotation_mismatch.tz --details Well typed Gas remaining: 1039993.685 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-update_big_map.tz.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-update_big_map.tz.out index b48a55d680d5..deaee5ab548e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-update_big_map.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/update_big_map.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/update_big_map.tz --details Well typed Gas remaining: 1039993.471 units remaining { storage (pair (big_map string string) unit) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-utxo_read.tz.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-utxo_read.tz.out index 1155fe0a02d4..1209914aefe5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-utxo_read.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/utxo_read.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/utxo_read.tz --details Well typed Gas remaining: 1039985.390 units remaining { parameter (pair (ticket nat) nat) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-utxor.tz.out similarity index 95% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-utxor.tz.out index 2c2adeed4c65..8090c05b6afd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-utxor.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/utxor.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/utxor.tz --details Well typed Gas remaining: 1039966.804 units remaining { parameter (pair address address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_fib.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_fib.tz.out index b673a5c76d19..dcc538a061f7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_fib.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_fib.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_fib.tz --details Well typed Gas remaining: 1039994.630 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_mutual_recursion.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_mutual_recursion.tz.out index 81c87067496d..b59c8b0ad324 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_mutual_recursion.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_mutual_recursion.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_mutual_recursion.tz --details Well typed Gas remaining: 1039993.335 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_add.tz.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_add.tz.out index 96f47218f710..88e291c8494f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_add.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_add.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_op_add.tz --details Well typed Gas remaining: 1039994.410 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_constant.tz.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_constant.tz.out index 42f933a9cd0e..201f2a0bc58d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_constant.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_constant.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_op_constant.tz --details Well typed Gas remaining: 1039994.390 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_id.tz.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_id.tz.out index cc23989db041..79859cf54b2e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_id.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_id.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_op_id.tz --details Well typed Gas remaining: 1039993.949 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_nonexistent_addr.tz.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_nonexistent_addr.tz.out index 5ecbcd2e9330..d283acd9268a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_nonexistent_addr.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_nonexistent_addr.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_op_nonexistent_addr.tz --details Well typed Gas remaining: 1039989.559 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_nonexistent_func.tz.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_nonexistent_func.tz.out index 6b534bfc9727..2bddb397c69a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_nonexistent_func.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_nonexistent_func.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_op_nonexistent_func.tz --details Well typed Gas remaining: 1039993.859 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_test_step_contants.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_test_step_contants.tz.out index f39c6d21d586..ae5f20957de5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_test_step_contants.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_test_step_contants.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_op_test_step_contants.tz --details Well typed Gas remaining: 1039994.470 units remaining { parameter address ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_toplevel_inconsistent_inp.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_toplevel_inconsistent_inp.out index ae8f0dcab812..bc0be8fdc9b7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_toplevel_inconsistent_inp.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_toplevel_inconsistent_input_type.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_op_toplevel_inconsistent_input_type.tz --details Well typed Gas remaining: 1039993.919 units remaining { parameter (pair int address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_toplevel_inconsistent_out.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_toplevel_inconsistent_out.out index bb364e0d0ab8..bbb37d2d3741 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_op_toplevel_inconsistent_out.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_toplevel_inconsistent_output_type.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_op_toplevel_inconsistent_output_type.tz --details Well typed Gas remaining: 1039993.919 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_rec.tz.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_rec.tz.out index 873938b33135..f9570dba071d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_rec.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_rec.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_rec.tz --details Well typed Gas remaining: 1039988.440 units remaining { parameter unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_toplevel_lib.tz.out similarity index 95% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_toplevel_lib.tz.out index bf554ea42b6e..61b9120b3335 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-view_toplevel_lib.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_toplevel_lib.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/view_toplevel_lib.tz --details Well typed Gas remaining: 1039947.179 units remaining { parameter nat ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-voting_power.tz.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-voting_power.tz.out index 6b83cc27c699..35d166581402 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-voting_power.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/voting_power.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/voting_power.tz --details Well typed Gas remaining: 1039995.193 units remaining { parameter key ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-xor.tz.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-xor.tz.out index e13b20b58af7..98550c40a240 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-xor.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/xor.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/xor.tz --details Well typed Gas remaining: 1039992.584 units remaining { parameter (or (pair bool bool) (pair nat nat)) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-xor_bytes.tz.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-xor_bytes.tz.out index bac937d632bd..bb1facf764fe 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Alpha- Tc tests_python-contracts_alpha-opcodes-xor_bytes.tz.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/xor_bytes.tz] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_alpha/opcodes/xor_bytes.tz --details Well typed Gas remaining: 1039978.916 units remaining { parameter unit ; -- GitLab From 5089716aac7d01ff184b60158b276228585d6775 Mon Sep 17 00:00:00 2001 From: lykimq Date: Thu, 24 Nov 2022 11:28:38 +0700 Subject: [PATCH 4/5] Test: 015 remove pytest traces, remove tests, add tezt traces --- ...tTypecheck::test_typecheck[macros--fail.tz].out | 5 ----- tests_python/tests_015/test_contract.py | 14 -------------- ...ests_python-contracts_015-attic-accounts.tz.out | 2 +- ...Tc tests_python-contracts_015-attic-add1.tz.out | 2 +- ...sts_python-contracts_015-attic-add1_list.tz.out | 2 +- ...ython-contracts_015-attic-after_strategy.tz.out | 2 +- ... tests_python-contracts_015-attic-always.tz.out | 2 +- ... tests_python-contracts_015-attic-append.tz.out | 2 +- ...ests_python-contracts_015-attic-at_least.tz.out | 2 +- ...tests_python-contracts_015-attic-auction.tz.out | 2 +- ...ts_python-contracts_015-attic-bad_lockup.tz.out | 2 +- ...python-contracts_015-attic-big_map_union.tz.out | 2 +- ...thon-contracts_015-attic-cadr_annotation.tz.out | 2 +- ... tests_python-contracts_015-attic-concat.tz.out | 2 +- ..._python-contracts_015-attic-conditionals.tz.out | 2 +- ...ts_python-contracts_015-attic-cons_twice.tz.out | 2 +- ...ests_python-contracts_015-attic-cps_fact.tz.out | 2 +- ...on-contracts_015-attic-create_add1_lists.tz.out | 2 +- ...ython-contracts_015-attic-data_publisher.tz.out | 2 +- ...ests_python-contracts_015-attic-dispatch.tz.out | 2 +- ...c tests_python-contracts_015-attic-empty.tz.out | 2 +- ...s_python-contracts_015-attic-fail_amount.tz.out | 2 +- ... tests_python-contracts_015-attic-faucet.tz.out | 2 +- ...tests_python-contracts_015-attic-forward.tz.out | 2 +- ...- Tc tests_python-contracts_015-attic-id.tz.out | 2 +- ...python-contracts_015-attic-infinite_loop.tz.out | 2 +- ...ython-contracts_015-attic-insertion_sort.tz.out | 2 +- ...python-contracts_015-attic-int_publisher.tz.out | 2 +- ...s_python-contracts_015-attic-king_of_tez.tz.out | 2 +- ...contracts_015-attic-list_of_transactions.tz.out | 2 +- ...c tests_python-contracts_015-attic-queue.tz.out | 2 +- ...ts_python-contracts_015-attic-reduce_map.tz.out | 2 +- ...ts_python-contracts_015-attic-reentrancy.tz.out | 2 +- ...sts_python-contracts_015-attic-reservoir.tz.out | 2 +- ...-contracts_015-attic-scrutable_reservoir.tz.out | 2 +- ...hon-contracts_015-attic-spawn_identities.tz.out | 2 +- ...acts_015-entrypoints-big_map_entrypoints.tz.out | 2 +- ...racts_015-entrypoints-delegatable_target.tz.out | 2 +- ...python-contracts_015-entrypoints-manager.tz.out | 2 +- ...tracts_015-entrypoints-no_default_target.tz.out | 2 +- ...cts_015-entrypoints-no_entrypoint_target.tz.out | 2 +- ...-contracts_015-entrypoints-rooted_target.tz.out | 2 +- ...racts_015-entrypoints-simple_entrypoints.tz.out | 2 +- ...tests_python-contracts_015-macros-assert.tz.out | 2 +- ...python-contracts_015-macros-assert_cmpeq.tz.out | 2 +- ...python-contracts_015-macros-assert_cmpge.tz.out | 2 +- ...python-contracts_015-macros-assert_cmpgt.tz.out | 2 +- ...python-contracts_015-macros-assert_cmple.tz.out | 2 +- ...python-contracts_015-macros-assert_cmplt.tz.out | 2 +- ...ython-contracts_015-macros-assert_cmpneq.tz.out | 2 +- ...ts_python-contracts_015-macros-assert_eq.tz.out | 2 +- ...ts_python-contracts_015-macros-assert_ge.tz.out | 2 +- ...ts_python-contracts_015-macros-assert_gt.tz.out | 2 +- ...ts_python-contracts_015-macros-assert_le.tz.out | 2 +- ...ts_python-contracts_015-macros-assert_lt.tz.out | 2 +- ...s_python-contracts_015-macros-assert_neq.tz.out | 2 +- ...hon-contracts_015-macros-big_map_get_add.tz.out | 2 +- ..._python-contracts_015-macros-big_map_mem.tz.out | 2 +- ...s_python-contracts_015-macros-build_list.tz.out | 2 +- ...ython-contracts_015-macros-carn_and_cdrn.tz.out | 2 +- ...ests_python-contracts_015-macros-compare.tz.out | 2 +- ...ython-contracts_015-macros-compare_bytes.tz.out | 2 +- ...c tests_python-contracts_015-macros-fail.tz.out | 5 +++++ ...ts_python-contracts_015-macros-guestbook.tz.out | 2 +- ...n-contracts_015-macros-macro_annotations.tz.out | 2 +- ...python-contracts_015-macros-map_caddaadr.tz.out | 2 +- ..._python-contracts_015-macros-max_in_list.tz.out | 2 +- ...Tc tests_python-contracts_015-macros-min.tz.out | 2 +- ...s_python-contracts_015-macros-pair_macro.tz.out | 2 +- ...python-contracts_015-macros-set_caddaadr.tz.out | 2 +- ...ython-contracts_015-macros-take_my_money.tz.out | 2 +- ...python-contracts_015-macros-unpair_macro.tz.out | 2 +- ...cts_015-mini_scenarios-add_clear_tickets.tz.out | 2 +- ...tracts_015-mini_scenarios-authentication.tz.out | 2 +- ...s_015-mini_scenarios-big_map_entrypoints.tz.out | 2 +- ...ntracts_015-mini_scenarios-big_map_magic.tz.out | 2 +- ...ontracts_015-mini_scenarios-big_map_read.tz.out | 2 +- ...ntracts_015-mini_scenarios-big_map_store.tz.out | 2 +- ...ntracts_015-mini_scenarios-big_map_write.tz.out | 2 +- ...racts_015-mini_scenarios-create_contract.tz.out | 2 +- ...15-mini_scenarios-create_contract_simple.tz.out | 2 +- ...racts_015-mini_scenarios-default_account.tz.out | 2 +- ...-mini_scenarios-execution_order_appender.tz.out | 2 +- ...15-mini_scenarios-execution_order_caller.tz.out | 2 +- ...15-mini_scenarios-execution_order_storer.tz.out | 2 +- ...tracts_015-mini_scenarios-fa12_reference.tz.out | 2 +- ...acts_015-mini_scenarios-generic_multisig.tz.out | 2 +- ...hon-contracts_015-mini_scenarios-groth16.tz.out | 2 +- ...n-contracts_015-mini_scenarios-hardlimit.tz.out | 2 +- ...racts_015-mini_scenarios-legacy_multisig.tz.out | 2 +- ...thon-contracts_015-mini_scenarios-lockup.tz.out | 2 +- ...tracts_015-mini_scenarios-lqt_fa12.mligo.tz.out | 2 +- ...ontracts_015-mini_scenarios-multiple_en2.tz.out | 2 +- ...ini_scenarios-multiple_entrypoints_counter..out | 2 +- ...ts_015-mini_scenarios-originate_contract.tz.out | 2 +- ...15-mini_scenarios-parameterized_multisig.tz.out | 2 +- ...ini_scenarios-receive_tickets_in_big_map.tz.out | 2 +- ...thon-contracts_015-mini_scenarios-replay.tz.out | 2 +- ...15-mini_scenarios-reveal_signed_preimage.tz.out | 2 +- ...015-mini_scenarios-self_address_receiver.tz.out | 2 +- ...s_015-mini_scenarios-self_address_sender.tz.out | 2 +- ...5-mini_scenarios-send_tickets_in_big_map.tz.out | 2 +- ...5-mini_scenarios-ticket_builder_fungible.tz.out | 2 +- ...ini_scenarios-ticket_builder_non_fungible.t.out | 2 +- ...15-mini_scenarios-ticket_wallet_fungible.tz.out | 2 +- ...ini_scenarios-ticket_wallet_non_fungible.tz.out | 2 +- ...cts_015-mini_scenarios-vote_for_delegate.tz.out | 2 +- ...cts_015-mini_scenarios-weather_insurance.tz.out | 2 +- ...python-contracts_015-mini_scenarios-xcat.tz.out | 2 +- ...n-contracts_015-mini_scenarios-xcat_dapp.tz.out | 2 +- ...ts_015-non_regression-bad_annot_contract.tz.out | 2 +- ...hon-contracts_015-non_regression-bug_262.tz.out | 2 +- ...hon-contracts_015-non_regression-bug_843.tz.out | 2 +- ...contracts_015-non_regression-pairk_annot.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-abs.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-add.tz.out | 2 +- ...n-contracts_015-opcodes-add_bls12_381_fr.tz.out | 2 +- ...n-contracts_015-opcodes-add_bls12_381_g1.tz.out | 2 +- ...n-contracts_015-opcodes-add_bls12_381_g2.tz.out | 2 +- ...ontracts_015-opcodes-add_delta_timestamp.tz.out | 2 +- ...ontracts_015-opcodes-add_timestamp_delta.tz.out | 2 +- ...sts_python-contracts_015-opcodes-address.tz.out | 2 +- ...tracts_015-opcodes-amount_after_fib_view.tz.out | 2 +- ...15-opcodes-amount_after_nonexistent_view.tz.out | 2 +- ...-contracts_015-opcodes-amount_after_view.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-and.tz.out | 2 +- ..._python-contracts_015-opcodes-and_binary.tz.out | 2 +- ...thon-contracts_015-opcodes-and_logical_1.tz.out | 2 +- ...sts_python-contracts_015-opcodes-balance.tz.out | 2 +- ...racts_015-opcodes-balance_after_fib_view.tz.out | 2 +- ...5-opcodes-balance_after_nonexistent_view.tz.out | 2 +- ...contracts_015-opcodes-balance_after_view.tz.out | 2 +- ...on-contracts_015-opcodes-big_map_mem_nat.tz.out | 2 +- ...contracts_015-opcodes-big_map_mem_string.tz.out | 2 +- ...on-contracts_015-opcodes-big_map_to_self.tz.out | 2 +- ...pcodes-bls12_381_fr_push_bytes_not_padded.t.out | 2 +- ...tracts_015-opcodes-bls12_381_fr_push_nat.tz.out | 2 +- ...ontracts_015-opcodes-bls12_381_fr_to_int.tz.out | 2 +- ...tracts_015-opcodes-bls12_381_fr_to_mutez.tz.out | 2 +- ...contracts_015-opcodes-bls12_381_fr_z_int.tz.out | 2 +- ...contracts_015-opcodes-bls12_381_fr_z_nat.tz.out | 2 +- ...contracts_015-opcodes-bls12_381_z_fr_int.tz.out | 2 +- ...contracts_015-opcodes-bls12_381_z_fr_nat.tz.out | 2 +- ...tests_python-contracts_015-opcodes-bytes.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-car.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-cdr.tz.out | 2 +- ...ts_python-contracts_015-opcodes-chain_id.tz.out | 2 +- ...hon-contracts_015-opcodes-chain_id_store.tz.out | 2 +- ...on-contracts_015-opcodes-check_signature.tz.out | 2 +- ...ts_python-contracts_015-opcodes-comb-get.tz.out | 2 +- ...thon-contracts_015-opcodes-comb-literals.tz.out | 2 +- ..._python-contracts_015-opcodes-comb-set-2.tz.out | 2 +- ...ts_python-contracts_015-opcodes-comb-set.tz.out | 2 +- ... tests_python-contracts_015-opcodes-comb.tz.out | 2 +- ...sts_python-contracts_015-opcodes-compare.tz.out | 2 +- ...n-contracts_015-opcodes-compare_big_type.tz.out | 2 +- ...-contracts_015-opcodes-compare_big_type2.tz.out | 2 +- ...python-contracts_015-opcodes-comparisons.tz.out | 2 +- ...ython-contracts_015-opcodes-concat_hello.tz.out | 2 +- ...contracts_015-opcodes-concat_hello_bytes.tz.out | 2 +- ...python-contracts_015-opcodes-concat_list.tz.out | 2 +- ... tests_python-contracts_015-opcodes-cons.tz.out | 2 +- ...ython-contracts_015-opcodes-contains_all.tz.out | 2 +- ...ts_python-contracts_015-opcodes-contract.tz.out | 2 +- ...on-contracts_015-opcodes-create_contract.tz.out | 2 +- ...cts_015-opcodes-create_contract_rootname.tz.out | 2 +- ...015-opcodes-create_contract_rootname_alt.tz.out | 2 +- ...ts_015-opcodes-create_contract_with_view.tz.out | 2 +- ...on-contracts_015-opcodes-diff_timestamps.tz.out | 2 +- ...ests_python-contracts_015-opcodes-dig_eq.tz.out | 2 +- ... tests_python-contracts_015-opcodes-dign.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-dip.tz.out | 2 +- ... tests_python-contracts_015-opcodes-dipn.tz.out | 2 +- ...tests_python-contracts_015-opcodes-dropn.tz.out | 2 +- ... tests_python-contracts_015-opcodes-dugn.tz.out | 2 +- ...tests_python-contracts_015-opcodes-dup-n.tz.out | 2 +- ... tests_python-contracts_015-opcodes-ediv.tz.out | 2 +- ..._python-contracts_015-opcodes-ediv_mutez.tz.out | 2 +- ... tests_python-contracts_015-opcodes-emit.tz.out | 2 +- ...s_python-contracts_015-opcodes-empty_map.tz.out | 2 +- ...python-contracts_015-opcodes-exec_concat.tz.out | 2 +- ...tests_python-contracts_015-opcodes-first.tz.out | 2 +- ...racts_015-opcodes-get_and_update_big_map.tz.out | 2 +- ...contracts_015-opcodes-get_and_update_map.tz.out | 2 +- ...-contracts_015-opcodes-get_big_map_value.tz.out | 2 +- ...thon-contracts_015-opcodes-get_map_value.tz.out | 2 +- ...cts_015-opcodes-hash_consistency_checker.tz.out | 2 +- ...ts_python-contracts_015-opcodes-hash_key.tz.out | 2 +- ...python-contracts_015-opcodes-hash_string.tz.out | 2 +- ...Tc tests_python-contracts_015-opcodes-if.tz.out | 2 +- ...sts_python-contracts_015-opcodes-if_some.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-int.tz.out | 2 +- ...s_python-contracts_015-opcodes-iter_fail.tz.out | 2 +- ...ests_python-contracts_015-opcodes-keccak.tz.out | 2 +- ..._python-contracts_015-opcodes-left_right.tz.out | 2 +- ...tests_python-contracts_015-opcodes-level.tz.out | 2 +- ...python-contracts_015-opcodes-list_concat.tz.out | 2 +- ...-contracts_015-opcodes-list_concat_bytes.tz.out | 2 +- ...sts_python-contracts_015-opcodes-list_id.tz.out | 2 +- ...python-contracts_015-opcodes-list_id_map.tz.out | 2 +- ...s_python-contracts_015-opcodes-list_iter.tz.out | 2 +- ...hon-contracts_015-opcodes-list_map_block.tz.out | 2 +- ...s_python-contracts_015-opcodes-list_size.tz.out | 2 +- ...thon-contracts_015-opcodes-loop_failwith.tz.out | 2 +- ...s_python-contracts_015-opcodes-loop_left.tz.out | 2 +- ...contracts_015-opcodes-loop_left_failwith.tz.out | 2 +- ...sts_python-contracts_015-opcodes-map_car.tz.out | 2 +- ...ests_python-contracts_015-opcodes-map_id.tz.out | 2 +- ...ts_python-contracts_015-opcodes-map_iter.tz.out | 2 +- ...sts_python-contracts_015-opcodes-map_map.tz.out | 2 +- ...contracts_015-opcodes-map_map_sideeffect.tz.out | 2 +- ...python-contracts_015-opcodes-map_mem_nat.tz.out | 2 +- ...hon-contracts_015-opcodes-map_mem_string.tz.out | 2 +- ...ts_python-contracts_015-opcodes-map_size.tz.out | 2 +- ...racts_015-opcodes-merge_comparable_pairs.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-mul.tz.out | 2 +- ...n-contracts_015-opcodes-mul_bls12_381_fr.tz.out | 2 +- ...n-contracts_015-opcodes-mul_bls12_381_g1.tz.out | 2 +- ...n-contracts_015-opcodes-mul_bls12_381_g2.tz.out | 2 +- ...ython-contracts_015-opcodes-mul_overflow.tz.out | 2 +- ...tests_python-contracts_015-opcodes-munch.tz.out | 2 +- ...tracts_015-opcodes-mutez_to_bls12_381_fr.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-neg.tz.out | 2 +- ...n-contracts_015-opcodes-neg_bls12_381_fr.tz.out | 2 +- ...n-contracts_015-opcodes-neg_bls12_381_g1.tz.out | 2 +- ...n-contracts_015-opcodes-neg_bls12_381_g2.tz.out | 2 +- ... tests_python-contracts_015-opcodes-none.tz.out | 2 +- ... tests_python-contracts_015-opcodes-noop.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-not.tz.out | 2 +- ..._python-contracts_015-opcodes-not_binary.tz.out | 2 +- ...Tc tests_python-contracts_015-opcodes-or.tz.out | 2 +- ...s_python-contracts_015-opcodes-or_binary.tz.out | 2 +- ...-contracts_015-opcodes-originate_big_map.tz.out | 2 +- ..._python-contracts_015-opcodes-packunpack.tz.out | 2 +- ...hon-contracts_015-opcodes-packunpack_rev.tz.out | 2 +- ...contracts_015-opcodes-packunpack_rev_cty.tz.out | 2 +- ...sts_python-contracts_015-opcodes-pair_id.tz.out | 2 +- ...thon-contracts_015-opcodes-pairing_check.tz.out | 2 +- ...tests_python-contracts_015-opcodes-pexec.tz.out | 2 +- ...sts_python-contracts_015-opcodes-pexec_2.tz.out | 2 +- ...tests_python-contracts_015-opcodes-proxy.tz.out | 2 +- ...sts_python-contracts_015-opcodes-ret_int.tz.out | 2 +- ...sts_python-contracts_015-opcodes-reverse.tz.out | 2 +- ...ython-contracts_015-opcodes-reverse_loop.tz.out | 2 +- ...ontracts_015-opcodes-sapling_empty_state.tz.out | 2 +- ... tests_python-contracts_015-opcodes-self.tz.out | 2 +- ...ython-contracts_015-opcodes-self_address.tz.out | 2 +- ..._015-opcodes-self_address_after_fib_view.tz.out | 2 +- ...pcodes-self_address_after_nonexistent_view..out | 2 +- ...acts_015-opcodes-self_address_after_view.tz.out | 2 +- ...ontracts_015-opcodes-self_after_fib_view.tz.out | 2 +- ..._015-opcodes-self_after_nonexistent_view.tz.out | 2 +- ...on-contracts_015-opcodes-self_after_view.tz.out | 2 +- ...015-opcodes-self_with_default_entrypoint.tz.out | 2 +- ...ntracts_015-opcodes-self_with_entrypoint.tz.out | 2 +- ...ests_python-contracts_015-opcodes-sender.tz.out | 2 +- ...tracts_015-opcodes-sender_after_fib_view.tz.out | 2 +- ...15-opcodes-sender_after_nonexistent_view.tz.out | 2 +- ...-contracts_015-opcodes-sender_after_view.tz.out | 2 +- ...sts_python-contracts_015-opcodes-set_car.tz.out | 2 +- ...sts_python-contracts_015-opcodes-set_cdr.tz.out | 2 +- ...ython-contracts_015-opcodes-set_delegate.tz.out | 2 +- ...ests_python-contracts_015-opcodes-set_id.tz.out | 2 +- ...ts_python-contracts_015-opcodes-set_iter.tz.out | 2 +- ..._python-contracts_015-opcodes-set_member.tz.out | 2 +- ...ts_python-contracts_015-opcodes-set_size.tz.out | 2 +- ... tests_python-contracts_015-opcodes-sets.tz.out | 2 +- ... tests_python-contracts_015-opcodes-sha3.tz.out | 2 +- ...ests_python-contracts_015-opcodes-shifts.tz.out | 2 +- ...tests_python-contracts_015-opcodes-slice.tz.out | 2 +- ...python-contracts_015-opcodes-slice_bytes.tz.out | 2 +- ...ests_python-contracts_015-opcodes-slices.tz.out | 2 +- ...ests_python-contracts_015-opcodes-source.tz.out | 2 +- ...python-contracts_015-opcodes-split_bytes.tz.out | 2 +- ...ython-contracts_015-opcodes-split_string.tz.out | 2 +- ...contracts_015-opcodes-store_bls12_381_fr.tz.out | 2 +- ...contracts_015-opcodes-store_bls12_381_g1.tz.out | 2 +- ...contracts_015-opcodes-store_bls12_381_g2.tz.out | 2 +- ...python-contracts_015-opcodes-store_input.tz.out | 2 +- ...s_python-contracts_015-opcodes-store_now.tz.out | 2 +- ...ests_python-contracts_015-opcodes-str_id.tz.out | 2 +- ...ontracts_015-opcodes-sub_timestamp_delta.tz.out | 2 +- ...ests_python-contracts_015-opcodes-subset.tz.out | 2 +- ...python-contracts_015-opcodes-tez_add_sub.tz.out | 2 +- ..._python-contracts_015-opcodes-ticket_bad.tz.out | 2 +- ...n-contracts_015-opcodes-ticket_big_store.tz.out | 2 +- ...python-contracts_015-opcodes-ticket_join.tz.out | 2 +- ...python-contracts_015-opcodes-ticket_read.tz.out | 2 +- ...ython-contracts_015-opcodes-ticket_split.tz.out | 2 +- ...hon-contracts_015-opcodes-ticket_store-2.tz.out | 2 +- ...ython-contracts_015-opcodes-ticket_store.tz.out | 2 +- ..._python-contracts_015-opcodes-ticketer-2.tz.out | 2 +- ...ts_python-contracts_015-opcodes-ticketer.tz.out | 2 +- ...on-contracts_015-opcodes-transfer_amount.tz.out | 2 +- ...on-contracts_015-opcodes-transfer_tokens.tz.out | 2 +- ...ests_python-contracts_015-opcodes-uncomb.tz.out | 2 +- ...ests_python-contracts_015-opcodes-unpair.tz.out | 2 +- ...opcodes-unpair_field_annotation_mismatch.tz.out | 2 +- ...hon-contracts_015-opcodes-update_big_map.tz.out | 2 +- ...s_python-contracts_015-opcodes-utxo_read.tz.out | 2 +- ...tests_python-contracts_015-opcodes-utxor.tz.out | 2 +- ...ts_python-contracts_015-opcodes-view_fib.tz.out | 2 +- ...tracts_015-opcodes-view_mutual_recursion.tz.out | 2 +- ...python-contracts_015-opcodes-view_op_add.tz.out | 2 +- ...n-contracts_015-opcodes-view_op_constant.tz.out | 2 +- ..._python-contracts_015-opcodes-view_op_id.tz.out | 2 +- ...cts_015-opcodes-view_op_nonexistent_addr.tz.out | 2 +- ...cts_015-opcodes-view_op_nonexistent_func.tz.out | 2 +- ...s_015-opcodes-view_op_test_step_contants.tz.out | 2 +- ...pcodes-view_op_toplevel_inconsistent_input_.out | 2 +- ...pcodes-view_op_toplevel_inconsistent_output.out | 2 +- ...ts_python-contracts_015-opcodes-view_rec.tz.out | 2 +- ...-contracts_015-opcodes-view_toplevel_lib.tz.out | 2 +- ...ython-contracts_015-opcodes-voting_power.tz.out | 2 +- ...c tests_python-contracts_015-opcodes-xor.tz.out | 2 +- 315 files changed, 317 insertions(+), 331 deletions(-) delete mode 100644 tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-accounts.tz.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-add1.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-add1_list.tz.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-after_strategy.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-always.tz.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-append.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-at_least.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-auction.tz.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-bad_lockup.tz.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-big_map_union.tz.out (88%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cadr_annotation.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-concat.tz.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-conditionals.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cons_twice.tz.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cps_fact.tz.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-create_add1_lists.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-data_publisher.tz.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-dispatch.tz.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-empty.tz.out (58%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-fail_amount.tz.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-faucet.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-forward.tz.out (99%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-id.tz.out (59%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-infinite_loop.tz.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-insertion_sort.tz.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-int_publisher.tz.out (95%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-king_of_tez.tz.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-list_of_transactions.tz.out (90%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-queue.tz.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reduce_map.tz.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reentrancy.tz.out (90%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reservoir.tz.out (95%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-scrutable_reservoir.tz.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-spawn_identities.tz.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-big_map_entrypoints.tz.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-delegatable_target.tz.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-manager.tz.out (87%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-no_default_target.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-no_entrypoint_target.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-rooted_target.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-simple_entrypoints.tz.out (59%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpeq.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpge.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpgt.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmple.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmplt.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpneq.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_eq.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_ge.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_gt.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_le.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_lt.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_neq.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-big_map_get_add.tz.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-big_map_mem.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-build_list.tz.out (88%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-carn_and_cdrn.tz.out (87%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-compare.tz.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-compare_bytes.tz.out (94%) create mode 100644 tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-fail.tz.out rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-guestbook.tz.out (86%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-macro_annotations.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-map_caddaadr.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-max_in_list.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-min.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-pair_macro.tz.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-set_caddaadr.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-take_my_money.tz.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-unpair_macro.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-add_clear_tickets.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-authentication.tz.out (91%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_entrypoints.tz.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_magic.tz.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_read.tz.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_store.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_write.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-create_contract.tz.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-create_contract_simple.tz.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-default_account.tz.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_appender.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_caller.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_storer.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-fa12_reference.tz.out (99%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-generic_multisig.tz.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-groth16.tz.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-hardlimit.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-legacy_multisig.tz.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-lockup.tz.out (90%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-lqt_fa12.mligo.tz.out (99%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-multiple_en2.tz.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-multiple_entrypoints_counter..out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-originate_contract.tz.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-parameterized_multisig.tz.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--receive_tickets_in_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-receive_tickets_in_big_map.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-replay.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-reveal_signed_preimage.tz.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_receiver.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-self_address_receiver.tz.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_sender.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-self_address_sender.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--send_tickets_in_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-send_tickets_in_big_map.tz.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_builder_fungible.tz.out (91%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_builder_non_fungible.t.out (91%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_wallet_fungible.tz.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_wallet_non_fungible.tz.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-vote_for_delegate.tz.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-weather_insurance.tz.out (95%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-xcat.tz.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-xcat_dapp.tz.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bad_annot_contract.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bug_262.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bug_843.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-pairk_annot.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-abs.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add.tz.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_fr.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_g1.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_g2.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_delta_timestamp.tz.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_timestamp_delta.tz.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-address.tz.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_fib_view.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_nonexistent_view.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_view.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and_binary.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and_logical_1.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance.tz.out (61%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_fib_view.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_nonexistent_view.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_view.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_mem_nat.tz.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_mem_string.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_to_self.tz.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_push_bytes_not_padded.t.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_push_nat.tz.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_to_int.tz.out (60%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_to_mutez.tz.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_z_int.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_z_nat.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_z_fr_int.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_z_fr_nat.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bytes.tz.out (58%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-car.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-cdr.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-chain_id.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-chain_id_store.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-check_signature.tz.out (88%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-get.tz.out (89%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-literals.tz.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-set-2.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-set.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb.tz.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare.tz.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare_big_type.tz.out (99%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare_big_type2.tz.out (99%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comparisons.tz.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_hello.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_hello_bytes.tz.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_list.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-cons.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-contains_all.tz.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-contract.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_rootname.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_rootname_alt.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_with_view.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-diff_timestamps.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dig_eq.tz.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dign.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dip.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dipn.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dropn.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dugn.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dup-n.tz.out (88%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ediv.tz.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ediv_mutez.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-emit.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-empty_map.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-exec_concat.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-first.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_and_update_big_map.tz.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_and_update_map.tz.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_big_map_value.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_map_value.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_consistency_checker.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_key.tz.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_string.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-if.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-if_some.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-int.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-iter_fail.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-keccak.tz.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-left_right.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-level.tz.out (61%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_concat.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_concat_bytes.tz.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_id.tz.out (61%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_id_map.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_iter.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_map_block.tz.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_size.tz.out (61%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_failwith.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_left.tz.out (88%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_left_failwith.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_car.tz.out (75%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_id.tz.out (61%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_iter.tz.out (88%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_map.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_map_sideeffect.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_mem_nat.tz.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_mem_string.tz.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_size.tz.out (62%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-merge_comparable_pairs.tz.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul.tz.out (91%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_fr.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_g1.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_g2.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_overflow.tz.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-munch.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mutez_to_bls12_381_fr.tz.out (75%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_fr.tz.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_g1.tz.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_g2.tz.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-none.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-noop.tz.out (58%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-not.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-not_binary.tz.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-or.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-or_binary.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-originate_big_map.tz.out (61%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack_rev.tz.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack_rev_cty.tz.out (99%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pair_id.tz.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pairing_check.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pexec.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pexec_2.tz.out (87%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-proxy.tz.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ret_int.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-reverse.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-reverse_loop.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sapling_empty_state.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_fib_view.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_nonexistent_view..out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_view.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_fib_view.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_nonexistent_view.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_view.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_with_default_entrypoint.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_with_entrypoint.tz.out (91%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender.tz.out (62%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_fib_view.tz.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_nonexistent_view.tz.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_view.tz.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_car.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_cdr.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_delegate.tz.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_id.tz.out (61%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_iter.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_member.tz.out (86%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_size.tz.out (61%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sets.tz.out (91%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sha3.tz.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-shifts.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slice.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slice_bytes.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slices.tz.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-source.tz.out (62%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-split_bytes.tz.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-split_string.tz.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_fr.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_g1.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_g2.tz.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_input.tz.out (58%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_now.tz.out (62%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-str_id.tz.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sub_timestamp_delta.tz.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-subset.tz.out (90%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-tez_add_sub.tz.out (86%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_bad.tz.out (60%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_big_store.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_join.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_read.tz.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_split.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_store-2.tz.out (63%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_store.tz.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticketer-2.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticketer.tz.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-transfer_amount.tz.out (60%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-transfer_tokens.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-uncomb.tz.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-unpair.tz.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-unpair_field_annotation_mismatch.tz.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-update_big_map.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-utxo_read.tz.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-utxor.tz.out (95%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_fib.tz.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_mutual_recursion.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_add.tz.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_constant.tz.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_id.tz.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_nonexistent_addr.tz.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_nonexistent_func.tz.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_test_step_contants.tz.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_toplevel_inconsistent_input_.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_toplevel_inconsistent_output.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_rec.tz.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_toplevel_lib.tz.out (95%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-voting_power.tz.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out => tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-xor.tz.out (77%) diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out b/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out deleted file mode 100644 index 4109378a7e74..000000000000 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out +++ /dev/null @@ -1,5 +0,0 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/fail.tz] - -Well typed -Gas remaining: 1039998.449 units remaining -{ parameter unit ; storage unit ; code { FAIL } } diff --git a/tests_python/tests_015/test_contract.py b/tests_python/tests_015/test_contract.py index adb8f207f43a..03ecffb71768 100644 --- a/tests_python/tests_015/test_contract.py +++ b/tests_python/tests_015/test_contract.py @@ -377,20 +377,6 @@ class TestExecutionOrdering: assert client.get_storage(storer) == '"{}"'.format(expected) -@pytest.mark.contract -@pytest.mark.regression -class TestTypecheck: - """Regression testing of Michelson typechecking""" - - @pytest.mark.parametrize("contract", all_contracts()) - def test_typecheck(self, client_regtest: Client, contract): - client = client_regtest - assert contract.endswith( - '.tz' - ), "test contract should have .tz extension" - client.typecheck(os.path.join(CONTRACT_PATH, contract), details=True) - - @pytest.mark.slow @pytest.mark.contract class TestContracts: diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-accounts.tz.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-accounts.tz.out index 176cdfa6c4d2..c766dc70434b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-accounts.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/accounts.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/accounts.tz --details Well typed Gas remaining: 1039932.585 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-add1.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-add1.tz.out index 8de5bdb5f67b..5b2972046641 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-add1.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/add1.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/add1.tz --details Well typed Gas remaining: 1039996.774 units remaining { parameter int ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-add1_list.tz.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-add1_list.tz.out index d038b2bfb77b..b9ed99cdf5af 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-add1_list.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/add1_list.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/add1_list.tz --details Well typed Gas remaining: 1039995.973 units remaining { parameter (list int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-after_strategy.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-after_strategy.tz.out index 0b168282028e..024b54525098 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-after_strategy.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/after_strategy.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/after_strategy.tz --details Well typed Gas remaining: 1039991.203 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-always.tz.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-always.tz.out index ca4c324e08e6..6afad84e6366 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-always.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/always.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/always.tz --details Well typed Gas remaining: 1039995.941 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-append.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-append.tz.out index 7cd8cf7885e2..2624fcd24f43 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-append.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/append.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/append.tz --details Well typed Gas remaining: 1039993.459 units remaining { parameter (pair (list int) (list int)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-at_least.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-at_least.tz.out index 21153f6bf691..183cbd581de3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-at_least.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/at_least.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/at_least.tz --details Well typed Gas remaining: 1039993.870 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-auction.tz.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-auction.tz.out index f3568c702437..98f2b5a8e292 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-auction.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/auction.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/auction.tz --details Well typed Gas remaining: 1039974.418 units remaining { parameter key_hash ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-bad_lockup.tz.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-bad_lockup.tz.out index f0c47625c52a..79eed4a3ec7f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-bad_lockup.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/bad_lockup.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/bad_lockup.tz --details Well typed Gas remaining: 1039974.993 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-big_map_union.tz.out similarity index 88% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-big_map_union.tz.out index f8f25c57e5ae..2d65f43edbf1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-big_map_union.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/big_map_union.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/big_map_union.tz --details Well typed Gas remaining: 1039987.459 units remaining { parameter (list (pair string int)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cadr_annotation.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cadr_annotation.tz.out index d87865b75e81..6572bc21d18e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cadr_annotation.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/cadr_annotation.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/cadr_annotation.tz --details Well typed Gas remaining: 1039995.385 units remaining { parameter (pair (pair %p1 unit (string %no_name)) bool) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-concat.tz.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-concat.tz.out index 5b67074b12cf..37c39c8dd901 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-concat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/concat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/concat.tz --details Well typed Gas remaining: 1039993.578 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-conditionals.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-conditionals.tz.out index 5723974fa8ff..15a46cf4849c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-conditionals.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/conditionals.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/conditionals.tz --details Well typed Gas remaining: 1039990.576 units remaining { parameter (or string (option int)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cons_twice.tz.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cons_twice.tz.out index 1a51043ca518..df72384fffec 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cons_twice.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/cons_twice.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/cons_twice.tz --details Well typed Gas remaining: 1039993.758 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cps_fact.tz.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cps_fact.tz.out index 4fe01a934268..971fce8029df 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-cps_fact.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/cps_fact.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/cps_fact.tz --details Well typed Gas remaining: 1039976.109 units remaining { storage nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-create_add1_lists.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-create_add1_lists.tz.out index 89a2ba999d75..4fcbff0a2729 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-create_add1_lists.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/create_add1_lists.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/create_add1_lists.tz --details Well typed Gas remaining: 1039989.990 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-data_publisher.tz.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-data_publisher.tz.out index 3a43b694f6a6..dadfe2b48bce 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-data_publisher.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/data_publisher.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/data_publisher.tz --details Well typed Gas remaining: 1039975.804 units remaining { parameter (pair signature (pair string nat)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-dispatch.tz.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-dispatch.tz.out index ea2b7479c354..da21914a6f3b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-dispatch.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/dispatch.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/dispatch.tz --details Well typed Gas remaining: 1039983.006 units remaining { parameter (or string (pair string (lambda unit string))) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-empty.tz.out similarity index 58% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-empty.tz.out index 2f306a86254f..fecf78ec7671 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-empty.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/empty.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/empty.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-fail_amount.tz.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-fail_amount.tz.out index e9541525ebc4..59bd3b8da19a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-fail_amount.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/fail_amount.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/fail_amount.tz --details Well typed Gas remaining: 1039993.067 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-faucet.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-faucet.tz.out index 0bdc03c6cb18..ee2adc8e1788 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-faucet.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/faucet.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/faucet.tz --details Well typed Gas remaining: 1039988.070 units remaining { parameter key_hash ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-forward.tz.out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-forward.tz.out index 0e3b22d3690f..09a672892934 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-forward.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/forward.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/forward.tz --details Well typed Gas remaining: 1039670.292 units remaining { parameter (or string nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-id.tz.out similarity index 59% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-id.tz.out index 7e1bc0286fa5..b7269de3dc88 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-id.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_input.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/id.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-infinite_loop.tz.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-infinite_loop.tz.out index 4e25fc3cc64e..659f11c6c04b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-infinite_loop.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/infinite_loop.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/infinite_loop.tz --details Well typed Gas remaining: 1039995.465 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-insertion_sort.tz.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-insertion_sort.tz.out index a69d84b17b96..94edeff54dcb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-insertion_sort.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/insertion_sort.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/insertion_sort.tz --details Well typed Gas remaining: 1039976.745 units remaining { parameter (list int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-int_publisher.tz.out similarity index 95% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-int_publisher.tz.out index 83e182dcfc52..c1fedd7bcbe9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-int_publisher.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/int_publisher.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/int_publisher.tz --details Well typed Gas remaining: 1039970.043 units remaining { parameter (option (pair signature int)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-king_of_tez.tz.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-king_of_tez.tz.out index ef699b3d2118..cb3d3835a48a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-king_of_tez.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/king_of_tez.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/king_of_tez.tz --details Well typed Gas remaining: 1039974.327 units remaining { parameter key_hash ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-list_of_transactions.tz.out similarity index 90% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-list_of_transactions.tz.out index 0748ac8c6b15..d23874491cf7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-list_of_transactions.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/list_of_transactions.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/list_of_transactions.tz --details Well typed Gas remaining: 1039985.482 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-queue.tz.out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-queue.tz.out index 8863efebff10..36e4f60a0771 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-queue.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/queue.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/queue.tz --details Well typed Gas remaining: 1039958.584 units remaining { parameter (option string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reduce_map.tz.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reduce_map.tz.out index 32453e77aade..e31ac0bd81ba 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reduce_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/reduce_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/reduce_map.tz --details Well typed Gas remaining: 1039978.486 units remaining { parameter (pair (lambda int int) (list int)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reentrancy.tz.out similarity index 90% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reentrancy.tz.out index 0de35e9fd0ef..1ba4b76042a1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reentrancy.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/reentrancy.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/reentrancy.tz --details Well typed Gas remaining: 1039983.352 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reservoir.tz.out similarity index 95% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reservoir.tz.out index 1b77582a25f1..8d396c2f2779 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-reservoir.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/reservoir.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/reservoir.tz --details Well typed Gas remaining: 1039969.237 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-scrutable_reservoir.tz.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-scrutable_reservoir.tz.out index 6b11ac851ff4..39fb38b4c92a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-scrutable_reservoir.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/scrutable_reservoir.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/scrutable_reservoir.tz --details Well typed Gas remaining: 1039889.171 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-spawn_identities.tz.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-spawn_identities.tz.out index de4ba9c5acba..10eac660355e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-attic-spawn_identities.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/spawn_identities.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/attic/spawn_identities.tz --details Well typed Gas remaining: 1039976.440 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-big_map_entrypoints.tz.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-big_map_entrypoints.tz.out index fc32a61ea2de..8da41773f128 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-big_map_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_entrypoints.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/entrypoints/big_map_entrypoints.tz --details Well typed Gas remaining: 1039953.156 units remaining { storage (pair (big_map string nat) (big_map string nat)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-delegatable_target.tz.out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-delegatable_target.tz.out index 147f2c9e1bb1..9756de68b94e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-delegatable_target.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[entrypoints/delegatable_target.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/entrypoints/delegatable_target.tz --details Well typed Gas remaining: 1039960.927 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-manager.tz.out similarity index 87% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-manager.tz.out index f6bb93997b1c..65c50f96c313 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-manager.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[entrypoints/manager.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/entrypoints/manager.tz --details Well typed Gas remaining: 1039984.397 units remaining { parameter (or (lambda %do unit (list operation)) (unit %default)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-no_default_target.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-no_default_target.tz.out index 6d77e834129e..e619c4ed25c0 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-no_default_target.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[entrypoints/no_default_target.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/entrypoints/no_default_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-no_entrypoint_target.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-no_entrypoint_target.tz.out index 8e221f4e49d0..ea1ce0f0ad2d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-no_entrypoint_target.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[entrypoints/no_entrypoint_target.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/entrypoints/no_entrypoint_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-rooted_target.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-rooted_target.tz.out index eb1b58987d21..3e0453833db3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-rooted_target.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[entrypoints/rooted_target.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/entrypoints/rooted_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-simple_entrypoints.tz.out similarity index 59% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-simple_entrypoints.tz.out index 407ca486f2d1..6266c162c092 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-entrypoints-simple_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[entrypoints/simple_entrypoints.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/entrypoints/simple_entrypoints.tz --details Well typed Gas remaining: 1039997.574 units remaining { parameter (or (unit %A) (or (string %B) (nat %C))) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert.tz.out index 56f0fd6576e4..50e0d612e251 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert.tz --details Well typed Gas remaining: 1039995.213 units remaining { parameter bool ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpeq.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpeq.tz.out index 50efeb837b3d..f944fdb20126 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpeq.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpeq.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_cmpeq.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpge.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpge.tz.out index c17ef2f904c4..37558c93d733 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpge.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpge.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_cmpge.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpgt.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpgt.tz.out index 6e7ce0b7a11c..fe82d1e2142e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpgt.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpgt.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_cmpgt.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmple.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmple.tz.out index 41faa28f6dc9..8b4b94f48815 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmple.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmple.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_cmple.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmplt.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmplt.tz.out index 3c06682eecd6..191c4c411465 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmplt.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmplt.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_cmplt.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpneq.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpneq.tz.out index d7c8f20d9154..417cb3178544 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_cmpneq.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpneq.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_cmpneq.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_eq.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_eq.tz.out index 95e092f537cc..3499eb8f352e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_eq.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_eq.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_eq.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_ge.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_ge.tz.out index 6f79c7fa6263..4a67eaf4d57b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_ge.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_ge.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_ge.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_gt.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_gt.tz.out index 3160b193c3e3..ff983e26deb9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_gt.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_gt.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_gt.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_le.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_le.tz.out index 3d51e33681f2..734b086a581d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_le.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_le.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_le.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_lt.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_lt.tz.out index 52c5d6d2f21a..a04b2a92d6f3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_lt.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_lt.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_lt.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_neq.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_neq.tz.out index 5f588a1e4aa9..2f7d993e6f58 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-assert_neq.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/assert_neq.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/assert_neq.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-big_map_get_add.tz.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-big_map_get_add.tz.out index dc0731fd5330..31cdf3609d53 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-big_map_get_add.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/big_map_get_add.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/big_map_get_add.tz --details Well typed Gas remaining: 1039971.186 units remaining { parameter (pair (pair %set_pair int (option int)) (pair %check_pair int (option int))) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-big_map_mem.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-big_map_mem.tz.out index 5a8c62176f22..84280af12d11 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-big_map_mem.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/big_map_mem.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/big_map_mem.tz --details Well typed Gas remaining: 1039984.191 units remaining { parameter (pair int bool) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-build_list.tz.out similarity index 88% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-build_list.tz.out index d02f8a596dff..aadb4f484f6f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-build_list.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/build_list.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/build_list.tz --details Well typed Gas remaining: 1039985.111 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-carn_and_cdrn.tz.out similarity index 87% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-carn_and_cdrn.tz.out index 685a37e34fd7..19e3998d2bc5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-carn_and_cdrn.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/carn_and_cdrn.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/carn_and_cdrn.tz --details Well typed Gas remaining: 1039965.224 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-compare.tz.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-compare.tz.out index 172de45d0a51..71eb20861006 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-compare.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/compare.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/compare.tz --details Well typed Gas remaining: 1039971.322 units remaining { parameter (pair mutez mutez) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-compare_bytes.tz.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-compare_bytes.tz.out index 3daa3a00a601..a1cd4fef8434 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-compare_bytes.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/compare_bytes.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/compare_bytes.tz --details Well typed Gas remaining: 1039971.322 units remaining { parameter (pair bytes bytes) ; diff --git a/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-fail.tz.out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-fail.tz.out new file mode 100644 index 000000000000..2f0934d43c27 --- /dev/null +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-fail.tz.out @@ -0,0 +1,5 @@ + +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/fail.tz --details +Well typed +Gas remaining: 1039998.449 units remaining +{ parameter unit ; storage unit ; code { FAIL } } diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-guestbook.tz.out similarity index 86% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-guestbook.tz.out index a6fbc9865469..7e76d53fa23f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-guestbook.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/guestbook.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/guestbook.tz --details Well typed Gas remaining: 1039988.143 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-macro_annotations.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-macro_annotations.tz.out index f2b185a86484..b4abfe0758cd 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-macro_annotations.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/macro_annotations.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/macro_annotations.tz --details Well typed Gas remaining: 1039993.362 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-map_caddaadr.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-map_caddaadr.tz.out index 8940b0232386..a2be51990b88 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-map_caddaadr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/map_caddaadr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/map_caddaadr.tz --details Well typed Gas remaining: 1039966.766 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-max_in_list.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-max_in_list.tz.out index b12325f74602..5e06ac540b3c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-max_in_list.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/max_in_list.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/max_in_list.tz --details Well typed Gas remaining: 1039987.861 units remaining { parameter (list int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-min.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-min.tz.out index 76c9f58d7581..80ddb7a2b586 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-min.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/min.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/min.tz --details Well typed Gas remaining: 1039991.951 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-pair_macro.tz.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-pair_macro.tz.out index 9c93e294de19..a6eab4152e55 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-pair_macro.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/pair_macro.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/pair_macro.tz --details Well typed Gas remaining: 1039988.858 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-set_caddaadr.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-set_caddaadr.tz.out index 778c854289b4..3dfc3aac872e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-set_caddaadr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/set_caddaadr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/set_caddaadr.tz --details Well typed Gas remaining: 1039970.670 units remaining { parameter mutez ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-take_my_money.tz.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-take_my_money.tz.out index 69c45790e672..3c1d4b89d2e8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-take_my_money.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/take_my_money.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/take_my_money.tz --details Well typed Gas remaining: 1039993.750 units remaining { parameter key_hash ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-unpair_macro.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-unpair_macro.tz.out index 7472b4e5e6d3..fe6ea5bb232c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-macros-unpair_macro.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[macros/unpair_macro.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/macros/unpair_macro.tz --details Well typed Gas remaining: 1039977.130 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-add_clear_tickets.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-add_clear_tickets.tz.out index 7aa932330d26..2835419c1454 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-add_clear_tickets.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/add_clear_tickets.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/add_clear_tickets.tz --details Well typed Gas remaining: 1039988.509 units remaining { parameter (or (pair %add nat string) (unit %clear)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-authentication.tz.out similarity index 91% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-authentication.tz.out index 557d30336d23..8b5cedda7496 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-authentication.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/authentication.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/authentication.tz --details Well typed Gas remaining: 1039979.836 units remaining { parameter (pair (lambda unit (list operation)) signature) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_entrypoints.tz.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_entrypoints.tz.out index c85f7ffb29f3..5ed2621364d7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[entrypoints/big_map_entrypoints.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/big_map_entrypoints.tz --details Well typed Gas remaining: 1039953.156 units remaining { storage (pair (big_map string nat) (big_map string nat)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_magic.tz.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_magic.tz.out index 639d711e3654..88b9bbcab678 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_magic.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_magic.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/big_map_magic.tz --details Well typed Gas remaining: 1039954.710 units remaining { storage (or (pair (big_map string string) (big_map string string)) unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_read.tz.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_read.tz.out index 00e593b6167e..29514b477f53 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_read.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_read.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/big_map_read.tz --details Well typed Gas remaining: 1039994.234 units remaining { storage nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_store.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_store.tz.out index cb5e2475a1a1..7fee363eaa84 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_store.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_store.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/big_map_store.tz --details Well typed Gas remaining: 1039996.856 units remaining { storage (big_map nat nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_write.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_write.tz.out index ffdac3266662..cc8d1d1439af 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-big_map_write.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_write.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/big_map_write.tz --details Well typed Gas remaining: 1039994.982 units remaining { storage unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-create_contract.tz.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-create_contract.tz.out index 613f9b7797c7..745d308535d7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-create_contract.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/create_contract.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/create_contract.tz --details Well typed Gas remaining: 1039973.277 units remaining { parameter (option address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-create_contract_simple.tz.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-create_contract_simple.tz.out index b27ab558c24f..f266200cc882 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-create_contract_simple.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/create_contract_simple.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/create_contract_simple.tz --details Well typed Gas remaining: 1039991.809 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-default_account.tz.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-default_account.tz.out index 765b11e60eb7..84874f3b6f5f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-default_account.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/default_account.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/default_account.tz --details Well typed Gas remaining: 1039993.750 units remaining { parameter key_hash ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_appender.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_appender.tz.out index 335d3404b1a4..01d8553fc6d4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_appender.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_appender.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/execution_order_appender.tz --details Well typed Gas remaining: 1039990.644 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_caller.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_caller.tz.out index 11e08277aabd..cbfd948d716b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_caller.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_caller.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/execution_order_caller.tz --details Well typed Gas remaining: 1039992.571 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_storer.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_storer.tz.out index bda2d571bbd8..45b8461f431e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-execution_order_storer.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_storer.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/execution_order_storer.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-fa12_reference.tz.out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-fa12_reference.tz.out index 89e1401506e2..b99d4b1953a1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-fa12_reference.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/fa12_reference.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/fa12_reference.tz --details Well typed Gas remaining: 1039349.178 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-generic_multisig.tz.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-generic_multisig.tz.out index b0afdf6d1151..bb3b4dda789f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-generic_multisig.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/generic_multisig.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/generic_multisig.tz --details Well typed Gas remaining: 1039939.911 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-groth16.tz.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-groth16.tz.out index 52302125ff0d..e63544033956 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-groth16.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/groth16.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/groth16.tz --details Well typed Gas remaining: 1039536.287 units remaining { storage unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-hardlimit.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-hardlimit.tz.out index 7c6deac7a689..feb7a3509811 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-hardlimit.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/hardlimit.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/hardlimit.tz --details Well typed Gas remaining: 1039992.503 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-legacy_multisig.tz.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-legacy_multisig.tz.out index 5dc05120f079..04dea3a6edc2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-legacy_multisig.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/legacy_multisig.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/legacy_multisig.tz --details Well typed Gas remaining: 1039943.391 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-lockup.tz.out similarity index 90% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-lockup.tz.out index 7506b9e03fab..c0c449a7eb8f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-lockup.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/lockup.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/lockup.tz --details Well typed Gas remaining: 1039983.115 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-lqt_fa12.mligo.tz.out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-lqt_fa12.mligo.tz.out index 560e6118d4fb..0ecf6bd66f2b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-lqt_fa12.mligo.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/lqt_fa12.mligo.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/lqt_fa12.mligo.tz --details Well typed Gas remaining: 1039738.642 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-multiple_en2.tz.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-multiple_en2.tz.out index 77949d359658..f4a7ca4046d8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-multiple_en2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/multiple_en2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/multiple_en2.tz --details Well typed Gas remaining: 1039928.052 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-multiple_entrypoints_counter..out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-multiple_entrypoints_counter..out index ff4b9510d200..04e04fcc8e85 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-multiple_entrypoints_counter..out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/multiple_entrypoints_counter.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/multiple_entrypoints_counter.tz --details Well typed Gas remaining: 1039930.762 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-originate_contract.tz.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-originate_contract.tz.out index 35401b6ee1ea..1f4d8a14f5ed 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-originate_contract.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/originate_contract.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/originate_contract.tz --details Well typed Gas remaining: 1039991.040 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-parameterized_multisig.tz.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-parameterized_multisig.tz.out index 8867e2a1ccc1..31f62a14811d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-parameterized_multisig.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/parameterized_multisig.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/parameterized_multisig.tz --details Well typed Gas remaining: 1039940.583 units remaining { storage (pair bool (pair (map nat (pair bool bool)) (pair key key))) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--receive_tickets_in_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-receive_tickets_in_big_map.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--receive_tickets_in_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-receive_tickets_in_big_map.tz.out index 7888dcb2c813..8465805175f2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--receive_tickets_in_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-receive_tickets_in_big_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/receive_tickets_in_big_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/receive_tickets_in_big_map.tz --details Well typed Gas remaining: 1039997.029 units remaining { parameter (big_map int (ticket string)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-replay.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-replay.tz.out index 00533e5aa95f..586c4a5d3d5c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-replay.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/replay.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/replay.tz --details Well typed Gas remaining: 1039990.860 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-reveal_signed_preimage.tz.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-reveal_signed_preimage.tz.out index ee0168b643a8..171077491baf 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-reveal_signed_preimage.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/reveal_signed_preimage.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/reveal_signed_preimage.tz --details Well typed Gas remaining: 1039978.896 units remaining { parameter (pair bytes signature) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_receiver.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-self_address_receiver.tz.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_receiver.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-self_address_receiver.tz.out index 4569a7bed2c2..f317797bd07e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_receiver.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-self_address_receiver.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/self_address_receiver.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/self_address_receiver.tz --details Well typed Gas remaining: 1039992.799 units remaining { parameter (lambda unit address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_sender.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-self_address_sender.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_sender.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-self_address_sender.tz.out index becf1609ea40..b023cb78780a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_sender.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-self_address_sender.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/self_address_sender.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/self_address_sender.tz --details Well typed Gas remaining: 1039993.319 units remaining { parameter (contract (lambda unit address)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--send_tickets_in_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-send_tickets_in_big_map.tz.out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--send_tickets_in_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-send_tickets_in_big_map.tz.out index 04e0a0a39b65..0ba8b5b33ba8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--send_tickets_in_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-send_tickets_in_big_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/send_tickets_in_big_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/send_tickets_in_big_map.tz --details Well typed Gas remaining: 1039967.113 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_builder_fungible.tz.out similarity index 91% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_builder_fungible.tz.out index ebba03381ab7..ed5cabf51908 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_builder_fungible.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_builder_fungible.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/ticket_builder_fungible.tz --details Well typed Gas remaining: 1039974.006 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_builder_non_fungible.t.out similarity index 91% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_builder_non_fungible.t.out index 55f33ff40d4a..3f088e0348d7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_builder_non_fungible.t.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_builder_non_fungible.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/ticket_builder_non_fungible.tz --details Well typed Gas remaining: 1039971.519 units remaining { parameter (or (ticket %burn nat) (contract %mint_destination (ticket nat))) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_wallet_fungible.tz.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_wallet_fungible.tz.out index 4fff8011d221..07b6d6a4682c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_wallet_fungible.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_wallet_fungible.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/ticket_wallet_fungible.tz --details Well typed Gas remaining: 1039937.454 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_wallet_non_fungible.tz.out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_wallet_non_fungible.tz.out index f83349772f68..eef072783fea 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-ticket_wallet_non_fungible.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_wallet_non_fungible.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/ticket_wallet_non_fungible.tz --details Well typed Gas remaining: 1039959.702 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-vote_for_delegate.tz.out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-vote_for_delegate.tz.out index 1e9b41213caa..63c09c0d600e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-vote_for_delegate.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/vote_for_delegate.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/vote_for_delegate.tz --details Well typed Gas remaining: 1039945.231 units remaining { parameter (option key_hash) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-weather_insurance.tz.out similarity index 95% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-weather_insurance.tz.out index 95d3afd97e44..07546e272660 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-weather_insurance.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/weather_insurance.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/weather_insurance.tz --details Well typed Gas remaining: 1039963.680 units remaining { parameter (pair (signature %signed_weather_data) (nat :rain %actual_level)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-xcat.tz.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-xcat.tz.out index 5b794bfd8a57..ede5f1aad261 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-xcat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/xcat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/xcat.tz --details Well typed Gas remaining: 1039967.905 units remaining { parameter bytes ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-xcat_dapp.tz.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-xcat_dapp.tz.out index 5bded781c7ab..f19ec333ed4b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-mini_scenarios-xcat_dapp.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/xcat_dapp.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/mini_scenarios/xcat_dapp.tz --details Well typed Gas remaining: 1039922.932 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bad_annot_contract.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bad_annot_contract.tz.out index 92e763a15719..9f03417a4314 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bad_annot_contract.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[non_regression/bad_annot_contract.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/non_regression/bad_annot_contract.tz --details Well typed Gas remaining: 1039996.681 units remaining { parameter bytes ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bug_262.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bug_262.tz.out index cb597748222c..86ffc1f0b435 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bug_262.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[non_regression/bug_262.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/non_regression/bug_262.tz --details Well typed Gas remaining: 1039995.909 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bug_843.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bug_843.tz.out index 245867e93b49..ad9763ef2087 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-bug_843.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[non_regression/bug_843.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/non_regression/bug_843.tz --details Well typed Gas remaining: 1039993.849 units remaining { parameter never ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-pairk_annot.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-pairk_annot.tz.out index c4131916fa15..2cfa86c1c137 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-non_regression-pairk_annot.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[non_regression/pairk_annot.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/non_regression/pairk_annot.tz --details Well typed Gas remaining: 1039993.678 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-abs.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-abs.tz.out index ed2fedd63da9..b98b64b6f37c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-abs.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/abs.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/abs.tz --details Well typed Gas remaining: 1039992.714 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add.tz.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add.tz.out index 88ced70ed75e..436c711344f3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/add.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/add.tz --details Well typed Gas remaining: 1039947.571 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_fr.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_fr.tz.out index a73160c32983..30657202f761 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_fr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/add_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_fr bls12_381_fr) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_g1.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_g1.tz.out index b08950c63088..0692b21eccf9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_g1.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/add_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g1 bls12_381_g1) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_g2.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_g2.tz.out index 950cac0e9aab..f7d138499142 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_g2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/add_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g2 bls12_381_g2) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_delta_timestamp.tz.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_delta_timestamp.tz.out index d941a004230e..8c09f9dcd376 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_delta_timestamp.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_delta_timestamp.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/add_delta_timestamp.tz --details Well typed Gas remaining: 1039994.398 units remaining { parameter (pair int timestamp) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_timestamp_delta.tz.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_timestamp_delta.tz.out index 8cd7f159bf2a..62e55bd63abf 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-add_timestamp_delta.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_timestamp_delta.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/add_timestamp_delta.tz --details Well typed Gas remaining: 1039994.398 units remaining { parameter (pair timestamp int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-address.tz.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-address.tz.out index c8bf45be2940..c6e7ea5655bf 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-address.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/address.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/address.tz --details Well typed Gas remaining: 1039996.754 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_fib_view.tz.out index d186c3cd3cc9..5c58efa4f717 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_fib_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/amount_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_nonexistent_view.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_nonexistent_view.tz.out index 13decec7241a..f9200cef803d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_nonexistent_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/amount_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.775 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_view.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_view.tz.out index 0e0f64862854..02c9e30f6443 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-amount_after_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/amount_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and.tz.out index 67264c78d936..b0cdbc93754c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/and.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/and.tz --details Well typed Gas remaining: 1039995.193 units remaining { parameter (pair :param (bool %first) (bool %second)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and_binary.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and_binary.tz.out index b299c4c11e66..dcdcce5f894a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and_binary.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_binary.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/and_binary.tz --details Well typed Gas remaining: 1039972.796 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and_logical_1.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and_logical_1.tz.out index 79cee45e846e..637c38739cf8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-and_logical_1.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_logical_1.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/and_logical_1.tz --details Well typed Gas remaining: 1039996.814 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance.tz.out similarity index 61% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance.tz.out index fd90639d9198..4061b75438ac 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/balance.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_fib_view.tz.out index fc90360dcfdd..8138e1ab1917 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_fib_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/balance_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_nonexistent_view.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_nonexistent_view.tz.out index dcffa170fe1c..986e388bf460 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_nonexistent_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/balance_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.775 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_view.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_view.tz.out index eaae8ffdacac..ba9a8722282a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-balance_after_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/balance_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_mem_nat.tz.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_mem_nat.tz.out index bb3931c477a1..a157d734f8cf 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_mem_nat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_mem_nat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/big_map_mem_nat.tz --details Well typed Gas remaining: 1039993.494 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_mem_string.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_mem_string.tz.out index eb46be9857fe..8dcd4e482a1b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_mem_string.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_mem_string.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/big_map_mem_string.tz --details Well typed Gas remaining: 1039993.494 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_to_self.tz.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_to_self.tz.out index 62c0e0bf54ee..9706dc23f7fd 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-big_map_to_self.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_to_self.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/big_map_to_self.tz --details Well typed Gas remaining: 1039987.387 units remaining { parameter (or (pair %have_fun (big_map string nat) unit) (unit %default)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_push_bytes_not_padded.t.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_push_bytes_not_padded.t.out index 0a488d4a0ead..d7439496f190 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_push_bytes_not_padded.t.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_push_bytes_not_padded.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bls12_381_fr_push_bytes_not_padded.tz --details Well typed Gas remaining: 1039996.436 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_push_nat.tz.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_push_nat.tz.out index 179f3a362903..e74377f451fa 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_push_nat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_push_nat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bls12_381_fr_push_nat.tz --details Well typed Gas remaining: 1039996.436 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_to_int.tz.out similarity index 60% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_to_int.tz.out index aaf0c47d512d..5738b7477813 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_to_int.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_to_int.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bls12_381_fr_to_int.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_to_mutez.tz.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_to_mutez.tz.out index a2e51d2fa8d0..304d5addf12f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_to_mutez.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_to_mutez.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bls12_381_fr_to_mutez.tz --details Well typed Gas remaining: 1039993.594 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_z_int.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_z_int.tz.out index 367a62486d4f..b165f62efba1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_z_int.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_z_int.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter int ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_z_nat.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_z_nat.tz.out index 392b19854178..a287db84fd31 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_fr_z_nat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_z_nat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_z_fr_int.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_z_fr_int.tz.out index 6edde7842e95..4f8b9fd2d156 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_z_fr_int.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_z_fr_int.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter int ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_z_fr_nat.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_z_fr_nat.tz.out index d5005176b49f..e5891452a1c9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bls12_381_z_fr_nat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_z_fr_nat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bytes.tz.out similarity index 58% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bytes.tz.out index 8a8f8771fb2d..805729c6cb5b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-bytes.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/bytes.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/bytes.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter bytes ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-car.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-car.tz.out index 66ade56900b3..e2a0cfc157c5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-car.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/car.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/car.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (pair (nat :l) (nat :r)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-cdr.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-cdr.tz.out index 0727e789d327..351f82408fb5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-cdr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/cdr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/cdr.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (pair (nat :l) (nat :r)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-chain_id.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-chain_id.tz.out index bdd69efd4185..f8ef0a99b3f3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-chain_id.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/chain_id.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/chain_id.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-chain_id_store.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-chain_id_store.tz.out index 25b380012d33..62f374d3e9ad 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-chain_id_store.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/chain_id_store.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/chain_id_store.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-check_signature.tz.out similarity index 88% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-check_signature.tz.out index 91540863fd07..b701cb368e3e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-check_signature.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/check_signature.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/check_signature.tz --details Well typed Gas remaining: 1039988.984 units remaining { parameter key ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-get.tz.out similarity index 89% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-get.tz.out index 0d0ec788220d..03c9de638a43 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-get.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-get.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/comb-get.tz --details Well typed Gas remaining: 1039966.252 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-literals.tz.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-literals.tz.out index e0fcd1d6e034..526199dd8170 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-literals.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-literals.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/comb-literals.tz --details Well typed Gas remaining: 1039993.270 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-set-2.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-set-2.tz.out index 4492202c7869..8dbfaff973f1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-set-2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-set-2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/comb-set-2.tz --details Well typed Gas remaining: 1039991.581 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-set.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-set.tz.out index 5d1081b6e73d..6d880476f501 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb-set.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-set.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/comb-set.tz --details Well typed Gas remaining: 1039991.623 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb.tz.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb.tz.out index 4dcee6cde3dd..383ee1a791c2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comb.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/comb.tz --details Well typed Gas remaining: 1039995.014 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare.tz.out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare.tz.out index d8112b6a8e29..509594ffb9eb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/compare.tz --details Well typed Gas remaining: 1039841.663 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare_big_type.tz.out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare_big_type.tz.out index 19d6bd431e1d..a91b01689325 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare_big_type.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare_big_type.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/compare_big_type.tz --details Well typed Gas remaining: 1039129.907 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare_big_type2.tz.out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare_big_type2.tz.out index 7ac5b7c6fa2b..d54aaa235c76 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-compare_big_type2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare_big_type2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/compare_big_type2.tz --details Well typed Gas remaining: 1038995.158 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comparisons.tz.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comparisons.tz.out index d224158275b4..9dc93c73599f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-comparisons.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/comparisons.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/comparisons.tz --details Well typed Gas remaining: 1039977.212 units remaining { parameter (list int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_hello.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_hello.tz.out index 722fada50e38..d6999c17ecae 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_hello.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_hello.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/concat_hello.tz --details Well typed Gas remaining: 1039995.899 units remaining { parameter (list string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_hello_bytes.tz.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_hello_bytes.tz.out index ae40bb967d0e..32a991d16220 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_hello_bytes.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_hello_bytes.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/concat_hello_bytes.tz --details Well typed Gas remaining: 1039995.973 units remaining { parameter (list bytes) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_list.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_list.tz.out index a2a4246f0ab9..1512d1d93d77 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-concat_list.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_list.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/concat_list.tz --details Well typed Gas remaining: 1039992.537 units remaining { parameter (list string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-cons.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-cons.tz.out index 9e1524f19280..21c625684a24 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-cons.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/cons.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/cons.tz --details Well typed Gas remaining: 1039997.240 units remaining { parameter int ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-contains_all.tz.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-contains_all.tz.out index 28e9cadc7adf..fd43858cfc8a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-contains_all.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/contains_all.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/contains_all.tz --details Well typed Gas remaining: 1039974.767 units remaining { parameter (pair (list string) (list string)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-contract.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-contract.tz.out index da092c078ae9..8ba527a8e919 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-contract.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/contract.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/contract.tz --details Well typed Gas remaining: 1039994.190 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract.tz.out index 9f93bea33b45..855dc3cb6492 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/create_contract.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_rootname.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_rootname.tz.out index c01722db40fb..61198590afc3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_rootname.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_rootname.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/create_contract_rootname.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_rootname_alt.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_rootname_alt.tz.out index f8e4e954ff15..ec00e1c57c37 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_rootname_alt.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_rootname_alt.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/create_contract_rootname_alt.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_with_view.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_with_view.tz.out index bc2891a632a5..5533e304bb9b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-create_contract_with_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_with_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/create_contract_with_view.tz --details Well typed Gas remaining: 1039990.516 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-diff_timestamps.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-diff_timestamps.tz.out index 02dcb0035271..510217a72f66 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-diff_timestamps.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/diff_timestamps.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/diff_timestamps.tz --details Well typed Gas remaining: 1039995.013 units remaining { parameter (pair timestamp timestamp) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dig_eq.tz.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dig_eq.tz.out index c018b85f56ea..a1ba3f75e226 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dig_eq.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/dig_eq.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/dig_eq.tz --details Well typed Gas remaining: 1039909.247 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dign.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dign.tz.out index 5bb35315ed9e..89e1f4608e9f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dign.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/dign.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/dign.tz --details Well typed Gas remaining: 1039992.220 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dip.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dip.tz.out index ebb155114bbb..a3d607304998 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dip.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/dip.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/dip.tz --details Well typed Gas remaining: 1039994.918 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dipn.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dipn.tz.out index 91cdfc223e70..27d8634f768b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dipn.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/dipn.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/dipn.tz --details Well typed Gas remaining: 1039991.330 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dropn.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dropn.tz.out index 54b15c47d6b1..44c2c9ad2a45 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dropn.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/dropn.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/dropn.tz --details Well typed Gas remaining: 1039994.587 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dugn.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dugn.tz.out index f234eff1c428..14cfb70fcfc4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dugn.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/dugn.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/dugn.tz --details Well typed Gas remaining: 1039992.716 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dup-n.tz.out similarity index 88% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dup-n.tz.out index 7137435c363e..b2c23346375b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-dup-n.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/dup-n.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/dup-n.tz --details Well typed Gas remaining: 1039968.032 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ediv.tz.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ediv.tz.out index 25dd99094ef0..e417faaf2574 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ediv.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ediv.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ediv.tz --details Well typed Gas remaining: 1039981.718 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ediv_mutez.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ediv_mutez.tz.out index cf480603a40d..6e07408fb198 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ediv_mutez.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ediv_mutez.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ediv_mutez.tz --details Well typed Gas remaining: 1039990.621 units remaining { parameter (pair mutez (or mutez nat)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-emit.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-emit.tz.out index 1e67222b11b4..63bb3b1885c4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-emit.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/emit.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/emit.tz --details Well typed Gas remaining: 1039991.050 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-empty_map.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-empty_map.tz.out index a18c406e7f9c..04ee68f43341 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-empty_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/empty_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/empty_map.tz --details Well typed Gas remaining: 1039994.366 units remaining { storage (map string string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-exec_concat.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-exec_concat.tz.out index 7f36718d1944..a9502d9d33ac 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-exec_concat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/exec_concat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/exec_concat.tz --details Well typed Gas remaining: 1039992.377 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-first.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-first.tz.out index e8aca940c9a9..0143cc75aef7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-first.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/first.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/first.tz --details Well typed Gas remaining: 1039995.098 units remaining { parameter (list nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_and_update_big_map.tz.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_and_update_big_map.tz.out index 56dd392e1232..fc6742e21e28 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_and_update_big_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_and_update_big_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/get_and_update_big_map.tz --details Well typed Gas remaining: 1039994.790 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_and_update_map.tz.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_and_update_map.tz.out index b7b218913028..7a3b0801694c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_and_update_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_and_update_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/get_and_update_map.tz --details Well typed Gas remaining: 1039994.850 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_big_map_value.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_big_map_value.tz.out index 1928a327a1fa..3c6bc6929b78 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_big_map_value.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_big_map_value.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/get_big_map_value.tz --details Well typed Gas remaining: 1039992.079 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_map_value.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_map_value.tz.out index f6e32215aa6b..7df9816df1f1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-get_map_value.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_map_value.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/get_map_value.tz --details Well typed Gas remaining: 1039992.607 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_consistency_checker.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_consistency_checker.tz.out index 69f04273ff3f..2a4abd07147d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_consistency_checker.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_consistency_checker.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/hash_consistency_checker.tz --details Well typed Gas remaining: 1039996.569 units remaining { parameter (pair mutez (pair timestamp int)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_key.tz.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_key.tz.out index b0421d7917f7..09c1313f1e3c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_key.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_key.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/hash_key.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter key ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_string.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_string.tz.out index bc59a76ffb66..bcf0f84b9596 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-hash_string.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_string.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/hash_string.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-if.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-if.tz.out index 2ab3b44a5bf1..50032bdacb7c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-if.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/if.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/if.tz --details Well typed Gas remaining: 1039995.290 units remaining { parameter bool ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-if_some.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-if_some.tz.out index d572c3d9f91e..fa98f51b9b18 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-if_some.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/if_some.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/if_some.tz --details Well typed Gas remaining: 1039996.019 units remaining { parameter (option string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-int.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-int.tz.out index 77d8d5069a62..0f5254eec708 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-int.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/int.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/int.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-iter_fail.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-iter_fail.tz.out index e4352e395e3d..2b70e856136c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-iter_fail.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/iter_fail.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/iter_fail.tz --details Well typed Gas remaining: 1039996.874 units remaining { parameter (set nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-keccak.tz.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-keccak.tz.out index 35da12838084..302fe811720b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-keccak.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/keccak.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/keccak.tz --details Well typed Gas remaining: 1039996.837 units remaining { storage (option bytes) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-left_right.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-left_right.tz.out index 73bf7682c5c6..33fcf0692a30 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-left_right.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/left_right.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/left_right.tz --details Well typed Gas remaining: 1039995.570 units remaining { parameter (or bool string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-level.tz.out similarity index 61% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-level.tz.out index a4ff457f48d9..051c488fecdf 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-level.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/level.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/level.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_concat.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_concat.tz.out index 1f82c8fca147..5eebe29deeb9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_concat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_concat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/list_concat.tz --details Well typed Gas remaining: 1039996.374 units remaining { parameter (list string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_concat_bytes.tz.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_concat_bytes.tz.out index 9e632d0fa3f0..ab94b28c1f09 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_concat_bytes.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_concat_bytes.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/list_concat_bytes.tz --details Well typed Gas remaining: 1039996.374 units remaining { parameter (list bytes) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_id.tz.out similarity index 61% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_id.tz.out index 13f10cae56c2..aaf62b30f09f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_id.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_id.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/list_id.tz --details Well typed Gas remaining: 1039997.680 units remaining { parameter (list string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_id_map.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_id_map.tz.out index 7db1f18b4d48..995ce12aa124 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_id_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_id_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/list_id_map.tz --details Well typed Gas remaining: 1039996.974 units remaining { parameter (list string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_iter.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_iter.tz.out index 802b1a7be82f..ccc834b5baf7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_iter.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_iter.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/list_iter.tz --details Well typed Gas remaining: 1039995.593 units remaining { parameter (list int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_map_block.tz.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_map_block.tz.out index 2504f947a6af..fc3f8a9851d2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_map_block.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_map_block.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/list_map_block.tz --details Well typed Gas remaining: 1039991.624 units remaining { parameter (list int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_size.tz.out similarity index 61% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_size.tz.out index 8a30d6554629..56ccb6934de1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-list_size.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_size.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/list_size.tz --details Well typed Gas remaining: 1039997.360 units remaining { parameter (list int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_failwith.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_failwith.tz.out index 1074a5657bdc..703c1c2df4ca 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_failwith.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_failwith.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/loop_failwith.tz --details Well typed Gas remaining: 1039996.957 units remaining { parameter bool ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_left.tz.out similarity index 88% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_left.tz.out index 86448d972e96..2d9f97608f3f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_left.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_left.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/loop_left.tz --details Well typed Gas remaining: 1039987.396 units remaining { parameter (list string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_left_failwith.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_left_failwith.tz.out index 847b1a0db771..3c6783e80015 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-loop_left_failwith.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_left_failwith.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/loop_left_failwith.tz --details Well typed Gas remaining: 1039996.716 units remaining { parameter (or string nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_car.tz.out similarity index 75% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_car.tz.out index beabc3d4205b..90eb0492a73f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_car.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_car.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/map_car.tz --details Well typed Gas remaining: 1039991.063 units remaining { parameter bool ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_id.tz.out similarity index 61% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_id.tz.out index f7ecdaa9f28e..85d1ca73f59e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_id.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_id.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/map_id.tz --details Well typed Gas remaining: 1039997.454 units remaining { parameter (map nat nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_iter.tz.out similarity index 88% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_iter.tz.out index ae7a624ea15a..a5249abbc40a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_iter.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_iter.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/map_iter.tz --details Well typed Gas remaining: 1039986.949 units remaining { parameter (map (int :k) (int :e)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_map.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_map.tz.out index 4f0c8b2dfb2b..4f6251b46ee6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/map_map.tz --details Well typed Gas remaining: 1039993.574 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_map_sideeffect.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_map_sideeffect.tz.out index 7cbdf15cf09f..b9c6b31a0fdb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_map_sideeffect.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_map_sideeffect.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/map_map_sideeffect.tz --details Well typed Gas remaining: 1039988.534 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_mem_nat.tz.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_mem_nat.tz.out index 405a0e65ce65..5bc6caf26f9d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_mem_nat.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_mem_nat.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/map_mem_nat.tz --details Well typed Gas remaining: 1039993.554 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_mem_string.tz.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_mem_string.tz.out index 4f3bb4405246..ad193828d8b3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_mem_string.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_mem_string.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/map_mem_string.tz --details Well typed Gas remaining: 1039993.554 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_size.tz.out similarity index 62% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_size.tz.out index a2c05851fb49..de91bf0d5de5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-map_size.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_size.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/map_size.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (map string nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-merge_comparable_pairs.tz.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-merge_comparable_pairs.tz.out index e59524f24d15..832e440fc8ea 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-merge_comparable_pairs.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/merge_comparable_pairs.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/merge_comparable_pairs.tz --details Well typed Gas remaining: 1039992.173 units remaining { parameter (set (pair (nat %n) (pair %p (string %s) (int %i)))) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul.tz.out similarity index 91% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul.tz.out index e319bb5d7d9f..03ef7fa0b236 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/mul.tz --details Well typed Gas remaining: 1039961.621 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_fr.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_fr.tz.out index c119be55842a..a1a95c108a84 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_fr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/mul_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_fr bls12_381_fr) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_g1.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_g1.tz.out index f6b63537a4c2..b7d1f613a0ad 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_g1.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/mul_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g1 bls12_381_fr) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_g2.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_g2.tz.out index fa7eb61f817a..0273b113ce88 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_g2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/mul_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g2 bls12_381_fr) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_overflow.tz.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_overflow.tz.out index 0a4d392fa25c..191087938751 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mul_overflow.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_overflow.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/mul_overflow.tz --details Well typed Gas remaining: 1039992.344 units remaining { parameter (or unit unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-munch.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-munch.tz.out index ee3c0f54c3fa..0c62a4c8aedb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-munch.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/munch.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/munch.tz --details Well typed Gas remaining: 1039997.065 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mutez_to_bls12_381_fr.tz.out similarity index 75% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mutez_to_bls12_381_fr.tz.out index 3faa917205d7..3c4f1f04c1a6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-mutez_to_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/mutez_to_bls12_381_fr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/mutez_to_bls12_381_fr.tz --details Well typed Gas remaining: 1039992.323 units remaining { parameter mutez ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg.tz.out index 1129588895ad..2a5f61bc252c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/neg.tz --details Well typed Gas remaining: 1039996.161 units remaining { parameter (or int nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_fr.tz.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_fr.tz.out index 68729076e3aa..fc6e93beb5c2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_fr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/neg_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_g1.tz.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_g1.tz.out index 4436dd841287..e79bdfc5d9fc 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_g1.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/neg_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_g1 ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_g2.tz.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_g2.tz.out index 3ab8cf20f624..9a5c4a23ed50 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-neg_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_g2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/neg_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_g2 ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-none.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-none.tz.out index 51deb0ee774c..c846e6296c9e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-none.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/none.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/none.tz --details Well typed Gas remaining: 1039997.217 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-noop.tz.out similarity index 58% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-noop.tz.out index 4a858c66a2e1..a1827b57ac41 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-noop.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/noop.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/noop.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-not.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-not.tz.out index d1f0fe539d3a..6716cf05ba3c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-not.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/not.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/not.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bool ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-not_binary.tz.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-not_binary.tz.out index 001cac582f8b..c09688e28c87 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-not_binary.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/not_binary.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/not_binary.tz --details Well typed Gas remaining: 1039995.545 units remaining { parameter (or int nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-or.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-or.tz.out index 7db5bb51f36e..2a9934a45330 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-or.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/or.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/or.tz --details Well typed Gas remaining: 1039994.425 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-or_binary.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-or_binary.tz.out index 5068374b4ef1..b723ba12e08a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-or_binary.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/or_binary.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/or_binary.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-originate_big_map.tz.out similarity index 61% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-originate_big_map.tz.out index 3edac11f95f6..505b6af30402 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-originate_big_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/originate_big_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/originate_big_map.tz --details Well typed Gas remaining: 1039997.334 units remaining { parameter (big_map int int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack.tz.out index fbb5003e28a4..837bdc7f1a1e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/packunpack.tz --details Well typed Gas remaining: 1039987.310 units remaining { parameter (pair (pair (pair string (list int)) (set nat)) bytes) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack_rev.tz.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack_rev.tz.out index ef6333a7e033..c466b8c3880e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack_rev.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack_rev.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/packunpack_rev.tz --details Well typed Gas remaining: 1039888.774 units remaining { parameter (pair int nat string bytes mutez bool key_hash timestamp address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack_rev_cty.tz.out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack_rev_cty.tz.out index 218615f79c84..bd2f58d673ad 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-packunpack_rev_cty.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack_rev_cty.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/packunpack_rev_cty.tz --details Well typed Gas remaining: 1039875.178 units remaining { parameter diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pair_id.tz.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pair_id.tz.out index 3db7265b0c82..aba33c8f9585 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pair_id.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/pair_id.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/pair_id.tz --details Well typed Gas remaining: 1039996.769 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pairing_check.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pairing_check.tz.out index f136b287ca83..0949619358e8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pairing_check.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/pairing_check.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/pairing_check.tz --details Well typed Gas remaining: 1039996.509 units remaining { parameter (list (pair bls12_381_g1 bls12_381_g2)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pexec.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pexec.tz.out index 1811a1670fec..8aee49a2cbe7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pexec.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/pexec.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/pexec.tz --details Well typed Gas remaining: 1039993.994 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pexec_2.tz.out similarity index 87% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pexec_2.tz.out index d1bf8ea9528f..fcc2d13d832b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-pexec_2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/pexec_2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/pexec_2.tz --details Well typed Gas remaining: 1039988.161 units remaining { parameter int ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-proxy.tz.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-proxy.tz.out index 67a530aae7a0..faf1deac9d18 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-proxy.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/proxy.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/proxy.tz --details Well typed Gas remaining: 1039995.281 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ret_int.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ret_int.tz.out index 90ea7dda3386..ae92a16e7a6d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ret_int.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ret_int.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ret_int.tz --details Well typed Gas remaining: 1039996.556 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-reverse.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-reverse.tz.out index f3d528edc799..8356f5c31f58 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-reverse.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/reverse.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/reverse.tz --details Well typed Gas remaining: 1039995.453 units remaining { parameter (list string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-reverse_loop.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-reverse_loop.tz.out index dc3447606b6d..bb5ff085d768 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-reverse_loop.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/reverse_loop.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/reverse_loop.tz --details Well typed Gas remaining: 1039990.243 units remaining { parameter (list string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sapling_empty_state.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sapling_empty_state.tz.out index 3ebfdf914660..97e8b6f7e083 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sapling_empty_state.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/sapling_empty_state.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/sapling_empty_state.tz --details Well typed Gas remaining: 1039997.397 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self.tz.out index d3a63d1fc1b7..555c97c7aade 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self.tz --details Well typed Gas remaining: 1039996.945 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address.tz.out index 686cd5a5cd9c..ec78e9e071f1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_address.tz --details Well typed Gas remaining: 1039990.189 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_fib_view.tz.out index 4dda752dde59..5b0fe6d52979 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_fib_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_address_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_nonexistent_view..out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_nonexistent_view..out index eccc9191f455..5217b110326d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_nonexistent_view..out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_nonexistent_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_address_after_nonexistent_view.tz --details Well typed Gas remaining: 1039987.050 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_view.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_view.tz.out index 82dc657e4ede..9953434a29dd 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_address_after_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_address_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_fib_view.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_fib_view.tz.out index 0721774548c4..ae283fb7f13b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_fib_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_after_fib_view.tz --details Well typed Gas remaining: 1039986.060 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_nonexistent_view.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_nonexistent_view.tz.out index 99fbe7d121b9..6f001d36195b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_nonexistent_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.452 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_view.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_view.tz.out index 262afcbcda6f..727c8b96909f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_after_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_after_view.tz --details Well typed Gas remaining: 1039985.886 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_with_default_entrypoint.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_with_default_entrypoint.tz.out index 197656da3048..9dca316b35a5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_with_default_entrypoint.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_default_entrypoint.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_with_default_entrypoint.tz --details Well typed Gas remaining: 1039988.800 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %default) (string %C))) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_with_entrypoint.tz.out similarity index 91% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_with_entrypoint.tz.out index a777620f8251..5dbddbff99e5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-self_with_entrypoint.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_entrypoint.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/self_with_entrypoint.tz --details Well typed Gas remaining: 1039970.861 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %Z) (string %C))) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender.tz.out similarity index 62% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender.tz.out index 6259a5650b72..903e3ed50715 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/sender.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_fib_view.tz.out index 37a4f5edf1d5..3706c364fd7b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_fib_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/sender_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_nonexistent_view.tz.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_nonexistent_view.tz.out index 42ee7f1007f8..5124149e8af7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_nonexistent_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/sender_after_nonexistent_view.tz --details Well typed Gas remaining: 1039987.050 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_view.tz.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_view.tz.out index 7f37c4cfdf65..10e3e46525bc 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sender_after_view.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_view.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/sender_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_car.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_car.tz.out index 4fe879266263..bc3c088287d2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_car.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_car.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/set_car.tz --details Well typed Gas remaining: 1039992.274 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_cdr.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_cdr.tz.out index 30fb1ba83edb..78a225b68940 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_cdr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_cdr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/set_cdr.tz --details Well typed Gas remaining: 1039992.742 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_delegate.tz.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_delegate.tz.out index 67418a16e3c4..f10352d546d3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_delegate.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_delegate.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/set_delegate.tz --details Well typed Gas remaining: 1039996.276 units remaining { parameter (option key_hash) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_id.tz.out similarity index 61% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_id.tz.out index 54b3f50e536f..70850998cd1a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_id.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_id.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/set_id.tz --details Well typed Gas remaining: 1039997.680 units remaining { parameter (set string) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_iter.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_iter.tz.out index 01230d843a27..65bafefb41e6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_iter.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_iter.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/set_iter.tz --details Well typed Gas remaining: 1039995.593 units remaining { parameter (set int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_member.tz.out similarity index 86% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_member.tz.out index bee7edd8e099..5b10d6b8d11e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_member.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_member.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/set_member.tz --details Well typed Gas remaining: 1039989.840 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_size.tz.out similarity index 61% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_size.tz.out index c8e671d9682b..6c2cdd0f7814 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-set_size.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_size.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/set_size.tz --details Well typed Gas remaining: 1039997.360 units remaining { parameter (set int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sets.tz.out similarity index 91% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sets.tz.out index 34cbfda2ce15..1f63b041d057 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sets.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/sets.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/sets.tz --details Well typed Gas remaining: 1039953.534 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sha3.tz.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sha3.tz.out index a22dabe5f751..e05f28cf9f73 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sha3.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/sha3.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/sha3.tz --details Well typed Gas remaining: 1039996.837 units remaining { storage (option bytes) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-shifts.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-shifts.tz.out index 7c1abcee56ad..a9a7d5418c37 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-shifts.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/shifts.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/shifts.tz --details Well typed Gas remaining: 1039994.259 units remaining { parameter (or (pair nat nat) (pair nat nat)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slice.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slice.tz.out index 2e08a0e62778..72565607ec84 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slice.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/slice.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/slice.tz --details Well typed Gas remaining: 1039993.747 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slice_bytes.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slice_bytes.tz.out index 0d848b23fe63..2599be93e4a0 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slice_bytes.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/slice_bytes.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/slice_bytes.tz --details Well typed Gas remaining: 1039993.747 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slices.tz.out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slices.tz.out index a7ddb36e008d..ab3c1752790a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-slices.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/slices.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/slices.tz --details Well typed Gas remaining: 1039937.057 units remaining { parameter (pair bytes signature) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-source.tz.out similarity index 62% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-source.tz.out index e037e14a5f66..2d87871b1e49 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-source.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/source.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/source.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-split_bytes.tz.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-split_bytes.tz.out index 2a1bb6cf04e6..8ed84f76937b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-split_bytes.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/split_bytes.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/split_bytes.tz --details Well typed Gas remaining: 1039973.337 units remaining { parameter bytes ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-split_string.tz.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-split_string.tz.out index 19600f262093..af761bc6b48d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-split_string.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/split_string.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/split_string.tz --details Well typed Gas remaining: 1039973.337 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_fr.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_fr.tz.out index 99bcc4e0ae09..d32a8d5088ca 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_fr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/store_bls12_381_fr.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_g1.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_g1.tz.out index be5e23682ec4..c1c71ba121eb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_g1.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/store_bls12_381_g1.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_g1 ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_g2.tz.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_g2.tz.out index de28be5ac7e4..f2c3267127b9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_g2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/store_bls12_381_g2.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_g2 ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_input.tz.out similarity index 58% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_input.tz.out index 51ec1c77ec9a..3841c97eab78 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_input.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[attic/id.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/store_input.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_now.tz.out similarity index 62% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_now.tz.out index 9a3a576f2885..c4ec70a32510 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-store_now.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_now.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/store_now.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-str_id.tz.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-str_id.tz.out index c03f605c9fb7..5d866090d064 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-str_id.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/str_id.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/str_id.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter string ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sub_timestamp_delta.tz.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sub_timestamp_delta.tz.out index ad75d3230e93..04e5f1d83e20 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-sub_timestamp_delta.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/sub_timestamp_delta.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/sub_timestamp_delta.tz --details Well typed Gas remaining: 1039995.013 units remaining { parameter (pair timestamp int) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-subset.tz.out similarity index 90% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-subset.tz.out index faf6ce75958f..0da121b5e264 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-subset.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/subset.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/subset.tz --details Well typed Gas remaining: 1039986.401 units remaining { parameter (pair (set string) (set string)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-tez_add_sub.tz.out similarity index 86% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-tez_add_sub.tz.out index 3fbd27ca8f75..0d081b1fd574 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-tez_add_sub.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/tez_add_sub.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/tez_add_sub.tz --details Well typed Gas remaining: 1039987.345 units remaining { parameter (pair mutez mutez) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_bad.tz.out similarity index 60% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_bad.tz.out index 55865f2f76d6..f4949e987e3f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_bad.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_bad.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticket_bad.tz --details Well typed Gas remaining: 1039997.763 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_big_store.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_big_store.tz.out index ad05bce3fb4e..dd7d80cf2d6e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_big_store.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_big_store.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticket_big_store.tz --details Well typed Gas remaining: 1039991.976 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_join.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_join.tz.out index 0c8dd58b023b..65233a6a3b76 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_join.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_join.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticket_join.tz --details Well typed Gas remaining: 1039992.503 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_read.tz.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_read.tz.out index 82dc29b7b460..a10ae7ad3257 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_read.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_read.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticket_read.tz --details Well typed Gas remaining: 1039985.350 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_split.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_split.tz.out index f6aa397c21d2..117609de21fb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_split.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_split.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticket_split.tz --details Well typed Gas remaining: 1039979.558 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_store-2.tz.out similarity index 63% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_store-2.tz.out index 0eaa235e62cb..627cfe683b0a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_store-2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_store-2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticket_store-2.tz --details Well typed Gas remaining: 1039997.454 units remaining { parameter (option (ticket nat)) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_store.tz.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_store.tz.out index 5a9964654c74..16410a2f7292 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticket_store.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_store.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticket_store.tz --details Well typed Gas remaining: 1039997.074 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticketer-2.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticketer-2.tz.out index 3c7406e821b2..8b3d6e8a4c98 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticketer-2.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticketer-2.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticketer-2.tz --details Well typed Gas remaining: 1039986.226 units remaining { parameter (pair (pair address nat) nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticketer.tz.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticketer.tz.out index 52f7eb820738..8a69e67de436 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-ticketer.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticketer.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/ticketer.tz --details Well typed Gas remaining: 1039986.744 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-transfer_amount.tz.out similarity index 60% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-transfer_amount.tz.out index 487c8c002ee7..be00d34dcb45 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-transfer_amount.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/transfer_amount.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/transfer_amount.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-transfer_tokens.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-transfer_tokens.tz.out index 346dbf94a429..e926752303e8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-transfer_tokens.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/transfer_tokens.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/transfer_tokens.tz --details Well typed Gas remaining: 1039994.130 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-uncomb.tz.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-uncomb.tz.out index 6cda1f0bda33..3812ac0e6452 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-uncomb.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/uncomb.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/uncomb.tz --details Well typed Gas remaining: 1039993.181 units remaining { parameter (pair nat nat nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-unpair.tz.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-unpair.tz.out index 1b33a6919f2b..dcc03c01d34a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-unpair.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/unpair.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/unpair.tz --details Well typed Gas remaining: 1039904.519 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-unpair_field_annotation_mismatch.tz.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-unpair_field_annotation_mismatch.tz.out index 42a84a8d4048..cecd38feaca1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-unpair_field_annotation_mismatch.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/unpair_field_annotation_mismatch.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/unpair_field_annotation_mismatch.tz --details Well typed Gas remaining: 1039993.685 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-update_big_map.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-update_big_map.tz.out index 991826f274b8..dbd0a3aefcd0 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-update_big_map.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/update_big_map.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/update_big_map.tz --details Well typed Gas remaining: 1039993.471 units remaining { storage (pair (big_map string string) unit) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-utxo_read.tz.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-utxo_read.tz.out index c25785f8e3bc..841f7ec8aebd 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-utxo_read.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/utxo_read.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/utxo_read.tz --details Well typed Gas remaining: 1039985.390 units remaining { parameter (pair (ticket nat) nat) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-utxor.tz.out similarity index 95% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-utxor.tz.out index da0fd67220ae..6639366a22da 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-utxor.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/utxor.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/utxor.tz --details Well typed Gas remaining: 1039966.804 units remaining { parameter (pair address address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_fib.tz.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_fib.tz.out index ec5889c74e31..91f9fb94e6b5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_fib.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_fib.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_fib.tz --details Well typed Gas remaining: 1039994.630 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_mutual_recursion.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_mutual_recursion.tz.out index 192c20ea9c7b..dcb0f1d967ee 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_mutual_recursion.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_mutual_recursion.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_mutual_recursion.tz --details Well typed Gas remaining: 1039993.335 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_add.tz.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_add.tz.out index 1f9935db62f2..37d9ba2394a8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_add.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_add.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_op_add.tz --details Well typed Gas remaining: 1039994.410 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_constant.tz.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_constant.tz.out index a279eac163fb..25b564cf55bd 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_constant.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_constant.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_op_constant.tz --details Well typed Gas remaining: 1039994.390 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_id.tz.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_id.tz.out index 02ecbbc4909d..b0ed9117b1ac 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_id.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_id.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_op_id.tz --details Well typed Gas remaining: 1039993.949 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_nonexistent_addr.tz.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_nonexistent_addr.tz.out index cb28ddec9f54..936ced28db7f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_nonexistent_addr.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_nonexistent_addr.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_op_nonexistent_addr.tz --details Well typed Gas remaining: 1039989.559 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_nonexistent_func.tz.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_nonexistent_func.tz.out index 29650ef489ce..827d88583c68 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_nonexistent_func.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_nonexistent_func.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_op_nonexistent_func.tz --details Well typed Gas remaining: 1039993.859 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_test_step_contants.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_test_step_contants.tz.out index b0cf7e603eb2..048be733a8e5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_test_step_contants.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_test_step_contants.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_op_test_step_contants.tz --details Well typed Gas remaining: 1039994.470 units remaining { parameter address ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_toplevel_inconsistent_input_.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_toplevel_inconsistent_input_.out index f69ded24a8f1..307b1eb30581 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_toplevel_inconsistent_input_.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_toplevel_inconsistent_input_type.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_op_toplevel_inconsistent_input_type.tz --details Well typed Gas remaining: 1039993.919 units remaining { parameter (pair int address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_toplevel_inconsistent_output.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_toplevel_inconsistent_output.out index c06c930dadc8..27a9085c3b69 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_op_toplevel_inconsistent_output.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_toplevel_inconsistent_output_type.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_op_toplevel_inconsistent_output_type.tz --details Well typed Gas remaining: 1039993.919 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_rec.tz.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_rec.tz.out index 2f3db28331f0..836803db7fef 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_rec.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_rec.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_rec.tz --details Well typed Gas remaining: 1039988.440 units remaining { parameter unit ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_toplevel_lib.tz.out similarity index 95% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_toplevel_lib.tz.out index 4f25187771b4..321ad48b1fc0 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-view_toplevel_lib.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_toplevel_lib.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/view_toplevel_lib.tz --details Well typed Gas remaining: 1039947.179 units remaining { parameter nat ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-voting_power.tz.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-voting_power.tz.out index 082bc7f327ed..2649ed691a2a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-voting_power.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/voting_power.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/voting_power.tz --details Well typed Gas remaining: 1039995.193 units remaining { parameter key ; diff --git a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-xor.tz.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-xor.tz.out index 0d0df55579f7..18621f685d33 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Lima- Tc tests_python-contracts_015-opcodes-xor.tz.out @@ -1,5 +1,5 @@ -tests_015/test_contract.py::TestTypecheck::test_typecheck[opcodes/xor.tz] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_015/opcodes/xor.tz --details Well typed Gas remaining: 1039992.584 units remaining { parameter (or (pair bool bool) (pair nat nat)) ; -- GitLab From b9f9e5c15106859fdb250923ba8f07b93ea6fc01 Mon Sep 17 00:00:00 2001 From: lykimq Date: Thu, 24 Nov 2022 11:29:43 +0700 Subject: [PATCH 5/5] Test: 014 remove pytest traces, remove tests, add tezt traces --- ...tTypecheck::test_typecheck[macros--fail.tz].out | 5 ----- tests_python/tests_014/test_contract.py | 14 -------------- ...ests_python-contracts_014-attic-accounts.tz.out | 2 +- ...Tc tests_python-contracts_014-attic-add1.tz.out | 2 +- ...sts_python-contracts_014-attic-add1_list.tz.out | 2 +- ...ython-contracts_014-attic-after_strategy.tz.out | 2 +- ... tests_python-contracts_014-attic-always.tz.out | 2 +- ... tests_python-contracts_014-attic-append.tz.out | 2 +- ...ests_python-contracts_014-attic-at_least.tz.out | 2 +- ...tests_python-contracts_014-attic-auction.tz.out | 2 +- ...ts_python-contracts_014-attic-bad_lockup.tz.out | 2 +- ...python-contracts_014-attic-big_map_union.tz.out | 2 +- ...thon-contracts_014-attic-cadr_annotation.tz.out | 2 +- ... tests_python-contracts_014-attic-concat.tz.out | 2 +- ..._python-contracts_014-attic-conditionals.tz.out | 2 +- ...ts_python-contracts_014-attic-cons_twice.tz.out | 2 +- ...ests_python-contracts_014-attic-cps_fact.tz.out | 2 +- ...on-contracts_014-attic-create_add1_lists.tz.out | 2 +- ...ython-contracts_014-attic-data_publisher.tz.out | 2 +- ...ests_python-contracts_014-attic-dispatch.tz.out | 2 +- ...c tests_python-contracts_014-attic-empty.tz.out | 2 +- ...s_python-contracts_014-attic-fail_amount.tz.out | 2 +- ... tests_python-contracts_014-attic-faucet.tz.out | 2 +- ...tests_python-contracts_014-attic-forward.tz.out | 2 +- ...- Tc tests_python-contracts_014-attic-id.tz.out | 2 +- ...python-contracts_014-attic-infinite_loop.tz.out | 2 +- ...ython-contracts_014-attic-insertion_sort.tz.out | 2 +- ...python-contracts_014-attic-int_publisher.tz.out | 2 +- ...s_python-contracts_014-attic-king_of_tez.tz.out | 2 +- ...contracts_014-attic-list_of_transactions.tz.out | 2 +- ...c tests_python-contracts_014-attic-queue.tz.out | 2 +- ...ts_python-contracts_014-attic-reduce_map.tz.out | 2 +- ...ts_python-contracts_014-attic-reentrancy.tz.out | 2 +- ...sts_python-contracts_014-attic-reservoir.tz.out | 2 +- ...-contracts_014-attic-scrutable_reservoir.tz.out | 2 +- ...hon-contracts_014-attic-spawn_identities.tz.out | 2 +- ...acts_014-entrypoints-big_map_entrypoints.tz.out | 2 +- ...racts_014-entrypoints-delegatable_target.tz.out | 2 +- ...python-contracts_014-entrypoints-manager.tz.out | 2 +- ...tracts_014-entrypoints-no_default_target.tz.out | 2 +- ...cts_014-entrypoints-no_entrypoint_target.tz.out | 2 +- ...-contracts_014-entrypoints-rooted_target.tz.out | 2 +- ...racts_014-entrypoints-simple_entrypoints.tz.out | 2 +- ...tests_python-contracts_014-macros-assert.tz.out | 2 +- ...python-contracts_014-macros-assert_cmpeq.tz.out | 2 +- ...python-contracts_014-macros-assert_cmpge.tz.out | 2 +- ...python-contracts_014-macros-assert_cmpgt.tz.out | 2 +- ...python-contracts_014-macros-assert_cmple.tz.out | 2 +- ...python-contracts_014-macros-assert_cmplt.tz.out | 2 +- ...ython-contracts_014-macros-assert_cmpneq.tz.out | 2 +- ...ts_python-contracts_014-macros-assert_eq.tz.out | 2 +- ...ts_python-contracts_014-macros-assert_ge.tz.out | 2 +- ...ts_python-contracts_014-macros-assert_gt.tz.out | 2 +- ...ts_python-contracts_014-macros-assert_le.tz.out | 2 +- ...ts_python-contracts_014-macros-assert_lt.tz.out | 2 +- ...s_python-contracts_014-macros-assert_neq.tz.out | 2 +- ...hon-contracts_014-macros-big_map_get_add.tz.out | 2 +- ..._python-contracts_014-macros-big_map_mem.tz.out | 2 +- ...s_python-contracts_014-macros-build_list.tz.out | 2 +- ...ython-contracts_014-macros-carn_and_cdrn.tz.out | 2 +- ...ests_python-contracts_014-macros-compare.tz.out | 2 +- ...ython-contracts_014-macros-compare_bytes.tz.out | 2 +- ...c tests_python-contracts_014-macros-fail.tz.out | 5 +++++ ...ts_python-contracts_014-macros-guestbook.tz.out | 2 +- ...n-contracts_014-macros-macro_annotations.tz.out | 2 +- ...python-contracts_014-macros-map_caddaadr.tz.out | 2 +- ..._python-contracts_014-macros-max_in_list.tz.out | 2 +- ...Tc tests_python-contracts_014-macros-min.tz.out | 2 +- ...s_python-contracts_014-macros-pair_macro.tz.out | 2 +- ...python-contracts_014-macros-set_caddaadr.tz.out | 2 +- ...ython-contracts_014-macros-take_my_money.tz.out | 2 +- ...python-contracts_014-macros-unpair_macro.tz.out | 2 +- ...cts_014-mini_scenarios-add_clear_tickets.tz.out | 2 +- ...tracts_014-mini_scenarios-authentication.tz.out | 2 +- ...s_014-mini_scenarios-big_map_entrypoints.tz.out | 2 +- ...ntracts_014-mini_scenarios-big_map_magic.tz.out | 2 +- ...ontracts_014-mini_scenarios-big_map_read.tz.out | 2 +- ...ntracts_014-mini_scenarios-big_map_store.tz.out | 2 +- ...ntracts_014-mini_scenarios-big_map_write.tz.out | 2 +- ...racts_014-mini_scenarios-create_contract.tz.out | 2 +- ...014-mini_scenarios-create_contract_simple.t.out | 2 +- ...racts_014-mini_scenarios-default_account.tz.out | 2 +- ...014-mini_scenarios-execution_order_appender.out | 2 +- ...014-mini_scenarios-execution_order_caller.t.out | 2 +- ...014-mini_scenarios-execution_order_storer.t.out | 2 +- ...tracts_014-mini_scenarios-fa12_reference.tz.out | 2 +- ...acts_014-mini_scenarios-generic_multisig.tz.out | 2 +- ...hon-contracts_014-mini_scenarios-groth16.tz.out | 2 +- ...n-contracts_014-mini_scenarios-hardlimit.tz.out | 2 +- ...racts_014-mini_scenarios-legacy_multisig.tz.out | 2 +- ...thon-contracts_014-mini_scenarios-lockup.tz.out | 2 +- ...tracts_014-mini_scenarios-lqt_fa12.mligo.tz.out | 2 +- ...ontracts_014-mini_scenarios-multiple_en2.tz.out | 2 +- ...014-mini_scenarios-multiple_entrypoints_cou.out | 2 +- ...ts_014-mini_scenarios-originate_contract.tz.out | 2 +- ...014-mini_scenarios-parameterized_multisig.t.out | 2 +- ...thon-contracts_014-mini_scenarios-replay.tz.out | 2 +- ...014-mini_scenarios-reveal_signed_preimage.t.out | 2 +- ...014-mini_scenarios-ticket_builder_fungible..out | 2 +- ...014-mini_scenarios-ticket_builder_non_fungi.out | 2 +- ...014-mini_scenarios-ticket_wallet_fungible.t.out | 2 +- ...014-mini_scenarios-ticket_wallet_non_fungib.out | 2 +- ...cts_014-mini_scenarios-vote_for_delegate.tz.out | 2 +- ...cts_014-mini_scenarios-weather_insurance.tz.out | 2 +- ...python-contracts_014-mini_scenarios-xcat.tz.out | 2 +- ...n-contracts_014-mini_scenarios-xcat_dapp.tz.out | 2 +- ...ts_014-non_regression-bad_annot_contract.tz.out | 2 +- ...hon-contracts_014-non_regression-bug_262.tz.out | 2 +- ...hon-contracts_014-non_regression-bug_843.tz.out | 2 +- ...contracts_014-non_regression-pairk_annot.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-abs.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-add.tz.out | 2 +- ...n-contracts_014-opcodes-add_bls12_381_fr.tz.out | 2 +- ...n-contracts_014-opcodes-add_bls12_381_g1.tz.out | 2 +- ...n-contracts_014-opcodes-add_bls12_381_g2.tz.out | 2 +- ...ontracts_014-opcodes-add_delta_timestamp.tz.out | 2 +- ...ontracts_014-opcodes-add_timestamp_delta.tz.out | 2 +- ...sts_python-contracts_014-opcodes-address.tz.out | 2 +- ...tracts_014-opcodes-amount_after_fib_view.tz.out | 2 +- ...014-opcodes-amount_after_nonexistent_view.t.out | 2 +- ...-contracts_014-opcodes-amount_after_view.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-and.tz.out | 2 +- ..._python-contracts_014-opcodes-and_binary.tz.out | 2 +- ...thon-contracts_014-opcodes-and_logical_1.tz.out | 2 +- ...sts_python-contracts_014-opcodes-balance.tz.out | 2 +- ...racts_014-opcodes-balance_after_fib_view.tz.out | 2 +- ...014-opcodes-balance_after_nonexistent_view..out | 2 +- ...contracts_014-opcodes-balance_after_view.tz.out | 2 +- ...on-contracts_014-opcodes-big_map_mem_nat.tz.out | 2 +- ...contracts_014-opcodes-big_map_mem_string.tz.out | 2 +- ...on-contracts_014-opcodes-big_map_to_self.tz.out | 2 +- ...014-opcodes-bls12_381_fr_push_bytes_not_pad.out | 2 +- ...tracts_014-opcodes-bls12_381_fr_push_nat.tz.out | 2 +- ...ontracts_014-opcodes-bls12_381_fr_to_int.tz.out | 2 +- ...tracts_014-opcodes-bls12_381_fr_to_mutez.tz.out | 2 +- ...contracts_014-opcodes-bls12_381_fr_z_int.tz.out | 2 +- ...contracts_014-opcodes-bls12_381_fr_z_nat.tz.out | 2 +- ...contracts_014-opcodes-bls12_381_z_fr_int.tz.out | 2 +- ...contracts_014-opcodes-bls12_381_z_fr_nat.tz.out | 2 +- ...tests_python-contracts_014-opcodes-bytes.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-car.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-cdr.tz.out | 2 +- ...ts_python-contracts_014-opcodes-chain_id.tz.out | 2 +- ...hon-contracts_014-opcodes-chain_id_store.tz.out | 2 +- ...on-contracts_014-opcodes-check_signature.tz.out | 2 +- ...ts_python-contracts_014-opcodes-comb-get.tz.out | 2 +- ...thon-contracts_014-opcodes-comb-literals.tz.out | 2 +- ..._python-contracts_014-opcodes-comb-set-2.tz.out | 2 +- ...ts_python-contracts_014-opcodes-comb-set.tz.out | 2 +- ... tests_python-contracts_014-opcodes-comb.tz.out | 2 +- ...sts_python-contracts_014-opcodes-compare.tz.out | 2 +- ...n-contracts_014-opcodes-compare_big_type.tz.out | 2 +- ...-contracts_014-opcodes-compare_big_type2.tz.out | 2 +- ...python-contracts_014-opcodes-comparisons.tz.out | 2 +- ...ython-contracts_014-opcodes-concat_hello.tz.out | 2 +- ...contracts_014-opcodes-concat_hello_bytes.tz.out | 2 +- ...python-contracts_014-opcodes-concat_list.tz.out | 2 +- ... tests_python-contracts_014-opcodes-cons.tz.out | 2 +- ...ython-contracts_014-opcodes-contains_all.tz.out | 2 +- ...ts_python-contracts_014-opcodes-contract.tz.out | 2 +- ...on-contracts_014-opcodes-create_contract.tz.out | 2 +- ...cts_014-opcodes-create_contract_rootname.tz.out | 2 +- ...014-opcodes-create_contract_rootname_alt.tz.out | 2 +- ...ts_014-opcodes-create_contract_with_view.tz.out | 2 +- ...on-contracts_014-opcodes-diff_timestamps.tz.out | 2 +- ...ests_python-contracts_014-opcodes-dig_eq.tz.out | 2 +- ... tests_python-contracts_014-opcodes-dign.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-dip.tz.out | 2 +- ... tests_python-contracts_014-opcodes-dipn.tz.out | 2 +- ...tests_python-contracts_014-opcodes-dropn.tz.out | 2 +- ... tests_python-contracts_014-opcodes-dugn.tz.out | 2 +- ...tests_python-contracts_014-opcodes-dup-n.tz.out | 2 +- ... tests_python-contracts_014-opcodes-ediv.tz.out | 2 +- ..._python-contracts_014-opcodes-ediv_mutez.tz.out | 2 +- ... tests_python-contracts_014-opcodes-emit.tz.out | 2 +- ...s_python-contracts_014-opcodes-empty_map.tz.out | 2 +- ...python-contracts_014-opcodes-exec_concat.tz.out | 2 +- ...tests_python-contracts_014-opcodes-first.tz.out | 2 +- ...racts_014-opcodes-get_and_update_big_map.tz.out | 2 +- ...contracts_014-opcodes-get_and_update_map.tz.out | 2 +- ...-contracts_014-opcodes-get_big_map_value.tz.out | 2 +- ...thon-contracts_014-opcodes-get_map_value.tz.out | 2 +- ...cts_014-opcodes-hash_consistency_checker.tz.out | 2 +- ...ts_python-contracts_014-opcodes-hash_key.tz.out | 2 +- ...python-contracts_014-opcodes-hash_string.tz.out | 2 +- ...Tc tests_python-contracts_014-opcodes-if.tz.out | 2 +- ...sts_python-contracts_014-opcodes-if_some.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-int.tz.out | 2 +- ...s_python-contracts_014-opcodes-iter_fail.tz.out | 2 +- ...ests_python-contracts_014-opcodes-keccak.tz.out | 2 +- ..._python-contracts_014-opcodes-left_right.tz.out | 2 +- ...tests_python-contracts_014-opcodes-level.tz.out | 2 +- ...python-contracts_014-opcodes-list_concat.tz.out | 2 +- ...-contracts_014-opcodes-list_concat_bytes.tz.out | 2 +- ...sts_python-contracts_014-opcodes-list_id.tz.out | 2 +- ...python-contracts_014-opcodes-list_id_map.tz.out | 2 +- ...s_python-contracts_014-opcodes-list_iter.tz.out | 2 +- ...hon-contracts_014-opcodes-list_map_block.tz.out | 2 +- ...s_python-contracts_014-opcodes-list_size.tz.out | 2 +- ...thon-contracts_014-opcodes-loop_failwith.tz.out | 2 +- ...s_python-contracts_014-opcodes-loop_left.tz.out | 2 +- ...contracts_014-opcodes-loop_left_failwith.tz.out | 2 +- ...sts_python-contracts_014-opcodes-map_car.tz.out | 2 +- ...ests_python-contracts_014-opcodes-map_id.tz.out | 2 +- ...ts_python-contracts_014-opcodes-map_iter.tz.out | 2 +- ...sts_python-contracts_014-opcodes-map_map.tz.out | 2 +- ...contracts_014-opcodes-map_map_sideeffect.tz.out | 2 +- ...python-contracts_014-opcodes-map_mem_nat.tz.out | 2 +- ...hon-contracts_014-opcodes-map_mem_string.tz.out | 2 +- ...ts_python-contracts_014-opcodes-map_size.tz.out | 2 +- ...racts_014-opcodes-merge_comparable_pairs.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-mul.tz.out | 2 +- ...n-contracts_014-opcodes-mul_bls12_381_fr.tz.out | 2 +- ...n-contracts_014-opcodes-mul_bls12_381_g1.tz.out | 2 +- ...n-contracts_014-opcodes-mul_bls12_381_g2.tz.out | 2 +- ...ython-contracts_014-opcodes-mul_overflow.tz.out | 2 +- ...tests_python-contracts_014-opcodes-munch.tz.out | 2 +- ...tracts_014-opcodes-mutez_to_bls12_381_fr.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-neg.tz.out | 2 +- ...n-contracts_014-opcodes-neg_bls12_381_fr.tz.out | 2 +- ...n-contracts_014-opcodes-neg_bls12_381_g1.tz.out | 2 +- ...n-contracts_014-opcodes-neg_bls12_381_g2.tz.out | 2 +- ... tests_python-contracts_014-opcodes-none.tz.out | 2 +- ... tests_python-contracts_014-opcodes-noop.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-not.tz.out | 2 +- ..._python-contracts_014-opcodes-not_binary.tz.out | 2 +- ...Tc tests_python-contracts_014-opcodes-or.tz.out | 2 +- ...s_python-contracts_014-opcodes-or_binary.tz.out | 2 +- ...-contracts_014-opcodes-originate_big_map.tz.out | 2 +- ..._python-contracts_014-opcodes-packunpack.tz.out | 2 +- ...hon-contracts_014-opcodes-packunpack_rev.tz.out | 2 +- ...contracts_014-opcodes-packunpack_rev_cty.tz.out | 2 +- ...sts_python-contracts_014-opcodes-pair_id.tz.out | 2 +- ...thon-contracts_014-opcodes-pairing_check.tz.out | 2 +- ...tests_python-contracts_014-opcodes-pexec.tz.out | 2 +- ...sts_python-contracts_014-opcodes-pexec_2.tz.out | 2 +- ...tests_python-contracts_014-opcodes-proxy.tz.out | 2 +- ...sts_python-contracts_014-opcodes-ret_int.tz.out | 2 +- ...sts_python-contracts_014-opcodes-reverse.tz.out | 2 +- ...ython-contracts_014-opcodes-reverse_loop.tz.out | 2 +- ...ontracts_014-opcodes-sapling_empty_state.tz.out | 2 +- ... tests_python-contracts_014-opcodes-self.tz.out | 2 +- ...ython-contracts_014-opcodes-self_address.tz.out | 2 +- ..._014-opcodes-self_address_after_fib_view.tz.out | 2 +- ...014-opcodes-self_address_after_nonexistent_.out | 2 +- ...acts_014-opcodes-self_address_after_view.tz.out | 2 +- ...ontracts_014-opcodes-self_after_fib_view.tz.out | 2 +- ..._014-opcodes-self_after_nonexistent_view.tz.out | 2 +- ...on-contracts_014-opcodes-self_after_view.tz.out | 2 +- ...014-opcodes-self_with_default_entrypoint.tz.out | 2 +- ...ntracts_014-opcodes-self_with_entrypoint.tz.out | 2 +- ...ests_python-contracts_014-opcodes-sender.tz.out | 2 +- ...tracts_014-opcodes-sender_after_fib_view.tz.out | 2 +- ...014-opcodes-sender_after_nonexistent_view.t.out | 2 +- ...-contracts_014-opcodes-sender_after_view.tz.out | 2 +- ...sts_python-contracts_014-opcodes-set_car.tz.out | 2 +- ...sts_python-contracts_014-opcodes-set_cdr.tz.out | 2 +- ...ython-contracts_014-opcodes-set_delegate.tz.out | 2 +- ...ests_python-contracts_014-opcodes-set_id.tz.out | 2 +- ...ts_python-contracts_014-opcodes-set_iter.tz.out | 2 +- ..._python-contracts_014-opcodes-set_member.tz.out | 2 +- ...ts_python-contracts_014-opcodes-set_size.tz.out | 2 +- ... tests_python-contracts_014-opcodes-sets.tz.out | 2 +- ... tests_python-contracts_014-opcodes-sha3.tz.out | 2 +- ...ests_python-contracts_014-opcodes-shifts.tz.out | 2 +- ...tests_python-contracts_014-opcodes-slice.tz.out | 2 +- ...python-contracts_014-opcodes-slice_bytes.tz.out | 2 +- ...ests_python-contracts_014-opcodes-slices.tz.out | 2 +- ...ests_python-contracts_014-opcodes-source.tz.out | 2 +- ...python-contracts_014-opcodes-split_bytes.tz.out | 2 +- ...ython-contracts_014-opcodes-split_string.tz.out | 2 +- ...contracts_014-opcodes-store_bls12_381_fr.tz.out | 2 +- ...contracts_014-opcodes-store_bls12_381_g1.tz.out | 2 +- ...contracts_014-opcodes-store_bls12_381_g2.tz.out | 2 +- ...python-contracts_014-opcodes-store_input.tz.out | 2 +- ...s_python-contracts_014-opcodes-store_now.tz.out | 2 +- ...ests_python-contracts_014-opcodes-str_id.tz.out | 2 +- ...ontracts_014-opcodes-sub_timestamp_delta.tz.out | 2 +- ...ests_python-contracts_014-opcodes-subset.tz.out | 2 +- ...python-contracts_014-opcodes-tez_add_sub.tz.out | 2 +- ..._python-contracts_014-opcodes-ticket_bad.tz.out | 2 +- ...n-contracts_014-opcodes-ticket_big_store.tz.out | 2 +- ...python-contracts_014-opcodes-ticket_join.tz.out | 2 +- ...python-contracts_014-opcodes-ticket_read.tz.out | 2 +- ...ython-contracts_014-opcodes-ticket_split.tz.out | 2 +- ...hon-contracts_014-opcodes-ticket_store-2.tz.out | 2 +- ...ython-contracts_014-opcodes-ticket_store.tz.out | 2 +- ..._python-contracts_014-opcodes-ticketer-2.tz.out | 2 +- ...ts_python-contracts_014-opcodes-ticketer.tz.out | 2 +- ...on-contracts_014-opcodes-transfer_amount.tz.out | 2 +- ...on-contracts_014-opcodes-transfer_tokens.tz.out | 2 +- ...ests_python-contracts_014-opcodes-uncomb.tz.out | 2 +- ...ests_python-contracts_014-opcodes-unpair.tz.out | 2 +- ...014-opcodes-unpair_field_annotation_mismatc.out | 2 +- ...hon-contracts_014-opcodes-update_big_map.tz.out | 2 +- ...s_python-contracts_014-opcodes-utxo_read.tz.out | 2 +- ...tests_python-contracts_014-opcodes-utxor.tz.out | 2 +- ...ts_python-contracts_014-opcodes-view_fib.tz.out | 2 +- ...tracts_014-opcodes-view_mutual_recursion.tz.out | 2 +- ...python-contracts_014-opcodes-view_op_add.tz.out | 2 +- ...n-contracts_014-opcodes-view_op_constant.tz.out | 2 +- ..._python-contracts_014-opcodes-view_op_id.tz.out | 2 +- ...cts_014-opcodes-view_op_nonexistent_addr.tz.out | 2 +- ...cts_014-opcodes-view_op_nonexistent_func.tz.out | 2 +- ...s_014-opcodes-view_op_test_step_contants.tz.out | 2 +- ...014-opcodes-view_op_toplevel_inconsistent_i.out | 2 +- ...014-opcodes-view_op_toplevel_inconsistent_o.out | 2 +- ...ts_python-contracts_014-opcodes-view_rec.tz.out | 2 +- ...-contracts_014-opcodes-view_toplevel_lib.tz.out | 2 +- ...ython-contracts_014-opcodes-voting_power.tz.out | 2 +- ...c tests_python-contracts_014-opcodes-xor.tz.out | 2 +- 311 files changed, 313 insertions(+), 327 deletions(-) delete mode 100644 tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-accounts.tz.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-add1.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-add1_list.tz.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-after_strategy.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-always.tz.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-append.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-at_least.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-auction.tz.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-bad_lockup.tz.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-big_map_union.tz.out (88%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cadr_annotation.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-concat.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-conditionals.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cons_twice.tz.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cps_fact.tz.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-create_add1_lists.tz.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-data_publisher.tz.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-dispatch.tz.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-empty.tz.out (58%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-fail_amount.tz.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-faucet.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-forward.tz.out (99%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-id.tz.out (59%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-infinite_loop.tz.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-insertion_sort.tz.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-int_publisher.tz.out (95%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-king_of_tez.tz.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-list_of_transactions.tz.out (90%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-queue.tz.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reduce_map.tz.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reentrancy.tz.out (90%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reservoir.tz.out (95%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-scrutable_reservoir.tz.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-spawn_identities.tz.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-big_map_entrypoints.tz.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-delegatable_target.tz.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-manager.tz.out (87%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-no_default_target.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-no_entrypoint_target.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-rooted_target.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-simple_entrypoints.tz.out (59%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpeq.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpge.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpgt.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmple.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmplt.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpneq.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_eq.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_ge.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_gt.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_le.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_lt.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_neq.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-big_map_get_add.tz.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-big_map_mem.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-build_list.tz.out (88%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-carn_and_cdrn.tz.out (87%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-compare.tz.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-compare_bytes.tz.out (94%) create mode 100644 tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-fail.tz.out rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-guestbook.tz.out (86%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-macro_annotations.tz.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-map_caddaadr.tz.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-max_in_list.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-min.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-pair_macro.tz.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-set_caddaadr.tz.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-take_my_money.tz.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-unpair_macro.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-add_clear_tickets.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-authentication.tz.out (91%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_entrypoints.tz.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_magic.tz.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_read.tz.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_store.tz.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_write.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-create_contract.tz.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-create_contract_simple.t.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-default_account.tz.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_appender.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_caller.t.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_storer.t.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-fa12_reference.tz.out (99%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-generic_multisig.tz.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-groth16.tz.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-hardlimit.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-legacy_multisig.tz.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-lockup.tz.out (90%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-lqt_fa12.mligo.tz.out (99%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-multiple_en2.tz.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-multiple_entrypoints_cou.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-originate_contract.tz.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-parameterized_multisig.t.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-replay.tz.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-reveal_signed_preimage.t.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_builder_fungible..out (91%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_builder_non_fungi.out (91%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_wallet_fungible.t.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_wallet_non_fungib.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-vote_for_delegate.tz.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-weather_insurance.tz.out (95%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-xcat.tz.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-xcat_dapp.tz.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bad_annot_contract.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bug_262.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bug_843.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-pairk_annot.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-abs.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add.tz.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_fr.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_g1.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_g2.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_delta_timestamp.tz.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_timestamp_delta.tz.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-address.tz.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_fib_view.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_nonexistent_view.t.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_view.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and.tz.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and_binary.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and_logical_1.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance.tz.out (61%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_fib_view.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_nonexistent_view..out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_view.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_mem_nat.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_mem_string.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_to_self.tz.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_push_bytes_not_pad.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_push_nat.tz.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_to_int.tz.out (60%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_to_mutez.tz.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_z_int.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_z_nat.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_z_fr_int.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_z_fr_nat.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bytes.tz.out (58%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-car.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-cdr.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-chain_id.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-chain_id_store.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-check_signature.tz.out (88%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-get.tz.out (89%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-literals.tz.out (71%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-set-2.tz.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-set.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb.tz.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare.tz.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare_big_type.tz.out (99%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare_big_type2.tz.out (99%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comparisons.tz.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_hello.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_hello_bytes.tz.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_list.tz.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-cons.tz.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-contains_all.tz.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-contract.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_rootname.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_rootname_alt.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_with_view.tz.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-diff_timestamps.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dig_eq.tz.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dign.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dip.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dipn.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dropn.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dugn.tz.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dup-n.tz.out (88%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ediv.tz.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ediv_mutez.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-emit.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-empty_map.tz.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-exec_concat.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-first.tz.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_and_update_big_map.tz.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_and_update_map.tz.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_big_map_value.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_map_value.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_consistency_checker.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_key.tz.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_string.tz.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-if.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-if_some.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-int.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-iter_fail.tz.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-keccak.tz.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-left_right.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-level.tz.out (61%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_concat.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_concat_bytes.tz.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_id.tz.out (61%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_id_map.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_iter.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_map_block.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_size.tz.out (61%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_failwith.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_left.tz.out (88%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_left_failwith.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_car.tz.out (75%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_id.tz.out (61%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_iter.tz.out (88%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_map.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_map_sideeffect.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_mem_nat.tz.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_mem_string.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_size.tz.out (62%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-merge_comparable_pairs.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul.tz.out (91%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_fr.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_g1.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_g2.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_overflow.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-munch.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mutez_to_bls12_381_fr.tz.out (75%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg.tz.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_fr.tz.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_g1.tz.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_g2.tz.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-none.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-noop.tz.out (58%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-not.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-not_binary.tz.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-or.tz.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-or_binary.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-originate_big_map.tz.out (61%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack.tz.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack_rev.tz.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack_rev_cty.tz.out (99%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pair_id.tz.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pairing_check.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pexec.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pexec_2.tz.out (87%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-proxy.tz.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ret_int.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-reverse.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-reverse_loop.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sapling_empty_state.tz.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_fib_view.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_nonexistent_.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_view.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_fib_view.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_nonexistent_view.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_view.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_with_default_entrypoint.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_with_entrypoint.tz.out (91%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender.tz.out (62%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_fib_view.tz.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_nonexistent_view.t.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_view.tz.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_car.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_cdr.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_delegate.tz.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_id.tz.out (61%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_iter.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_member.tz.out (86%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_size.tz.out (61%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sets.tz.out (91%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sha3.tz.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-shifts.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slice.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slice_bytes.tz.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slices.tz.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-source.tz.out (62%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-split_bytes.tz.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-split_string.tz.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_fr.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_g1.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_g2.tz.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_input.tz.out (58%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_now.tz.out (62%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-str_id.tz.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sub_timestamp_delta.tz.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-subset.tz.out (90%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-tez_add_sub.tz.out (86%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_bad.tz.out (60%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_big_store.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_join.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_read.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_split.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_store-2.tz.out (63%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_store.tz.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticketer-2.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticketer.tz.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-transfer_amount.tz.out (60%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-transfer_tokens.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-uncomb.tz.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-unpair.tz.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-unpair_field_annotation_mismatc.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-update_big_map.tz.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-utxo_read.tz.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-utxor.tz.out (95%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_fib.tz.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_mutual_recursion.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_add.tz.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_constant.tz.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_id.tz.out (71%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_nonexistent_addr.tz.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_nonexistent_func.tz.out (71%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_test_step_contants.tz.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_toplevel_inconsistent_i.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_toplevel_inconsistent_o.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_rec.tz.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_toplevel_lib.tz.out (95%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-voting_power.tz.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out => tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-xor.tz.out (77%) diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out b/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out deleted file mode 100644 index efe5e0feab2e..000000000000 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--fail.tz].out +++ /dev/null @@ -1,5 +0,0 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/fail.tz] - -Well typed -Gas remaining: 1039998.449 units remaining -{ parameter unit ; storage unit ; code { FAIL } } diff --git a/tests_python/tests_014/test_contract.py b/tests_python/tests_014/test_contract.py index adb8f207f43a..03ecffb71768 100644 --- a/tests_python/tests_014/test_contract.py +++ b/tests_python/tests_014/test_contract.py @@ -377,20 +377,6 @@ class TestExecutionOrdering: assert client.get_storage(storer) == '"{}"'.format(expected) -@pytest.mark.contract -@pytest.mark.regression -class TestTypecheck: - """Regression testing of Michelson typechecking""" - - @pytest.mark.parametrize("contract", all_contracts()) - def test_typecheck(self, client_regtest: Client, contract): - client = client_regtest - assert contract.endswith( - '.tz' - ), "test contract should have .tz extension" - client.typecheck(os.path.join(CONTRACT_PATH, contract), details=True) - - @pytest.mark.slow @pytest.mark.contract class TestContracts: diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-accounts.tz.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-accounts.tz.out index 5d6653ccfa8d..0a0d5d8e65af 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-accounts.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/accounts.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/accounts.tz --details Well typed Gas remaining: 1039932.585 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-add1.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-add1.tz.out index 5eb96633bb1f..e2b384baa04b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-add1.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/add1.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/add1.tz --details Well typed Gas remaining: 1039996.774 units remaining { parameter int ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-add1_list.tz.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-add1_list.tz.out index f8241557db53..dab4478ae079 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-add1_list.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/add1_list.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/add1_list.tz --details Well typed Gas remaining: 1039995.973 units remaining { parameter (list int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-after_strategy.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-after_strategy.tz.out index f2348d12b081..097ffd89c275 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-after_strategy.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/after_strategy.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/after_strategy.tz --details Well typed Gas remaining: 1039991.203 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-always.tz.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-always.tz.out index 5505e69ef505..486ba2bd8273 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-always.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/always.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/always.tz --details Well typed Gas remaining: 1039995.941 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-append.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-append.tz.out index fc57d58ad121..35db35242fa4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-append.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/append.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/append.tz --details Well typed Gas remaining: 1039993.459 units remaining { parameter (pair (list int) (list int)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-at_least.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-at_least.tz.out index a6d5c285cc70..a6a3230e3bb4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-at_least.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/at_least.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/at_least.tz --details Well typed Gas remaining: 1039993.870 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-auction.tz.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-auction.tz.out index 101e76133828..61975c9a1e5a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-auction.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/auction.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/auction.tz --details Well typed Gas remaining: 1039974.418 units remaining { parameter key_hash ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-bad_lockup.tz.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-bad_lockup.tz.out index 723828d2e71c..6bde565d4fdf 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-bad_lockup.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/bad_lockup.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/bad_lockup.tz --details Well typed Gas remaining: 1039974.993 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-big_map_union.tz.out similarity index 88% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-big_map_union.tz.out index 34d7e06c567e..98fd05c2eeeb 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-big_map_union.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/big_map_union.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/big_map_union.tz --details Well typed Gas remaining: 1039987.459 units remaining { parameter (list (pair string int)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cadr_annotation.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cadr_annotation.tz.out index c5f362172af2..d78eb74d09ac 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cadr_annotation.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/cadr_annotation.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/cadr_annotation.tz --details Well typed Gas remaining: 1039995.385 units remaining { parameter (pair (pair %p1 unit (string %no_name)) bool) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-concat.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-concat.tz.out index 885b4d3b9726..955cdd1dd62a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-concat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/concat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/concat.tz --details Well typed Gas remaining: 1039993.578 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-conditionals.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-conditionals.tz.out index 065455433bf5..eed3ccd1c48e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-conditionals.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/conditionals.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/conditionals.tz --details Well typed Gas remaining: 1039990.576 units remaining { parameter (or string (option int)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cons_twice.tz.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cons_twice.tz.out index a1a850602145..9a62ff93df61 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cons_twice.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/cons_twice.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/cons_twice.tz --details Well typed Gas remaining: 1039993.758 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cps_fact.tz.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cps_fact.tz.out index ab3e780cfa10..83dab1fde170 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-cps_fact.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/cps_fact.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/cps_fact.tz --details Well typed Gas remaining: 1039976.109 units remaining { storage nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-create_add1_lists.tz.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-create_add1_lists.tz.out index 33ceb513733a..4651bc5e64eb 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-create_add1_lists.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/create_add1_lists.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/create_add1_lists.tz --details Well typed Gas remaining: 1039989.990 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-data_publisher.tz.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-data_publisher.tz.out index 01b83b3e63e3..21f17e98139b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-data_publisher.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/data_publisher.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/data_publisher.tz --details Well typed Gas remaining: 1039975.804 units remaining { parameter (pair signature (pair string nat)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-dispatch.tz.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-dispatch.tz.out index 72e7f2598fc8..7602d2c34baa 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-dispatch.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/dispatch.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/dispatch.tz --details Well typed Gas remaining: 1039983.006 units remaining { parameter (or string (pair string (lambda unit string))) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-empty.tz.out similarity index 58% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-empty.tz.out index f52875439e25..3b4e68737f9f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-empty.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/empty.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/empty.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-fail_amount.tz.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-fail_amount.tz.out index 79245c179a0e..ca6f34494e7d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-fail_amount.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/fail_amount.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/fail_amount.tz --details Well typed Gas remaining: 1039993.067 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-faucet.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-faucet.tz.out index 535d69d974ce..7c02a6c4bf34 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-faucet.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/faucet.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/faucet.tz --details Well typed Gas remaining: 1039988.070 units remaining { parameter key_hash ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-forward.tz.out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-forward.tz.out index d360a91a060b..d1891440e0bc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-forward.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/forward.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/forward.tz --details Well typed Gas remaining: 1039670.292 units remaining { parameter (or string nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-id.tz.out similarity index 59% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-id.tz.out index 828849ccfa22..e536f15cc495 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-id.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_input.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/id.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-infinite_loop.tz.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-infinite_loop.tz.out index 3c90c98f7c09..55711ee1221e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-infinite_loop.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/infinite_loop.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/infinite_loop.tz --details Well typed Gas remaining: 1039995.465 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-insertion_sort.tz.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-insertion_sort.tz.out index 3ee23fadc69a..e85bf68280a8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-insertion_sort.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/insertion_sort.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/insertion_sort.tz --details Well typed Gas remaining: 1039976.745 units remaining { parameter (list int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-int_publisher.tz.out similarity index 95% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-int_publisher.tz.out index 20657f5ea509..c93a85a354b5 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-int_publisher.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/int_publisher.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/int_publisher.tz --details Well typed Gas remaining: 1039970.043 units remaining { parameter (option (pair signature int)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-king_of_tez.tz.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-king_of_tez.tz.out index 94d9ec2037f5..6dbdcdeee8f0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-king_of_tez.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/king_of_tez.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/king_of_tez.tz --details Well typed Gas remaining: 1039974.327 units remaining { parameter key_hash ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-list_of_transactions.tz.out similarity index 90% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-list_of_transactions.tz.out index 6d61a32bc27b..50470506dda3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-list_of_transactions.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/list_of_transactions.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/list_of_transactions.tz --details Well typed Gas remaining: 1039985.482 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-queue.tz.out similarity index 96% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-queue.tz.out index 56b41d2b6486..a932d375660d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-queue.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/queue.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/queue.tz --details Well typed Gas remaining: 1039958.584 units remaining { parameter (option string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reduce_map.tz.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reduce_map.tz.out index 07648c6f120c..c1a47d89372c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reduce_map.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/reduce_map.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/reduce_map.tz --details Well typed Gas remaining: 1039978.486 units remaining { parameter (pair (lambda int int) (list int)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reentrancy.tz.out similarity index 90% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reentrancy.tz.out index 6044e1944298..7ec16afb022d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reentrancy.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/reentrancy.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/reentrancy.tz --details Well typed Gas remaining: 1039983.352 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reservoir.tz.out similarity index 95% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reservoir.tz.out index a1674cfbf019..426d61013b54 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-reservoir.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/reservoir.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/reservoir.tz --details Well typed Gas remaining: 1039969.237 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-scrutable_reservoir.tz.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-scrutable_reservoir.tz.out index 5f3aaed3a3d0..fd9df81039b4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-scrutable_reservoir.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/scrutable_reservoir.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/scrutable_reservoir.tz --details Well typed Gas remaining: 1039889.171 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-spawn_identities.tz.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-spawn_identities.tz.out index 472319880dc4..5acf51c0232a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-attic-spawn_identities.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/spawn_identities.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/attic/spawn_identities.tz --details Well typed Gas remaining: 1039976.440 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-big_map_entrypoints.tz.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-big_map_entrypoints.tz.out index e95605e9fade..b4774cb44bab 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-big_map_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_entrypoints.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/entrypoints/big_map_entrypoints.tz --details Well typed Gas remaining: 1039953.156 units remaining { storage (pair (big_map string nat) (big_map string nat)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-delegatable_target.tz.out similarity index 96% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-delegatable_target.tz.out index 816282f8a6d1..a1f218f4002b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--delegatable_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-delegatable_target.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[entrypoints/delegatable_target.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/entrypoints/delegatable_target.tz --details Well typed Gas remaining: 1039960.927 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-manager.tz.out similarity index 87% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-manager.tz.out index 8166a329c640..48e9023284fa 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--manager.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-manager.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[entrypoints/manager.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/entrypoints/manager.tz --details Well typed Gas remaining: 1039984.397 units remaining { parameter (or (lambda %do unit (list operation)) (unit %default)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-no_default_target.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-no_default_target.tz.out index 8e7356394fa9..a25aa5211afb 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_default_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-no_default_target.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[entrypoints/no_default_target.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/entrypoints/no_default_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-no_entrypoint_target.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-no_entrypoint_target.tz.out index c0ca6bbcaed5..abb4b04f2221 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--no_entrypoint_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-no_entrypoint_target.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[entrypoints/no_entrypoint_target.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/entrypoints/no_entrypoint_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-rooted_target.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-rooted_target.tz.out index 3aaaa0849735..a82cf84b2b39 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--rooted_target.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-rooted_target.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[entrypoints/rooted_target.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/entrypoints/rooted_target.tz --details Well typed Gas remaining: 1039990.140 units remaining { storage (pair string nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-simple_entrypoints.tz.out similarity index 59% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-simple_entrypoints.tz.out index 2ea7cf44e4d0..055a9c047218 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--simple_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-entrypoints-simple_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[entrypoints/simple_entrypoints.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/entrypoints/simple_entrypoints.tz --details Well typed Gas remaining: 1039997.574 units remaining { parameter (or (unit %A) (or (string %B) (nat %C))) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert.tz.out index 07d3609d2e90..8aef0abf75a3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert.tz --details Well typed Gas remaining: 1039995.213 units remaining { parameter bool ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpeq.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpeq.tz.out index b9287701b93a..c7e0bbc82221 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpeq.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpeq.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_cmpeq.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpge.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpge.tz.out index 0895b96af091..cd9f0a752af0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpge.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpge.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_cmpge.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpgt.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpgt.tz.out index 7ff4d5a7acba..4fa958066104 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpgt.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpgt.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_cmpgt.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmple.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmple.tz.out index a472f65e2602..7470c49be3c0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmple.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmple.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_cmple.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmplt.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmplt.tz.out index 428ba61351ef..b4177b1c6c0c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmplt.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmplt.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_cmplt.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpneq.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpneq.tz.out index ee169f9eaf98..6e767891ded1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_cmpneq.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpneq.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_cmpneq.tz --details Well typed Gas remaining: 1039991.596 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_eq.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_eq.tz.out index 97331197e8c5..1a8feb405ade 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_eq.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_eq.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_eq.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_ge.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_ge.tz.out index 1997127b4f4f..5deeff732de0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_ge.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_ge.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_ge.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_gt.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_gt.tz.out index 2ad1f1521813..a0feb27ac248 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_gt.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_gt.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_gt.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_le.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_le.tz.out index 006bfe71ef7d..080580382012 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_le.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_le.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_le.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_lt.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_lt.tz.out index 23f5edecdd20..10018fccb20d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_lt.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_lt.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_lt.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_neq.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_neq.tz.out index 66a4663e0b2b..1a1b2d62d9c2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-assert_neq.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/assert_neq.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/assert_neq.tz --details Well typed Gas remaining: 1039991.843 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-big_map_get_add.tz.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-big_map_get_add.tz.out index 4bc60b12d3f4..d3ba32bca742 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-big_map_get_add.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/big_map_get_add.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/big_map_get_add.tz --details Well typed Gas remaining: 1039971.186 units remaining { parameter (pair (pair %set_pair int (option int)) (pair %check_pair int (option int))) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-big_map_mem.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-big_map_mem.tz.out index 06912951feaa..9a4dcffbe40b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-big_map_mem.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/big_map_mem.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/big_map_mem.tz --details Well typed Gas remaining: 1039984.191 units remaining { parameter (pair int bool) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-build_list.tz.out similarity index 88% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-build_list.tz.out index a09d8940a904..947fa20e70d8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-build_list.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/build_list.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/build_list.tz --details Well typed Gas remaining: 1039985.111 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-carn_and_cdrn.tz.out similarity index 87% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-carn_and_cdrn.tz.out index 5d50a9c47878..11bebf4dfbf2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-carn_and_cdrn.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/carn_and_cdrn.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/carn_and_cdrn.tz --details Well typed Gas remaining: 1039965.224 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-compare.tz.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-compare.tz.out index 9cf67ecea980..0ec551498ca4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-compare.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/compare.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/compare.tz --details Well typed Gas remaining: 1039971.322 units remaining { parameter (pair mutez mutez) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-compare_bytes.tz.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-compare_bytes.tz.out index 8556c369f012..ce9fd35aca8c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-compare_bytes.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/compare_bytes.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/compare_bytes.tz --details Well typed Gas remaining: 1039971.322 units remaining { parameter (pair bytes bytes) ; diff --git a/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-fail.tz.out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-fail.tz.out new file mode 100644 index 000000000000..81a9c8b413d2 --- /dev/null +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-fail.tz.out @@ -0,0 +1,5 @@ + +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/fail.tz --details +Well typed +Gas remaining: 1039998.449 units remaining +{ parameter unit ; storage unit ; code { FAIL } } diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-guestbook.tz.out similarity index 86% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-guestbook.tz.out index 8f0e90e4e6f7..5f2d79575f86 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-guestbook.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/guestbook.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/guestbook.tz --details Well typed Gas remaining: 1039988.143 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-macro_annotations.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-macro_annotations.tz.out index a0d85aa2bac1..c28428d1d960 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-macro_annotations.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/macro_annotations.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/macro_annotations.tz --details Well typed Gas remaining: 1039993.362 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-map_caddaadr.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-map_caddaadr.tz.out index 467c82c1fb21..63aac043ceaf 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-map_caddaadr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/map_caddaadr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/map_caddaadr.tz --details Well typed Gas remaining: 1039966.766 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-max_in_list.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-max_in_list.tz.out index f839d77de31b..5f16ff98d9bd 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-max_in_list.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/max_in_list.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/max_in_list.tz --details Well typed Gas remaining: 1039987.861 units remaining { parameter (list int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-min.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-min.tz.out index bc15966a4836..15e0dc483713 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-min.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/min.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/min.tz --details Well typed Gas remaining: 1039991.951 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-pair_macro.tz.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-pair_macro.tz.out index 621d3bae380d..c24ceae130b4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-pair_macro.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/pair_macro.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/pair_macro.tz --details Well typed Gas remaining: 1039988.858 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-set_caddaadr.tz.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-set_caddaadr.tz.out index 94efb003e1c3..f722aaa1f117 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-set_caddaadr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/set_caddaadr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/set_caddaadr.tz --details Well typed Gas remaining: 1039970.670 units remaining { parameter mutez ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-take_my_money.tz.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-take_my_money.tz.out index 71101b5f892a..beac43fc04b1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-take_my_money.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/take_my_money.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/take_my_money.tz --details Well typed Gas remaining: 1039993.750 units remaining { parameter key_hash ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-unpair_macro.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-unpair_macro.tz.out index 2f8ae990834a..a63a5fa9409e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-macros-unpair_macro.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[macros/unpair_macro.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/macros/unpair_macro.tz --details Well typed Gas remaining: 1039977.130 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-add_clear_tickets.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-add_clear_tickets.tz.out index 5ae759547443..9cd5df8da2bc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--add_clear_tickets.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-add_clear_tickets.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/add_clear_tickets.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/add_clear_tickets.tz --details Well typed Gas remaining: 1039990.715 units remaining { parameter (or (pair %add nat string) (unit %clear)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-authentication.tz.out similarity index 91% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-authentication.tz.out index a9849d4e329e..93e1cf048a23 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-authentication.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/authentication.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/authentication.tz --details Well typed Gas remaining: 1039979.836 units remaining { parameter (pair (lambda unit (list operation)) signature) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_entrypoints.tz.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_entrypoints.tz.out index fb0dc9e722d7..a4bd523e7b8d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[entrypoints--big_map_entrypoints.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_entrypoints.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[entrypoints/big_map_entrypoints.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/big_map_entrypoints.tz --details Well typed Gas remaining: 1039953.156 units remaining { storage (pair (big_map string nat) (big_map string nat)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_magic.tz.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_magic.tz.out index 4030d7a9ec45..669e53297369 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_magic.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_magic.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/big_map_magic.tz --details Well typed Gas remaining: 1039954.710 units remaining { storage (or (pair (big_map string string) (big_map string string)) unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_read.tz.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_read.tz.out index 191aa5e4d90b..391a0d3f8847 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_read.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_read.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/big_map_read.tz --details Well typed Gas remaining: 1039994.234 units remaining { storage nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_store.tz.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_store.tz.out index c9c4ba68456f..17aab6f71b81 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_store.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_store.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/big_map_store.tz --details Well typed Gas remaining: 1039996.856 units remaining { storage (big_map nat nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_write.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_write.tz.out index f729df61e8d4..fba2915cd475 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-big_map_write.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_write.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/big_map_write.tz --details Well typed Gas remaining: 1039994.982 units remaining { storage unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-create_contract.tz.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-create_contract.tz.out index aa352ff6d444..69b47c5d2386 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-create_contract.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/create_contract.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/create_contract.tz --details Well typed Gas remaining: 1039973.277 units remaining { parameter (option address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-create_contract_simple.t.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-create_contract_simple.t.out index 690cd9891adf..bcddc0ad45ac 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-create_contract_simple.t.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/create_contract_simple.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/create_contract_simple.tz --details Well typed Gas remaining: 1039991.809 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-default_account.tz.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-default_account.tz.out index 2eee0f6679c4..f3d780f41268 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-default_account.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/default_account.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/default_account.tz --details Well typed Gas remaining: 1039993.750 units remaining { parameter key_hash ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_appender.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_appender.out index 894e29278b1e..cf0a1c68e9be 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_appender.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_appender.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/execution_order_appender.tz --details Well typed Gas remaining: 1039990.644 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_caller.t.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_caller.t.out index 48dd44518eaa..40355d276daf 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_caller.t.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_caller.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/execution_order_caller.tz --details Well typed Gas remaining: 1039992.571 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_storer.t.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_storer.t.out index 9b4656acf14b..631d14131c81 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-execution_order_storer.t.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_storer.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/execution_order_storer.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-fa12_reference.tz.out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-fa12_reference.tz.out index 570fd82d95b6..3dd19a9a0f0b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-fa12_reference.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/fa12_reference.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/fa12_reference.tz --details Well typed Gas remaining: 1039349.178 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-generic_multisig.tz.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-generic_multisig.tz.out index 41620d0147d3..b3599e074717 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-generic_multisig.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/generic_multisig.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/generic_multisig.tz --details Well typed Gas remaining: 1039939.911 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-groth16.tz.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-groth16.tz.out index 54b903dc48df..413d8d52ca67 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-groth16.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/groth16.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/groth16.tz --details Well typed Gas remaining: 1039536.287 units remaining { storage unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-hardlimit.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-hardlimit.tz.out index 18eaae1c4968..8899eca5865e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-hardlimit.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/hardlimit.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/hardlimit.tz --details Well typed Gas remaining: 1039992.503 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-legacy_multisig.tz.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-legacy_multisig.tz.out index 98ae1ed2402c..294a0c259f8f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-legacy_multisig.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/legacy_multisig.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/legacy_multisig.tz --details Well typed Gas remaining: 1039943.391 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-lockup.tz.out similarity index 90% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-lockup.tz.out index f8ce15562784..c3294ccd5d1f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-lockup.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/lockup.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/lockup.tz --details Well typed Gas remaining: 1039983.115 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-lqt_fa12.mligo.tz.out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-lqt_fa12.mligo.tz.out index fd3a84dcb1ca..3f2232d59355 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-lqt_fa12.mligo.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/lqt_fa12.mligo.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/lqt_fa12.mligo.tz --details Well typed Gas remaining: 1039738.642 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-multiple_en2.tz.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-multiple_en2.tz.out index 567c17b8e2eb..2cc2b6f8e569 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-multiple_en2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/multiple_en2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/multiple_en2.tz --details Well typed Gas remaining: 1039928.052 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-multiple_entrypoints_cou.out similarity index 96% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-multiple_entrypoints_cou.out index 28209ca0125c..f04d8aa45aa7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-multiple_entrypoints_cou.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/multiple_entrypoints_counter.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/multiple_entrypoints_counter.tz --details Well typed Gas remaining: 1039930.762 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-originate_contract.tz.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-originate_contract.tz.out index b1f949513e28..76c9b0e5aa53 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-originate_contract.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/originate_contract.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/originate_contract.tz --details Well typed Gas remaining: 1039991.040 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-parameterized_multisig.t.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-parameterized_multisig.t.out index ca465b96bc4a..c05fbeb1be50 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-parameterized_multisig.t.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/parameterized_multisig.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/parameterized_multisig.tz --details Well typed Gas remaining: 1039940.583 units remaining { storage (pair bool (pair (map nat (pair bool bool)) (pair key key))) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-replay.tz.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-replay.tz.out index 5b7fb609fc79..24684f173da6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-replay.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/replay.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/replay.tz --details Well typed Gas remaining: 1039990.860 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-reveal_signed_preimage.t.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-reveal_signed_preimage.t.out index b0899b675cb8..5f3d1bf8a5af 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-reveal_signed_preimage.t.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/reveal_signed_preimage.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/reveal_signed_preimage.tz --details Well typed Gas remaining: 1039978.896 units remaining { parameter (pair bytes signature) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_builder_fungible..out similarity index 91% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_builder_fungible..out index bd03faa37855..799a9767a921 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_builder_fungible..out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_builder_fungible.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/ticket_builder_fungible.tz --details Well typed Gas remaining: 1039976.245 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_builder_non_fungi.out similarity index 91% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_builder_non_fungi.out index a7295586ab1b..4af46e4016d7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_builder_non_fungi.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_builder_non_fungible.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/ticket_builder_non_fungible.tz --details Well typed Gas remaining: 1039973.758 units remaining { parameter (or (ticket %burn nat) (contract %mint_destination (ticket nat))) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_wallet_fungible.t.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_wallet_fungible.t.out index 420d580eac5c..e181693cf580 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_wallet_fungible.t.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_wallet_fungible.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/ticket_wallet_fungible.tz --details Well typed Gas remaining: 1039943.146 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_wallet_non_fungib.out similarity index 96% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_wallet_non_fungib.out index 6468a67a7735..cea3a9d56815 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-ticket_wallet_non_fungib.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_wallet_non_fungible.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/ticket_wallet_non_fungible.tz --details Well typed Gas remaining: 1039959.702 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-vote_for_delegate.tz.out similarity index 96% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-vote_for_delegate.tz.out index b629c548a457..607eb180dd39 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-vote_for_delegate.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/vote_for_delegate.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/vote_for_delegate.tz --details Well typed Gas remaining: 1039945.231 units remaining { parameter (option key_hash) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-weather_insurance.tz.out similarity index 95% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-weather_insurance.tz.out index d8b1c7c669a8..2bb8c62aa31e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-weather_insurance.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/weather_insurance.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/weather_insurance.tz --details Well typed Gas remaining: 1039963.680 units remaining { parameter (pair (signature %signed_weather_data) (nat :rain %actual_level)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-xcat.tz.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-xcat.tz.out index 4ab338293c2e..0e0314c45760 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-xcat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/xcat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/xcat.tz --details Well typed Gas remaining: 1039967.905 units remaining { parameter bytes ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-xcat_dapp.tz.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-xcat_dapp.tz.out index c00624f44ec7..be80fdf3350a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-mini_scenarios-xcat_dapp.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/xcat_dapp.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/mini_scenarios/xcat_dapp.tz --details Well typed Gas remaining: 1039922.932 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bad_annot_contract.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bad_annot_contract.tz.out index 60237fed1dd0..12319aca9dd9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bad_annot_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bad_annot_contract.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[non_regression/bad_annot_contract.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/non_regression/bad_annot_contract.tz --details Well typed Gas remaining: 1039996.681 units remaining { parameter bytes ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bug_262.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bug_262.tz.out index b0a25586d475..c46b52477c9a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bug_262.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[non_regression/bug_262.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/non_regression/bug_262.tz --details Well typed Gas remaining: 1039995.909 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bug_843.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bug_843.tz.out index 24bc2616e2cb..5b8844dc1527 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-bug_843.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[non_regression/bug_843.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/non_regression/bug_843.tz --details Well typed Gas remaining: 1039993.849 units remaining { parameter never ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-pairk_annot.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-pairk_annot.tz.out index 791bbaff4262..892c220b72b6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-non_regression-pairk_annot.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[non_regression/pairk_annot.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/non_regression/pairk_annot.tz --details Well typed Gas remaining: 1039993.678 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-abs.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-abs.tz.out index 52290e1e36ad..b158d9528821 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-abs.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/abs.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/abs.tz --details Well typed Gas remaining: 1039992.714 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add.tz.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add.tz.out index 19051b816ca6..db4081378bdf 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/add.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/add.tz --details Well typed Gas remaining: 1039947.571 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_fr.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_fr.tz.out index eff6178e332b..1dcab371b605 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_fr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/add_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_fr bls12_381_fr) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_g1.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_g1.tz.out index c925d28cda19..d4c4ebfba36e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_g1.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/add_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g1 bls12_381_g1) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_g2.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_g2.tz.out index 64a26963c4b7..cb60d883cbb6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_g2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/add_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g2 bls12_381_g2) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_delta_timestamp.tz.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_delta_timestamp.tz.out index 2f543a243e2a..dbb9d6c44545 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_delta_timestamp.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_delta_timestamp.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/add_delta_timestamp.tz --details Well typed Gas remaining: 1039994.398 units remaining { parameter (pair int timestamp) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_timestamp_delta.tz.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_timestamp_delta.tz.out index 0ae337968847..326345ff1550 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-add_timestamp_delta.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_timestamp_delta.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/add_timestamp_delta.tz --details Well typed Gas remaining: 1039994.398 units remaining { parameter (pair timestamp int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-address.tz.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-address.tz.out index 585a6b3cbfd0..7bace30c787d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-address.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/address.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/address.tz --details Well typed Gas remaining: 1039996.754 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_fib_view.tz.out index 9d27c26da9c4..1543c29df399 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_fib_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/amount_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_nonexistent_view.t.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_nonexistent_view.t.out index bca75e59214b..c8896c621b71 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_nonexistent_view.t.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_nonexistent_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/amount_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.775 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_view.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_view.tz.out index e9bf821bd5ae..3e3449334b9e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-amount_after_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/amount_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and.tz.out index 6f8fa5b7afb5..d676712fa2c6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/and.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/and.tz --details Well typed Gas remaining: 1039995.193 units remaining { parameter (pair :param (bool %first) (bool %second)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and_binary.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and_binary.tz.out index a0061ef4693e..e818052adaf3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and_binary.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_binary.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/and_binary.tz --details Well typed Gas remaining: 1039972.796 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and_logical_1.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and_logical_1.tz.out index dfd4572fa09c..9f1a7de22551 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-and_logical_1.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_logical_1.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/and_logical_1.tz --details Well typed Gas remaining: 1039996.814 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance.tz.out similarity index 61% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance.tz.out index 989ebc0b4764..e32568614369 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/balance.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_fib_view.tz.out index 3de4c373445a..2a628be82da9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_fib_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/balance_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_nonexistent_view..out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_nonexistent_view..out index 5654b831185e..5218d9a4a5c6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_nonexistent_view..out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_nonexistent_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/balance_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.775 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_view.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_view.tz.out index 60ab15083bc4..4696e657d5a9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-balance_after_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/balance_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_mem_nat.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_mem_nat.tz.out index 6059705c6644..c729ffe89507 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_mem_nat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_mem_nat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/big_map_mem_nat.tz --details Well typed Gas remaining: 1039993.494 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_mem_string.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_mem_string.tz.out index 81d23df826af..4f0cd1aa54ba 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_mem_string.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_mem_string.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/big_map_mem_string.tz --details Well typed Gas remaining: 1039993.494 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_to_self.tz.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_to_self.tz.out index fe3bef22d145..d09d425bb77f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-big_map_to_self.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_to_self.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/big_map_to_self.tz --details Well typed Gas remaining: 1039987.387 units remaining { parameter (or (pair %have_fun (big_map string nat) unit) (unit %default)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_push_bytes_not_pad.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_push_bytes_not_pad.out index fbcc63e66984..1b6bd4e9c650 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_push_bytes_not_pad.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_push_bytes_not_padded.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bls12_381_fr_push_bytes_not_padded.tz --details Well typed Gas remaining: 1039996.436 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_push_nat.tz.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_push_nat.tz.out index 8e266adb2ce5..fe159d5f1b98 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_push_nat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_push_nat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bls12_381_fr_push_nat.tz --details Well typed Gas remaining: 1039996.436 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_to_int.tz.out similarity index 60% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_to_int.tz.out index 67b9136a54f0..4493a17105e5 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_to_int.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_to_int.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bls12_381_fr_to_int.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_to_mutez.tz.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_to_mutez.tz.out index f66356e1607c..5d8c23daf7da 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_to_mutez.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_to_mutez.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bls12_381_fr_to_mutez.tz --details Well typed Gas remaining: 1039993.594 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_z_int.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_z_int.tz.out index 5ec64bf0beb2..f809a12e13fc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_z_int.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_z_int.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter int ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_z_nat.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_z_nat.tz.out index bb5f9fe34480..57fac5a7cd89 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_fr_z_nat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_z_nat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_z_fr_int.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_z_fr_int.tz.out index b8d637108839..b20eff13f610 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_z_fr_int.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_z_fr_int.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter int ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_z_fr_nat.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_z_fr_nat.tz.out index 732bfed1d06c..a17bd9e0ee9b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bls12_381_z_fr_nat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_z_fr_nat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bytes.tz.out similarity index 58% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bytes.tz.out index 59377145b39e..ad24071d6954 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-bytes.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/bytes.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/bytes.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter bytes ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-car.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-car.tz.out index b9d9f1ad499c..1f4a66c55603 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-car.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/car.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/car.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (pair (nat :l) (nat :r)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-cdr.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-cdr.tz.out index e59c8dfca9d2..0242e08a7c6c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-cdr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/cdr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/cdr.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (pair (nat :l) (nat :r)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-chain_id.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-chain_id.tz.out index 62f506e6dfaf..d6b62cb0afea 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-chain_id.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/chain_id.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/chain_id.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-chain_id_store.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-chain_id_store.tz.out index f4d7d99bfeec..b1648903f850 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-chain_id_store.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/chain_id_store.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/chain_id_store.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-check_signature.tz.out similarity index 88% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-check_signature.tz.out index 5339166f28a8..1622afdb5200 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-check_signature.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/check_signature.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/check_signature.tz --details Well typed Gas remaining: 1039988.984 units remaining { parameter key ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-get.tz.out similarity index 89% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-get.tz.out index b2d2599d9660..55424be7bc4c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-get.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-get.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/comb-get.tz --details Well typed Gas remaining: 1039966.252 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-literals.tz.out similarity index 71% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-literals.tz.out index 63cbc2ab7d6b..17f3662d6392 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-literals.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-literals.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/comb-literals.tz --details Well typed Gas remaining: 1039993.270 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-set-2.tz.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-set-2.tz.out index 14f330baa7da..49036aefd76b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-set-2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-set-2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/comb-set-2.tz --details Well typed Gas remaining: 1039991.581 units remaining { parameter (pair nat nat nat unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-set.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-set.tz.out index 9d9c3f1d3eb3..5424881dc857 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb-set.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-set.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/comb-set.tz --details Well typed Gas remaining: 1039991.623 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb.tz.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb.tz.out index 7424b5f529a9..b3a082cbb478 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comb.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/comb.tz --details Well typed Gas remaining: 1039995.014 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare.tz.out similarity index 96% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare.tz.out index 4f96b774ea12..214c96f1e165 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/compare.tz --details Well typed Gas remaining: 1039841.663 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare_big_type.tz.out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare_big_type.tz.out index b7f5b6ecb42e..0be7a34df2a7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare_big_type.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare_big_type.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/compare_big_type.tz --details Well typed Gas remaining: 1039129.907 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare_big_type2.tz.out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare_big_type2.tz.out index 02c238e43630..466bae8428c8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-compare_big_type2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare_big_type2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/compare_big_type2.tz --details Well typed Gas remaining: 1038995.158 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comparisons.tz.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comparisons.tz.out index f4366518e425..833c7ba647cf 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-comparisons.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/comparisons.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/comparisons.tz --details Well typed Gas remaining: 1039977.212 units remaining { parameter (list int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_hello.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_hello.tz.out index 6bedb03dfe89..86a42098b8fc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_hello.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_hello.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/concat_hello.tz --details Well typed Gas remaining: 1039995.899 units remaining { parameter (list string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_hello_bytes.tz.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_hello_bytes.tz.out index fd56d2536fb6..a537c7393849 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_hello_bytes.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_hello_bytes.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/concat_hello_bytes.tz --details Well typed Gas remaining: 1039995.973 units remaining { parameter (list bytes) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_list.tz.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_list.tz.out index 33332e68c7b4..d4db78d9c478 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-concat_list.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_list.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/concat_list.tz --details Well typed Gas remaining: 1039992.537 units remaining { parameter (list string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-cons.tz.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-cons.tz.out index 134da3445c1a..59217c6c1f85 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-cons.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/cons.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/cons.tz --details Well typed Gas remaining: 1039997.240 units remaining { parameter int ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-contains_all.tz.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-contains_all.tz.out index 76c631252e97..a1b3cdf49a78 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-contains_all.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/contains_all.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/contains_all.tz --details Well typed Gas remaining: 1039974.767 units remaining { parameter (pair (list string) (list string)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-contract.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-contract.tz.out index cc2cda4e5ec0..1113e50ae14c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-contract.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/contract.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/contract.tz --details Well typed Gas remaining: 1039994.190 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract.tz.out index 94ae00f97ce1..2b7db719b556 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/create_contract.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_rootname.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_rootname.tz.out index c419e1f5329a..8e61d5e04447 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_rootname.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_rootname.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/create_contract_rootname.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_rootname_alt.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_rootname_alt.tz.out index f761f6f328d7..366e9a10ac88 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_rootname_alt.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_rootname_alt.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/create_contract_rootname_alt.tz --details Well typed Gas remaining: 1039991.584 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_with_view.tz.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_with_view.tz.out index aaf5698de0e2..d618368f99ef 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-create_contract_with_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_with_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/create_contract_with_view.tz --details Well typed Gas remaining: 1039990.516 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-diff_timestamps.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-diff_timestamps.tz.out index 8f0d81bfb97e..46364ec7b5d0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-diff_timestamps.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/diff_timestamps.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/diff_timestamps.tz --details Well typed Gas remaining: 1039995.013 units remaining { parameter (pair timestamp timestamp) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dig_eq.tz.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dig_eq.tz.out index 4a72da39639a..44043db5cf81 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dig_eq.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/dig_eq.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/dig_eq.tz --details Well typed Gas remaining: 1039909.247 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dign.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dign.tz.out index 3c4f72893390..f6db10164b57 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dign.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/dign.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/dign.tz --details Well typed Gas remaining: 1039992.220 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dip.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dip.tz.out index 12e232b0fd9c..5703b43fbf3d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dip.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/dip.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/dip.tz --details Well typed Gas remaining: 1039994.918 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dipn.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dipn.tz.out index cdf6af31ac17..27dffd5520df 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dipn.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/dipn.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/dipn.tz --details Well typed Gas remaining: 1039991.330 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dropn.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dropn.tz.out index a755641a0f0b..4410e1d20cb4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dropn.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/dropn.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/dropn.tz --details Well typed Gas remaining: 1039994.587 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dugn.tz.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dugn.tz.out index 56e6504dcc74..80932fc50376 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dugn.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/dugn.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/dugn.tz --details Well typed Gas remaining: 1039992.716 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dup-n.tz.out similarity index 88% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dup-n.tz.out index 66fcf8880c86..c4b4a8436128 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-dup-n.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/dup-n.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/dup-n.tz --details Well typed Gas remaining: 1039968.032 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ediv.tz.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ediv.tz.out index 7f4f1a945cf1..75b1c29891b0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ediv.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ediv.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ediv.tz --details Well typed Gas remaining: 1039981.718 units remaining { parameter (pair int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ediv_mutez.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ediv_mutez.tz.out index 04640e394ed9..38adde3239b4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ediv_mutez.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ediv_mutez.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ediv_mutez.tz --details Well typed Gas remaining: 1039990.621 units remaining { parameter (pair mutez (or mutez nat)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-emit.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-emit.tz.out index d9f688ba9fd2..a31331e46823 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--emit.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-emit.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/emit.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/emit.tz --details Well typed Gas remaining: 1039990.510 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-empty_map.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-empty_map.tz.out index fcd1c8b3cf6c..418401db89aa 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-empty_map.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/empty_map.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/empty_map.tz --details Well typed Gas remaining: 1039994.366 units remaining { storage (map string string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-exec_concat.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-exec_concat.tz.out index 4249505e4c78..78043fbd946a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-exec_concat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/exec_concat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/exec_concat.tz --details Well typed Gas remaining: 1039992.377 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-first.tz.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-first.tz.out index c3018351e66c..8457a61ce6d0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-first.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/first.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/first.tz --details Well typed Gas remaining: 1039995.098 units remaining { parameter (list nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_and_update_big_map.tz.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_and_update_big_map.tz.out index f1ca05c3be18..5b1190a59d9d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_and_update_big_map.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_and_update_big_map.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/get_and_update_big_map.tz --details Well typed Gas remaining: 1039994.790 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_and_update_map.tz.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_and_update_map.tz.out index e2c967779bce..8b5a3a36587d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_and_update_map.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_and_update_map.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/get_and_update_map.tz --details Well typed Gas remaining: 1039994.850 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_big_map_value.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_big_map_value.tz.out index 2c85974766d9..55ff4c23481b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_big_map_value.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_big_map_value.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/get_big_map_value.tz --details Well typed Gas remaining: 1039992.079 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_map_value.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_map_value.tz.out index 115428a47d49..4dbb05d9aa2e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-get_map_value.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_map_value.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/get_map_value.tz --details Well typed Gas remaining: 1039992.607 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_consistency_checker.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_consistency_checker.tz.out index 9c969bbbd33c..07f596e9d196 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_consistency_checker.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_consistency_checker.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/hash_consistency_checker.tz --details Well typed Gas remaining: 1039996.569 units remaining { parameter (pair mutez (pair timestamp int)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_key.tz.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_key.tz.out index 515ddff8fbd6..b59b8b8bcf4c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_key.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_key.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/hash_key.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter key ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_string.tz.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_string.tz.out index 99c869eec3cc..7e6028a2f086 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-hash_string.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_string.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/hash_string.tz --details Well typed Gas remaining: 1039996.980 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-if.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-if.tz.out index 6e7d0ddef34e..e269ba0f7ec4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-if.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/if.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/if.tz --details Well typed Gas remaining: 1039995.290 units remaining { parameter bool ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-if_some.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-if_some.tz.out index cd8e6f93b8ea..83fc7df0939e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-if_some.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/if_some.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/if_some.tz --details Well typed Gas remaining: 1039996.019 units remaining { parameter (option string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-int.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-int.tz.out index bde5e97ccf04..79dc03367028 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-int.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/int.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/int.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-iter_fail.tz.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-iter_fail.tz.out index 088d20f5d085..4bd6f9845b40 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-iter_fail.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/iter_fail.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/iter_fail.tz --details Well typed Gas remaining: 1039996.874 units remaining { parameter (set nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-keccak.tz.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-keccak.tz.out index 2acc71d26ff4..173590eccec8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-keccak.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/keccak.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/keccak.tz --details Well typed Gas remaining: 1039996.837 units remaining { storage (option bytes) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-left_right.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-left_right.tz.out index e4e6861fcd3f..3ebb93ec9676 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-left_right.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/left_right.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/left_right.tz --details Well typed Gas remaining: 1039995.570 units remaining { parameter (or bool string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-level.tz.out similarity index 61% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-level.tz.out index 52b75cf161ad..b5cdd616e1b8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-level.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/level.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/level.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_concat.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_concat.tz.out index 95921c6c9949..72f6c504bb23 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_concat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_concat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/list_concat.tz --details Well typed Gas remaining: 1039996.374 units remaining { parameter (list string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_concat_bytes.tz.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_concat_bytes.tz.out index 9a4b4342ce04..68f32fe7a433 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_concat_bytes.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_concat_bytes.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/list_concat_bytes.tz --details Well typed Gas remaining: 1039996.374 units remaining { parameter (list bytes) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_id.tz.out similarity index 61% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_id.tz.out index 6c5c4ab9b682..ddf0fffa14ff 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_id.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_id.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/list_id.tz --details Well typed Gas remaining: 1039997.680 units remaining { parameter (list string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_id_map.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_id_map.tz.out index a8778ac67cb5..f510e2442629 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_id_map.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_id_map.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/list_id_map.tz --details Well typed Gas remaining: 1039996.974 units remaining { parameter (list string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_iter.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_iter.tz.out index 06e2246037e0..41f7fee53a84 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_iter.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_iter.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/list_iter.tz --details Well typed Gas remaining: 1039995.593 units remaining { parameter (list int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_map_block.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_map_block.tz.out index 03f4d08e0fd5..c57c514b02e2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_map_block.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_map_block.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/list_map_block.tz --details Well typed Gas remaining: 1039991.624 units remaining { parameter (list int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_size.tz.out similarity index 61% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_size.tz.out index 52c44e2eb74d..c7686128b0e4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-list_size.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_size.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/list_size.tz --details Well typed Gas remaining: 1039997.360 units remaining { parameter (list int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_failwith.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_failwith.tz.out index 3553e6a9733f..ce94d69ca409 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_failwith.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_failwith.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/loop_failwith.tz --details Well typed Gas remaining: 1039996.957 units remaining { parameter bool ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_left.tz.out similarity index 88% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_left.tz.out index 6368e58947aa..ad53ac5f8b4d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_left.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_left.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/loop_left.tz --details Well typed Gas remaining: 1039987.396 units remaining { parameter (list string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_left_failwith.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_left_failwith.tz.out index 3ee4742ecb50..0df85452cb1a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-loop_left_failwith.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_left_failwith.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/loop_left_failwith.tz --details Well typed Gas remaining: 1039996.716 units remaining { parameter (or string nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_car.tz.out similarity index 75% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_car.tz.out index 8646fc985675..8a408ce2637f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_car.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_car.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/map_car.tz --details Well typed Gas remaining: 1039991.063 units remaining { parameter bool ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_id.tz.out similarity index 61% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_id.tz.out index fd764fe33c14..986ea8334a00 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_id.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_id.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/map_id.tz --details Well typed Gas remaining: 1039997.454 units remaining { parameter (map nat nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_iter.tz.out similarity index 88% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_iter.tz.out index 28a0397f67b7..7ca4aadc1dc7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_iter.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_iter.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/map_iter.tz --details Well typed Gas remaining: 1039986.949 units remaining { parameter (map (int :k) (int :e)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_map.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_map.tz.out index 6ebb9af4e38f..f568a479ac72 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_map.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_map.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/map_map.tz --details Well typed Gas remaining: 1039993.574 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_map_sideeffect.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_map_sideeffect.tz.out index 29f99fb6173a..ef9a32c9d60c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_map_sideeffect.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_map_sideeffect.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/map_map_sideeffect.tz --details Well typed Gas remaining: 1039988.534 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_mem_nat.tz.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_mem_nat.tz.out index af83023b1ec3..6f66ad3ff163 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_mem_nat.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_mem_nat.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/map_mem_nat.tz --details Well typed Gas remaining: 1039993.554 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_mem_string.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_mem_string.tz.out index 8d256f07da4a..df2f7fb16456 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_mem_string.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_mem_string.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/map_mem_string.tz --details Well typed Gas remaining: 1039993.554 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_size.tz.out similarity index 62% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_size.tz.out index 330e7a739fee..a43bbc82836c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-map_size.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_size.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/map_size.tz --details Well typed Gas remaining: 1039997.277 units remaining { parameter (map string nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-merge_comparable_pairs.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-merge_comparable_pairs.tz.out index 068b49a93741..1a077d9d6723 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-merge_comparable_pairs.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/merge_comparable_pairs.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/merge_comparable_pairs.tz --details Well typed Gas remaining: 1039992.173 units remaining { parameter (set (pair (nat %n) (pair %p (string %s) (int %i)))) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul.tz.out similarity index 91% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul.tz.out index a2db90ef4e8f..bd0e88b9899a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/mul.tz --details Well typed Gas remaining: 1039961.621 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_fr.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_fr.tz.out index f0c7320b896a..8d0ffa053840 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_fr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/mul_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_fr bls12_381_fr) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_g1.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_g1.tz.out index 99ce538d17ef..8fcf3d95ae2c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_g1.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/mul_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g1 bls12_381_fr) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_g2.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_g2.tz.out index 4687a9408564..5b17d617704c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_g2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/mul_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g2 bls12_381_fr) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_overflow.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_overflow.tz.out index f2ee1d9271cc..ab504d05371a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mul_overflow.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_overflow.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/mul_overflow.tz --details Well typed Gas remaining: 1039992.344 units remaining { parameter (or unit unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-munch.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-munch.tz.out index cc2d0542e30a..f331aad14fe2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-munch.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/munch.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/munch.tz --details Well typed Gas remaining: 1039997.065 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mutez_to_bls12_381_fr.tz.out similarity index 75% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mutez_to_bls12_381_fr.tz.out index dbb176e32cd4..0232ef3be0d7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-mutez_to_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/mutez_to_bls12_381_fr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/mutez_to_bls12_381_fr.tz --details Well typed Gas remaining: 1039992.323 units remaining { parameter mutez ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg.tz.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg.tz.out index 3192c9718990..ff08c1e6fd26 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/neg.tz --details Well typed Gas remaining: 1039996.161 units remaining { parameter (or int nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_fr.tz.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_fr.tz.out index 1f6cf683a5fe..173c5911c540 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_fr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/neg_bls12_381_fr.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_g1.tz.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_g1.tz.out index 3948507c3a15..cb1e71b48a20 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_g1.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/neg_bls12_381_g1.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_g1 ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_g2.tz.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_g2.tz.out index f2df05ffa208..d909eaa11dcb 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-neg_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_g2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/neg_bls12_381_g2.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bls12_381_g2 ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-none.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-none.tz.out index 6fd6b6b38fa7..7812b1210f7d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-none.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/none.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/none.tz --details Well typed Gas remaining: 1039997.217 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-noop.tz.out similarity index 58% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-noop.tz.out index 659095650b99..19a5f8691557 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-noop.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/noop.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/noop.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-not.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-not.tz.out index 44b3966db3c7..e8cbd34adf75 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-not.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/not.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/not.tz --details Well typed Gas remaining: 1039996.837 units remaining { parameter bool ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-not_binary.tz.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-not_binary.tz.out index 82136d67563b..ff81102d1090 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-not_binary.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/not_binary.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/not_binary.tz --details Well typed Gas remaining: 1039995.545 units remaining { parameter (or int nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-or.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-or.tz.out index 45fa56cd80f4..d5fc382c6936 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-or.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/or.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/or.tz --details Well typed Gas remaining: 1039994.425 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-or_binary.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-or_binary.tz.out index a52b28b9554e..4fdf7f9e8c18 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-or_binary.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/or_binary.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/or_binary.tz --details Well typed Gas remaining: 1039996.129 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-originate_big_map.tz.out similarity index 61% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-originate_big_map.tz.out index 0652dffc3723..a16cf9c25672 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-originate_big_map.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/originate_big_map.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/originate_big_map.tz --details Well typed Gas remaining: 1039997.334 units remaining { parameter (big_map int int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack.tz.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack.tz.out index 192cd4490bb3..36b97a44123a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/packunpack.tz --details Well typed Gas remaining: 1039987.310 units remaining { parameter (pair (pair (pair string (list int)) (set nat)) bytes) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack_rev.tz.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack_rev.tz.out index a9208b957053..458916d1a460 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack_rev.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack_rev.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/packunpack_rev.tz --details Well typed Gas remaining: 1039888.774 units remaining { parameter (pair int nat string bytes mutez bool key_hash timestamp address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack_rev_cty.tz.out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack_rev_cty.tz.out index 30e155eb1c77..269e8128d207 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-packunpack_rev_cty.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack_rev_cty.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/packunpack_rev_cty.tz --details Well typed Gas remaining: 1039875.178 units remaining { parameter diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pair_id.tz.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pair_id.tz.out index ada92defcf02..2eee3b25f7b7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pair_id.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/pair_id.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/pair_id.tz --details Well typed Gas remaining: 1039996.769 units remaining { parameter (pair bool bool) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pairing_check.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pairing_check.tz.out index 73f1a529e427..0fd638bdcd74 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pairing_check.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/pairing_check.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/pairing_check.tz --details Well typed Gas remaining: 1039996.509 units remaining { parameter (list (pair bls12_381_g1 bls12_381_g2)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pexec.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pexec.tz.out index e49fa10eda88..e4a66ad2b112 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pexec.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/pexec.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/pexec.tz --details Well typed Gas remaining: 1039993.994 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pexec_2.tz.out similarity index 87% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pexec_2.tz.out index 5812f6b02904..8d3bdf54d890 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-pexec_2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/pexec_2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/pexec_2.tz --details Well typed Gas remaining: 1039988.161 units remaining { parameter int ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-proxy.tz.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-proxy.tz.out index f631675a08a4..3a7547cc7d55 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-proxy.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/proxy.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/proxy.tz --details Well typed Gas remaining: 1039995.281 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ret_int.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ret_int.tz.out index 66ac732e83f5..b3e2d3db9076 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ret_int.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ret_int.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ret_int.tz --details Well typed Gas remaining: 1039996.556 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-reverse.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-reverse.tz.out index 999d0b399a2a..fc76c34a651d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-reverse.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/reverse.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/reverse.tz --details Well typed Gas remaining: 1039995.453 units remaining { parameter (list string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-reverse_loop.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-reverse_loop.tz.out index e51d1724c852..9b7bb4f2a8e9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-reverse_loop.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/reverse_loop.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/reverse_loop.tz --details Well typed Gas remaining: 1039990.243 units remaining { parameter (list string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sapling_empty_state.tz.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sapling_empty_state.tz.out index 8ff3f8af488b..c46e69a23442 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sapling_empty_state.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/sapling_empty_state.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/sapling_empty_state.tz --details Well typed Gas remaining: 1039997.397 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self.tz.out index d7e5ad423cc8..9701a8abdf86 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self.tz --details Well typed Gas remaining: 1039996.945 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address.tz.out index 38b160092795..b30cf1e8788b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_address.tz --details Well typed Gas remaining: 1039990.189 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_fib_view.tz.out index 7ffa8dfd9d16..42f81df2c321 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_fib_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_address_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_nonexistent_.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_nonexistent_.out index 41e5787e27d9..a2a66cf02a34 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_nonexistent_.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_nonexistent_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_address_after_nonexistent_view.tz --details Well typed Gas remaining: 1039987.050 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_view.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_view.tz.out index 55d1cfafa216..dd39f0417f07 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_address_after_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_address_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_fib_view.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_fib_view.tz.out index 23512e45a007..682289441764 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_fib_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_after_fib_view.tz --details Well typed Gas remaining: 1039986.060 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_nonexistent_view.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_nonexistent_view.tz.out index 9b1e1b948d57..f178d30a6fc2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_nonexistent_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_nonexistent_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_after_nonexistent_view.tz --details Well typed Gas remaining: 1039986.452 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_view.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_view.tz.out index 7f6470ebad7d..ffd8eb2ee2f9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_after_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_after_view.tz --details Well typed Gas remaining: 1039985.886 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_with_default_entrypoint.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_with_default_entrypoint.tz.out index 5155d84246bf..da65d8ea6430 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_with_default_entrypoint.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_default_entrypoint.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_with_default_entrypoint.tz --details Well typed Gas remaining: 1039988.800 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %default) (string %C))) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_with_entrypoint.tz.out similarity index 91% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_with_entrypoint.tz.out index f5b1bcb95fa3..64751f34e517 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-self_with_entrypoint.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_entrypoint.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/self_with_entrypoint.tz --details Well typed Gas remaining: 1039970.861 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %Z) (string %C))) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender.tz.out similarity index 62% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender.tz.out index cb22e7013a2f..0f3b02a3566e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/sender.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_fib_view.tz.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_fib_view.tz.out index e71b05d93a22..9233120f7cb0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_fib_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_fib_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/sender_after_fib_view.tz --details Well typed Gas remaining: 1039986.567 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_nonexistent_view.t.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_nonexistent_view.t.out index 0ddd0abc03d8..a234f96be762 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_nonexistent_view.t.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_nonexistent_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/sender_after_nonexistent_view.tz --details Well typed Gas remaining: 1039987.050 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_view.tz.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_view.tz.out index c4b5fc962c63..dcaebd0a5da9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sender_after_view.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_view.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/sender_after_view.tz --details Well typed Gas remaining: 1039986.392 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_car.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_car.tz.out index b1c4063baf78..b8ca51f487da 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_car.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_car.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/set_car.tz --details Well typed Gas remaining: 1039992.274 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_cdr.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_cdr.tz.out index c9cbcbbc4ea0..891d367b067b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_cdr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_cdr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/set_cdr.tz --details Well typed Gas remaining: 1039992.742 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_delegate.tz.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_delegate.tz.out index f7ca9dbaedbd..43e2de76a2a2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_delegate.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_delegate.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/set_delegate.tz --details Well typed Gas remaining: 1039996.276 units remaining { parameter (option key_hash) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_id.tz.out similarity index 61% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_id.tz.out index 3312e5a8ecc7..694f4b1a0a3b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_id.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_id.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/set_id.tz --details Well typed Gas remaining: 1039997.680 units remaining { parameter (set string) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_iter.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_iter.tz.out index 65705dbd4e7c..8aa5aafa6bb1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_iter.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_iter.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/set_iter.tz --details Well typed Gas remaining: 1039995.593 units remaining { parameter (set int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_member.tz.out similarity index 86% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_member.tz.out index 42c0ac8cd6f5..9ba794ebe631 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_member.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_member.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/set_member.tz --details Well typed Gas remaining: 1039989.840 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_size.tz.out similarity index 61% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_size.tz.out index d835c0dd817a..5417f5d56107 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-set_size.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_size.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/set_size.tz --details Well typed Gas remaining: 1039997.360 units remaining { parameter (set int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sets.tz.out similarity index 91% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sets.tz.out index 38779b773843..9fadd7b0e18b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sets.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/sets.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/sets.tz --details Well typed Gas remaining: 1039953.534 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sha3.tz.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sha3.tz.out index d871fd5602ac..98256fb9f573 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sha3.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/sha3.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/sha3.tz --details Well typed Gas remaining: 1039996.837 units remaining { storage (option bytes) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-shifts.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-shifts.tz.out index d812e1fb7b8a..0cc2b5443366 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-shifts.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/shifts.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/shifts.tz --details Well typed Gas remaining: 1039994.259 units remaining { parameter (or (pair nat nat) (pair nat nat)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slice.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slice.tz.out index 1212a25e9200..0578c5afd4c2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slice.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/slice.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/slice.tz --details Well typed Gas remaining: 1039993.747 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slice_bytes.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slice_bytes.tz.out index b69f20be81d8..5f89afb3ce45 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slice_bytes.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/slice_bytes.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/slice_bytes.tz --details Well typed Gas remaining: 1039993.747 units remaining { parameter (pair nat nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slices.tz.out similarity index 96% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slices.tz.out index eb01be183a8d..d3ee3714f4cc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-slices.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/slices.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/slices.tz --details Well typed Gas remaining: 1039937.057 units remaining { parameter (pair bytes signature) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-source.tz.out similarity index 62% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-source.tz.out index c51b5d2dcf04..53d45d3f0f35 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-source.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/source.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/source.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-split_bytes.tz.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-split_bytes.tz.out index 6bd245f191af..7af274285844 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-split_bytes.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/split_bytes.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/split_bytes.tz --details Well typed Gas remaining: 1039973.337 units remaining { parameter bytes ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-split_string.tz.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-split_string.tz.out index 7d4a30941335..ca1bde9cbd25 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-split_string.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/split_string.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/split_string.tz --details Well typed Gas remaining: 1039973.337 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_fr.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_fr.tz.out index 286371d5cd70..73f1febdfc94 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_fr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_fr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/store_bls12_381_fr.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_fr ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_g1.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_g1.tz.out index 1e6f363c1f9d..143391ec85c6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_g1.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_g1.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/store_bls12_381_g1.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_g1 ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_g2.tz.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_g2.tz.out index 979b0f25aff5..c6644519d336 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_bls12_381_g2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_g2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/store_bls12_381_g2.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter bls12_381_g2 ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_input.tz.out similarity index 58% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_input.tz.out index fd2199fdb4ea..997046158b07 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_input.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[attic/id.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/store_input.tz --details Well typed Gas remaining: 1039997.907 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_now.tz.out similarity index 62% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_now.tz.out index 9a70f7c61025..c5ce228e8fd4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-store_now.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_now.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/store_now.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-str_id.tz.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-str_id.tz.out index d75d66629f53..2a48921c7011 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-str_id.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/str_id.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/str_id.tz --details Well typed Gas remaining: 1039997.300 units remaining { parameter string ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sub_timestamp_delta.tz.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sub_timestamp_delta.tz.out index 77c334a75ec2..23c44eb20a65 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-sub_timestamp_delta.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/sub_timestamp_delta.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/sub_timestamp_delta.tz --details Well typed Gas remaining: 1039995.013 units remaining { parameter (pair timestamp int) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-subset.tz.out similarity index 90% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-subset.tz.out index 7745f1c1251d..8edf2e9038ac 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-subset.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/subset.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/subset.tz --details Well typed Gas remaining: 1039986.401 units remaining { parameter (pair (set string) (set string)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-tez_add_sub.tz.out similarity index 86% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-tez_add_sub.tz.out index cc5f3bb6f93f..fecafa31a960 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-tez_add_sub.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/tez_add_sub.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/tez_add_sub.tz --details Well typed Gas remaining: 1039987.345 units remaining { parameter (pair mutez mutez) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_bad.tz.out similarity index 60% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_bad.tz.out index 22f202643862..fe33412d0a1a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_bad.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_bad.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticket_bad.tz --details Well typed Gas remaining: 1039997.763 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_big_store.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_big_store.tz.out index fb9f9d8c4bbb..afb2631466fe 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_big_store.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_big_store.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticket_big_store.tz --details Well typed Gas remaining: 1039994.150 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_join.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_join.tz.out index b986df3891b2..e5422e404aa7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_join.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_join.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticket_join.tz --details Well typed Gas remaining: 1039992.503 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_read.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_read.tz.out index 1c9dca399b1b..4d988e347f28 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_read.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_read.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticket_read.tz --details Well typed Gas remaining: 1039985.350 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_split.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_split.tz.out index aedc4a7489b3..c58cd6e9affb 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_split.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_split.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticket_split.tz --details Well typed Gas remaining: 1039979.558 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_store-2.tz.out similarity index 63% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_store-2.tz.out index a67cae8f99f5..df37f62cb611 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_store-2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_store-2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticket_store-2.tz --details Well typed Gas remaining: 1039997.454 units remaining { parameter (option (ticket nat)) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_store.tz.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_store.tz.out index 7f721add4e16..5a031459d6cd 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticket_store.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_store.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticket_store.tz --details Well typed Gas remaining: 1039997.074 units remaining { parameter (ticket nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticketer-2.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticketer-2.tz.out index b77901e62fcb..f4debe465f5b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticketer-2.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticketer-2.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticketer-2.tz --details Well typed Gas remaining: 1039988.434 units remaining { parameter (pair (pair address nat) nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticketer.tz.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticketer.tz.out index f9130f08f257..ce07697f53dc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-ticketer.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticketer.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/ticketer.tz --details Well typed Gas remaining: 1039988.950 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-transfer_amount.tz.out similarity index 60% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-transfer_amount.tz.out index 31700a2da432..39ba59f77685 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-transfer_amount.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/transfer_amount.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/transfer_amount.tz --details Well typed Gas remaining: 1039997.443 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-transfer_tokens.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-transfer_tokens.tz.out index b8fce24aa913..f0192200856a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-transfer_tokens.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/transfer_tokens.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/transfer_tokens.tz --details Well typed Gas remaining: 1039994.130 units remaining { parameter (contract unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-uncomb.tz.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-uncomb.tz.out index b1f267062aeb..7a762375074c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-uncomb.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/uncomb.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/uncomb.tz --details Well typed Gas remaining: 1039993.181 units remaining { parameter (pair nat nat nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-unpair.tz.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-unpair.tz.out index 435bad707363..219bfe9ff1f6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-unpair.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/unpair.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/unpair.tz --details Well typed Gas remaining: 1039904.519 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-unpair_field_annotation_mismatc.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-unpair_field_annotation_mismatc.out index 65d436a7f10d..00c8e3e496c6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-unpair_field_annotation_mismatc.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/unpair_field_annotation_mismatch.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/unpair_field_annotation_mismatch.tz --details Well typed Gas remaining: 1039993.685 units remaining { parameter (unit :param_unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-update_big_map.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-update_big_map.tz.out index cf12c1d33b41..45cb2c03eff8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-update_big_map.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/update_big_map.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/update_big_map.tz --details Well typed Gas remaining: 1039993.471 units remaining { storage (pair (big_map string string) unit) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-utxo_read.tz.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-utxo_read.tz.out index 53b13acf0ea0..28f4cb2d2ce3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-utxo_read.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/utxo_read.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/utxo_read.tz --details Well typed Gas remaining: 1039985.390 units remaining { parameter (pair (ticket nat) nat) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-utxor.tz.out similarity index 95% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-utxor.tz.out index 86024f749f5c..8b3d85268e66 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-utxor.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/utxor.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/utxor.tz --details Well typed Gas remaining: 1039969.043 units remaining { parameter (pair address address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_fib.tz.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_fib.tz.out index 7031ad5676f2..4a541556bb13 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_fib.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_fib.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_fib.tz --details Well typed Gas remaining: 1039994.630 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_mutual_recursion.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_mutual_recursion.tz.out index a2e83a1a3b70..724ffd01f221 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_mutual_recursion.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_mutual_recursion.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_mutual_recursion.tz --details Well typed Gas remaining: 1039993.335 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_add.tz.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_add.tz.out index bf01cbb79dd5..b1c87e52df04 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_add.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_add.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_op_add.tz --details Well typed Gas remaining: 1039994.410 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_constant.tz.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_constant.tz.out index 1afd1035635f..c943995e2289 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_constant.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_constant.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_op_constant.tz --details Well typed Gas remaining: 1039994.390 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_id.tz.out similarity index 71% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_id.tz.out index 9f731faafa20..0641230d994c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_id.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_id.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_op_id.tz --details Well typed Gas remaining: 1039993.949 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_nonexistent_addr.tz.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_nonexistent_addr.tz.out index 90287cb6e3f5..127b5afe9b55 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_nonexistent_addr.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_nonexistent_addr.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_op_nonexistent_addr.tz --details Well typed Gas remaining: 1039989.559 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_nonexistent_func.tz.out similarity index 71% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_nonexistent_func.tz.out index 9fe2b1e5c4a1..aee0d202b694 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_nonexistent_func.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_nonexistent_func.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_op_nonexistent_func.tz --details Well typed Gas remaining: 1039993.859 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_test_step_contants.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_test_step_contants.tz.out index 18691885c4c5..72ca814b444e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_test_step_contants.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_test_step_contants.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_op_test_step_contants.tz --details Well typed Gas remaining: 1039994.470 units remaining { parameter address ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_toplevel_inconsistent_i.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_toplevel_inconsistent_i.out index fe21adac3159..c7f82ce07d6c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_toplevel_inconsistent_i.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_toplevel_inconsistent_input_type.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_op_toplevel_inconsistent_input_type.tz --details Well typed Gas remaining: 1039993.919 units remaining { parameter (pair int address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_toplevel_inconsistent_o.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_toplevel_inconsistent_o.out index 2b2fb11b03ce..d0fda90a04ee 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_op_toplevel_inconsistent_o.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_toplevel_inconsistent_output_type.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_op_toplevel_inconsistent_output_type.tz --details Well typed Gas remaining: 1039993.919 units remaining { parameter (pair nat address) ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_rec.tz.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_rec.tz.out index 07b5fcdc2b6c..2f0fc2e5fcab 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_rec.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_rec.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_rec.tz --details Well typed Gas remaining: 1039988.440 units remaining { parameter unit ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_toplevel_lib.tz.out similarity index 95% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_toplevel_lib.tz.out index 68b935893823..b98e3596484a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-view_toplevel_lib.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_toplevel_lib.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/view_toplevel_lib.tz --details Well typed Gas remaining: 1039947.179 units remaining { parameter nat ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-voting_power.tz.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-voting_power.tz.out index 848c94faaaa4..fa03b9e4e8a5 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-voting_power.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/voting_power.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/voting_power.tz --details Well typed Gas remaining: 1039995.193 units remaining { parameter key ; diff --git a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-xor.tz.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out rename to tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-xor.tz.out index 22019f2fe48f..05db9f3a4117 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out +++ b/tezt/tests/expected/contract_typecheck.ml/Kathmandu- Tc tests_python-contracts_014-opcodes-xor.tz.out @@ -1,5 +1,5 @@ -tests_014/test_contract.py::TestTypecheck::test_typecheck[opcodes/xor.tz] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings typecheck script tests_python/contracts_014/opcodes/xor.tz --details Well typed Gas remaining: 1039992.584 units remaining { parameter (or (pair bool bool) (pair nat nat)) ; -- GitLab