From f79fdad4abe1835f33e0342fac7f0fbc12e1afed Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Fri, 30 Sep 2022 20:34:07 +0200 Subject: [PATCH 01/17] Tests/Python: fix parameter order in [test_contract_opcodes] --- tests_python/tests_014/test_contract_opcodes.py | 6 +++--- tests_python/tests_015/test_contract_opcodes.py | 6 +++--- tests_python/tests_alpha/test_contract_opcodes.py | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/tests_python/tests_014/test_contract_opcodes.py b/tests_python/tests_014/test_contract_opcodes.py index b4864f6e99a2..e536bbebf450 100644 --- a/tests_python/tests_014/test_contract_opcodes.py +++ b/tests_python/tests_014/test_contract_opcodes.py @@ -22,7 +22,7 @@ class TestContractOpcodes: """Tests for individual opcodes that do not require origination.""" @pytest.mark.parametrize( - "contract,param,storage,expected", + "contract,storage,param,expected", [ # FORMAT: assert_output contract_file storage input expected_result # TODO add tests for map_car.tz, subset.tz # NB: noop.tz is tested in test_basic.sh @@ -1456,8 +1456,8 @@ class TestContractOpcodes: self, client_regtest: ClientRegression, contract: str, - param: str, storage: str, + param: str, expected: str, ): client = client_regtest @@ -1466,7 +1466,7 @@ class TestContractOpcodes: ), "test contract should have .tz extension" contract = path.join(OPCODES_CONTRACT_PATH, contract) run_script_res = client.run_script( - contract, param, storage, trace_stack=True + contract, storage, param, trace_stack=True ) assert run_script_res.storage == expected diff --git a/tests_python/tests_015/test_contract_opcodes.py b/tests_python/tests_015/test_contract_opcodes.py index b4864f6e99a2..e536bbebf450 100644 --- a/tests_python/tests_015/test_contract_opcodes.py +++ b/tests_python/tests_015/test_contract_opcodes.py @@ -22,7 +22,7 @@ class TestContractOpcodes: """Tests for individual opcodes that do not require origination.""" @pytest.mark.parametrize( - "contract,param,storage,expected", + "contract,storage,param,expected", [ # FORMAT: assert_output contract_file storage input expected_result # TODO add tests for map_car.tz, subset.tz # NB: noop.tz is tested in test_basic.sh @@ -1456,8 +1456,8 @@ class TestContractOpcodes: self, client_regtest: ClientRegression, contract: str, - param: str, storage: str, + param: str, expected: str, ): client = client_regtest @@ -1466,7 +1466,7 @@ class TestContractOpcodes: ), "test contract should have .tz extension" contract = path.join(OPCODES_CONTRACT_PATH, contract) run_script_res = client.run_script( - contract, param, storage, trace_stack=True + contract, storage, param, trace_stack=True ) assert run_script_res.storage == expected diff --git a/tests_python/tests_alpha/test_contract_opcodes.py b/tests_python/tests_alpha/test_contract_opcodes.py index b4864f6e99a2..e536bbebf450 100644 --- a/tests_python/tests_alpha/test_contract_opcodes.py +++ b/tests_python/tests_alpha/test_contract_opcodes.py @@ -22,7 +22,7 @@ class TestContractOpcodes: """Tests for individual opcodes that do not require origination.""" @pytest.mark.parametrize( - "contract,param,storage,expected", + "contract,storage,param,expected", [ # FORMAT: assert_output contract_file storage input expected_result # TODO add tests for map_car.tz, subset.tz # NB: noop.tz is tested in test_basic.sh @@ -1456,8 +1456,8 @@ class TestContractOpcodes: self, client_regtest: ClientRegression, contract: str, - param: str, storage: str, + param: str, expected: str, ): client = client_regtest @@ -1466,7 +1466,7 @@ class TestContractOpcodes: ), "test contract should have .tz extension" contract = path.join(OPCODES_CONTRACT_PATH, contract) run_script_res = client.run_script( - contract, param, storage, trace_stack=True + contract, storage, param, trace_stack=True ) assert run_script_res.storage == expected -- GitLab From 475afa19b61654012182962c99b55dc7b622f763 Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Thu, 13 Oct 2022 09:50:34 +0200 Subject: [PATCH 02/17] Tests/Python: add missing slice_bytes.tz cases --- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out} | 2 +- ...z-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out} | 24 ++++++------ ..._bytes.tz-Some 0xaabbcc-Pair 2 2-None].out | 37 +++++++++++++++++++ .../tests_014/test_contract_opcodes.py | 3 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out} | 2 +- ...z-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out} | 24 ++++++------ ..._bytes.tz-Some 0xaabbcc-Pair 2 2-None].out | 37 +++++++++++++++++++ .../tests_015/test_contract_opcodes.py | 3 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out} | 2 +- ...z-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out} | 24 ++++++------ ..._bytes.tz-Some 0xaabbcc-Pair 2 2-None].out | 37 +++++++++++++++++++ .../tests_alpha/test_contract_opcodes.py | 3 +- 12 files changed, 156 insertions(+), 42 deletions(-) rename tests_python/tests_014/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out} (99%) rename tests_python/tests_014/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out} (74%) create mode 100644 tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out rename tests_python/tests_015/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out} (99%) rename tests_python/tests_015/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out} (74%) create mode 100644 tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out rename tests_python/tests_alpha/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out} (98%) rename tests_python/tests_alpha/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out} (68%) create mode 100644 tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out rename to tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out index 54e69f83aea8..7e4e02433d6d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out @@ -1,4 +1,4 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)] storage (Some 0xbb) diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out rename to tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out index 1840c64fd0a8..5d3cc94b64c8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out @@ -1,37 +1,37 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)] storage - (Some 0xbb) + (Some 0xcc) emitted operations big_map diff trace - location: 10 (remaining gas: 1039990.702 units remaining) - [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] + [ (Pair (Pair 2 1) (Some 0xaabbcc)) ] - location: 10 (remaining gas: 1039990.692 units remaining) - [ (Pair 1 1) + [ (Pair 2 1) (Some 0xaabbcc) ] - location: 11 (remaining gas: 1039990.682 units remaining) [ (Some 0xaabbcc) - (Pair 1 1) ] + (Pair 2 1) ] - location: 13 (remaining gas: 1039990.682 units remaining) [ 0xaabbcc - (Pair 1 1) ] + (Pair 2 1) ] - location: 19 (remaining gas: 1039990.672 units remaining) - [ (Pair 1 1) + [ (Pair 2 1) 0xaabbcc ] - location: 20 (remaining gas: 1039990.662 units remaining) - [ 1 + [ 2 1 0xaabbcc ] - location: 21 (remaining gas: 1039990.637 units remaining) - [ (Some 0xbb) ] + [ (Some 0xcc) ] - location: 13 (remaining gas: 1039990.627 units remaining) - [ (Some 0xbb) ] + [ (Some 0xcc) ] - location: 22 (remaining gas: 1039990.617 units remaining) [ {} - (Some 0xbb) ] + (Some 0xcc) ] - location: 24 (remaining gas: 1039990.607 units remaining) - [ (Pair {} (Some 0xbb)) ] + [ (Pair {} (Some 0xcc)) ] diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out new file mode 100644 index 000000000000..1eceba18afa9 --- /dev/null +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out @@ -0,0 +1,37 @@ +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None] + +storage + None +emitted operations + +big_map diff + +trace + - location: 10 (remaining gas: 1039990.702 units remaining) + [ (Pair (Pair 2 2) (Some 0xaabbcc)) ] + - location: 10 (remaining gas: 1039990.692 units remaining) + [ (Pair 2 2) + (Some 0xaabbcc) ] + - location: 11 (remaining gas: 1039990.682 units remaining) + [ (Some 0xaabbcc) + (Pair 2 2) ] + - location: 13 (remaining gas: 1039990.682 units remaining) + [ 0xaabbcc + (Pair 2 2) ] + - location: 19 (remaining gas: 1039990.672 units remaining) + [ (Pair 2 2) + 0xaabbcc ] + - location: 20 (remaining gas: 1039990.662 units remaining) + [ 2 + 2 + 0xaabbcc ] + - location: 21 (remaining gas: 1039990.637 units remaining) + [ None ] + - location: 13 (remaining gas: 1039990.627 units remaining) + [ None ] + - location: 22 (remaining gas: 1039990.617 units remaining) + [ {} + None ] + - location: 24 (remaining gas: 1039990.607 units remaining) + [ (Pair {} None) ] + diff --git a/tests_python/tests_014/test_contract_opcodes.py b/tests_python/tests_014/test_contract_opcodes.py index e536bbebf450..7f795693b9c4 100644 --- a/tests_python/tests_014/test_contract_opcodes.py +++ b/tests_python/tests_014/test_contract_opcodes.py @@ -89,7 +89,8 @@ class TestContractOpcodes: ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 2', '(Some 0xbbcc)'), ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 3', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), + ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 1', '(Some 0xcc)'), + ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 2', 'None'), # Stress-test the failure case of slice for a # non-trivial gas consumption ( diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out rename to tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out index e98f1c0d7eed..84b6f3e66b05 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out @@ -1,4 +1,4 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)] storage (Some 0xbb) diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out rename to tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out index 47b2cafe2ab3..6c9930d0365b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out @@ -1,37 +1,37 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)] storage - (Some 0xbb) + (Some 0xcc) emitted operations big_map diff trace - location: 10 (remaining gas: 1039990.702 units remaining) - [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] + [ (Pair (Pair 2 1) (Some 0xaabbcc)) ] - location: 10 (remaining gas: 1039990.692 units remaining) - [ (Pair 1 1) + [ (Pair 2 1) (Some 0xaabbcc) ] - location: 11 (remaining gas: 1039990.682 units remaining) [ (Some 0xaabbcc) - (Pair 1 1) ] + (Pair 2 1) ] - location: 13 (remaining gas: 1039990.682 units remaining) [ 0xaabbcc - (Pair 1 1) ] + (Pair 2 1) ] - location: 19 (remaining gas: 1039990.672 units remaining) - [ (Pair 1 1) + [ (Pair 2 1) 0xaabbcc ] - location: 20 (remaining gas: 1039990.662 units remaining) - [ 1 + [ 2 1 0xaabbcc ] - location: 21 (remaining gas: 1039990.636 units remaining) - [ (Some 0xbb) ] + [ (Some 0xcc) ] - location: 13 (remaining gas: 1039990.621 units remaining) - [ (Some 0xbb) ] + [ (Some 0xcc) ] - location: 22 (remaining gas: 1039990.611 units remaining) [ {} - (Some 0xbb) ] + (Some 0xcc) ] - location: 24 (remaining gas: 1039990.601 units remaining) - [ (Pair {} (Some 0xbb)) ] + [ (Pair {} (Some 0xcc)) ] diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out new file mode 100644 index 000000000000..25963f6a6015 --- /dev/null +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out @@ -0,0 +1,37 @@ +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None] + +storage + None +emitted operations + +big_map diff + +trace + - location: 10 (remaining gas: 1039990.702 units remaining) + [ (Pair (Pair 2 2) (Some 0xaabbcc)) ] + - location: 10 (remaining gas: 1039990.692 units remaining) + [ (Pair 2 2) + (Some 0xaabbcc) ] + - location: 11 (remaining gas: 1039990.682 units remaining) + [ (Some 0xaabbcc) + (Pair 2 2) ] + - location: 13 (remaining gas: 1039990.682 units remaining) + [ 0xaabbcc + (Pair 2 2) ] + - location: 19 (remaining gas: 1039990.672 units remaining) + [ (Pair 2 2) + 0xaabbcc ] + - location: 20 (remaining gas: 1039990.662 units remaining) + [ 2 + 2 + 0xaabbcc ] + - location: 21 (remaining gas: 1039990.636 units remaining) + [ None ] + - location: 13 (remaining gas: 1039990.621 units remaining) + [ None ] + - location: 22 (remaining gas: 1039990.611 units remaining) + [ {} + None ] + - location: 24 (remaining gas: 1039990.601 units remaining) + [ (Pair {} None) ] + diff --git a/tests_python/tests_015/test_contract_opcodes.py b/tests_python/tests_015/test_contract_opcodes.py index e536bbebf450..7f795693b9c4 100644 --- a/tests_python/tests_015/test_contract_opcodes.py +++ b/tests_python/tests_015/test_contract_opcodes.py @@ -89,7 +89,8 @@ class TestContractOpcodes: ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 2', '(Some 0xbbcc)'), ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 3', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), + ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 1', '(Some 0xcc)'), + ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 2', 'None'), # Stress-test the failure case of slice for a # non-trivial gas consumption ( diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out rename to tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out index a605436b2668..b6f868f8789d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out @@ -1,4 +1,4 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)] storage (Some 0xbb) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out rename to tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out index c7e8e253ee16..68a5a5c48f03 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out @@ -1,37 +1,37 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)] storage - (Some 0xbb) + (Some 0xcc) emitted operations big_map diff trace - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] + [ (Pair (Pair 2 1) (Some 0xaabbcc)) ] - location: 10 (just consumed gas: 0.010) - [ (Pair 1 1) + [ (Pair 2 1) (Some 0xaabbcc) ] - location: 11 (just consumed gas: 0.010) [ (Some 0xaabbcc) - (Pair 1 1) ] + (Pair 2 1) ] - location: 13 (just consumed gas: 0) [ 0xaabbcc - (Pair 1 1) ] + (Pair 2 1) ] - location: 19 (just consumed gas: 0.010) - [ (Pair 1 1) + [ (Pair 2 1) 0xaabbcc ] - location: 20 (just consumed gas: 0.010) - [ 1 + [ 2 1 0xaabbcc ] - location: 21 (just consumed gas: 0.026) - [ (Some 0xbb) ] + [ (Some 0xcc) ] - location: 13 (just consumed gas: 0.015) - [ (Some 0xbb) ] + [ (Some 0xcc) ] - location: 22 (just consumed gas: 0.010) [ {} - (Some 0xbb) ] + (Some 0xcc) ] - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some 0xbb)) ] + [ (Pair {} (Some 0xcc)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out new file mode 100644 index 000000000000..6c2294b6250a --- /dev/null +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out @@ -0,0 +1,37 @@ +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None] + +storage + None +emitted operations + +big_map diff + +trace + - location: 10 (just consumed gas: 9.298) + [ (Pair (Pair 2 2) (Some 0xaabbcc)) ] + - location: 10 (just consumed gas: 0.010) + [ (Pair 2 2) + (Some 0xaabbcc) ] + - location: 11 (just consumed gas: 0.010) + [ (Some 0xaabbcc) + (Pair 2 2) ] + - location: 13 (just consumed gas: 0) + [ 0xaabbcc + (Pair 2 2) ] + - location: 19 (just consumed gas: 0.010) + [ (Pair 2 2) + 0xaabbcc ] + - location: 20 (just consumed gas: 0.010) + [ 2 + 2 + 0xaabbcc ] + - location: 21 (just consumed gas: 0.026) + [ None ] + - location: 13 (just consumed gas: 0.015) + [ None ] + - location: 22 (just consumed gas: 0.010) + [ {} + None ] + - location: 24 (just consumed gas: 0.010) + [ (Pair {} None) ] + diff --git a/tests_python/tests_alpha/test_contract_opcodes.py b/tests_python/tests_alpha/test_contract_opcodes.py index e536bbebf450..7f795693b9c4 100644 --- a/tests_python/tests_alpha/test_contract_opcodes.py +++ b/tests_python/tests_alpha/test_contract_opcodes.py @@ -89,7 +89,8 @@ class TestContractOpcodes: ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 2', '(Some 0xbbcc)'), ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 3', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), + ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 1', '(Some 0xcc)'), + ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 2', 'None'), # Stress-test the failure case of slice for a # non-trivial gas consumption ( -- GitLab From afb9bd0a08bd325868a29eaaf42a4bba92d609ca Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Thu, 13 Oct 2022 09:51:54 +0200 Subject: [PATCH 03/17] Tests/Python: test_contract_opcodes: fix get_and_update_map test --- ...e { Elt \"1\" 1 ; .d8b5ad10cc.out" | 20 +++++++++---------- ...e { Elt \"1\" 1 ; .dea86c763f.out" | 2 +- .../tests_014/test_contract_opcodes.py | 4 ++-- ...e { Elt \"1\" 1 ; .d8b5ad10cc.out" | 20 +++++++++---------- ...e { Elt \"1\" 1 ; .dea86c763f.out" | 2 +- .../tests_015/test_contract_opcodes.py | 4 ++-- ...e { Elt \"1\" 1 ; .d8b5ad10cc.out" | 20 +++++++++---------- ...e { Elt \"1\" 1 ; .dea86c763f.out" | 2 +- .../tests_alpha/test_contract_opcodes.py | 4 ++-- 9 files changed, 39 insertions(+), 39 deletions(-) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" => "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" (74%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" => "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" (94%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" => "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" (74%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" => "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" (94%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" => "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" (70%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" => "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" (93%) diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" "b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" similarity index 74% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" rename to "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" index b05efa149afd..ee8682f9c355 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" +++ "b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" @@ -1,16 +1,16 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })0] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"2"-(Pair (Some 2) { Elt "1" 1 })] storage - (Pair (Some 1) { Elt "2" 2 }) + (Pair (Some 2) { Elt "1" 1 }) emitted operations big_map diff trace - location: 13 (remaining gas: 1039991.367 units remaining) - [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] + [ (Pair "2" None { Elt "1" 1 ; Elt "2" 2 }) ] - location: 13 (remaining gas: 1039991.357 units remaining) - [ "1" + [ "2" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - location: 14 (remaining gas: 1039991.357 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] @@ -18,17 +18,17 @@ trace [ None { Elt "1" 1 ; Elt "2" 2 } ] - location: 14 (remaining gas: 1039991.327 units remaining) - [ "1" + [ "2" None { Elt "1" 1 ; Elt "2" 2 } ] - location: 17 (remaining gas: 1039991.238 units remaining) - [ (Some 1) - { Elt "2" 2 } ] + [ (Some 2) + { Elt "1" 1 } ] - location: 18 (remaining gas: 1039991.228 units remaining) - [ (Pair (Some 1) { Elt "2" 2 }) ] + [ (Pair (Some 2) { Elt "1" 1 }) ] - location: 19 (remaining gas: 1039991.218 units remaining) [ {} - (Pair (Some 1) { Elt "2" 2 }) ] + (Pair (Some 2) { Elt "1" 1 }) ] - location: 21 (remaining gas: 1039991.208 units remaining) - [ (Pair {} (Some 1) { Elt "2" 2 }) ] + [ (Pair {} (Some 2) { Elt "1" 1 }) ] diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" "b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" similarity index 94% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" rename to "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" index ba438d10d517..d29ff9200b0e 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" +++ "b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" @@ -1,4 +1,4 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })1] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })] storage (Pair (Some 1) { Elt "2" 2 }) diff --git a/tests_python/tests_014/test_contract_opcodes.py b/tests_python/tests_014/test_contract_opcodes.py index 7f795693b9c4..59e553af4e24 100644 --- a/tests_python/tests_014/test_contract_opcodes.py +++ b/tests_python/tests_014/test_contract_opcodes.py @@ -612,8 +612,8 @@ class TestContractOpcodes: 'get_and_update_map.tz', '(Pair None { Elt "1" 1 ; \ Elt "2" 2 })', - '"1"', - '(Pair (Some 1) { Elt "2" 2 })', + '"2"', + '(Pair (Some 2) { Elt "1" 1 })', ), # Map iter ( diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" "b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" similarity index 74% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" rename to "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" index e8030bd09312..290f6b14fac9 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" +++ "b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" @@ -1,16 +1,16 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })0] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"2"-(Pair (Some 2) { Elt "1" 1 })] storage - (Pair (Some 1) { Elt "2" 2 }) + (Pair (Some 2) { Elt "1" 1 }) emitted operations big_map diff trace - location: 13 (remaining gas: 1039991.412 units remaining) - [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] + [ (Pair "2" None { Elt "1" 1 ; Elt "2" 2 }) ] - location: 13 (remaining gas: 1039991.402 units remaining) - [ "1" + [ "2" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - location: 14 (remaining gas: 1039991.402 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] @@ -18,17 +18,17 @@ trace [ None { Elt "1" 1 ; Elt "2" 2 } ] - location: 14 (remaining gas: 1039991.367 units remaining) - [ "1" + [ "2" None { Elt "1" 1 ; Elt "2" 2 } ] - location: 17 (remaining gas: 1039991.278 units remaining) - [ (Some 1) - { Elt "2" 2 } ] + [ (Some 2) + { Elt "1" 1 } ] - location: 18 (remaining gas: 1039991.268 units remaining) - [ (Pair (Some 1) { Elt "2" 2 }) ] + [ (Pair (Some 2) { Elt "1" 1 }) ] - location: 19 (remaining gas: 1039991.258 units remaining) [ {} - (Pair (Some 1) { Elt "2" 2 }) ] + (Pair (Some 2) { Elt "1" 1 }) ] - location: 21 (remaining gas: 1039991.248 units remaining) - [ (Pair {} (Some 1) { Elt "2" 2 }) ] + [ (Pair {} (Some 2) { Elt "1" 1 }) ] diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" "b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" similarity index 94% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" rename to "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" index 4978a1d84057..0379a50e943e 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" +++ "b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" @@ -1,4 +1,4 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })1] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })] storage (Pair (Some 1) { Elt "2" 2 }) diff --git a/tests_python/tests_015/test_contract_opcodes.py b/tests_python/tests_015/test_contract_opcodes.py index 7f795693b9c4..59e553af4e24 100644 --- a/tests_python/tests_015/test_contract_opcodes.py +++ b/tests_python/tests_015/test_contract_opcodes.py @@ -612,8 +612,8 @@ class TestContractOpcodes: 'get_and_update_map.tz', '(Pair None { Elt "1" 1 ; \ Elt "2" 2 })', - '"1"', - '(Pair (Some 1) { Elt "2" 2 })', + '"2"', + '(Pair (Some 2) { Elt "1" 1 })', ), # Map iter ( diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" similarity index 70% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" rename to "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" index 4395e478bf74..c09965f320c4 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" @@ -1,16 +1,16 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })0] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"2"-(Pair (Some 2) { Elt "1" 1 })] storage - (Pair (Some 1) { Elt "2" 2 }) + (Pair (Some 2) { Elt "1" 1 }) emitted operations big_map diff trace - location: 13 (just consumed gas: 8.588) - [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] + [ (Pair "2" None { Elt "1" 1 ; Elt "2" 2 }) ] - location: 13 (just consumed gas: 0.010) - [ "1" + [ "2" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - location: 14 (just consumed gas: 0) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] @@ -18,17 +18,17 @@ trace [ None { Elt "1" 1 ; Elt "2" 2 } ] - location: 14 (just consumed gas: 0.025) - [ "1" + [ "2" None { Elt "1" 1 ; Elt "2" 2 } ] - location: 17 (just consumed gas: 0.089) - [ (Some 1) - { Elt "2" 2 } ] + [ (Some 2) + { Elt "1" 1 } ] - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 1) { Elt "2" 2 }) ] + [ (Pair (Some 2) { Elt "1" 1 }) ] - location: 19 (just consumed gas: 0.010) [ {} - (Pair (Some 1) { Elt "2" 2 }) ] + (Pair (Some 2) { Elt "1" 1 }) ] - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 1) { Elt "2" 2 }) ] + [ (Pair {} (Some 2) { Elt "1" 1 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" similarity index 93% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" rename to "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" index 622b2279e60e..c78ea234a5cd 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" @@ -1,4 +1,4 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })1] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })] storage (Pair (Some 1) { Elt "2" 2 }) diff --git a/tests_python/tests_alpha/test_contract_opcodes.py b/tests_python/tests_alpha/test_contract_opcodes.py index 7f795693b9c4..59e553af4e24 100644 --- a/tests_python/tests_alpha/test_contract_opcodes.py +++ b/tests_python/tests_alpha/test_contract_opcodes.py @@ -612,8 +612,8 @@ class TestContractOpcodes: 'get_and_update_map.tz', '(Pair None { Elt "1" 1 ; \ Elt "2" 2 })', - '"1"', - '(Pair (Some 1) { Elt "2" 2 })', + '"2"', + '(Pair (Some 2) { Elt "1" 1 })', ), # Map iter ( -- GitLab From 9ede5a381bfef80e65615e0ebeb5938e7a1ba678 Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Thu, 13 Oct 2022 09:51:09 +0200 Subject: [PATCH 04/17] Tests/Python: test_contract_opcodes: delete duplicate big_map_mem_nat --- ...t 0 1 } None)-1-(Pair 4 (S.04e57ae079.out} | 2 +- ...lt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out | 43 ------------------ ...lt 1 0 } None)-1-(Pair 4 (S.73700321f8.out | 43 ------------------ ...t 1 0 } None)-1-(Pair 4 (Some True))].out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out} | 2 +- ...air {} None)-1-(Pair 4 (Some False))1].out | 42 ------------------ ...air {} None)-1-(Pair 4 (Some False))].out} | 2 +- .../tests_014/test_contract_opcodes.py | 37 ---------------- ...t 0 1 } None)-1-(Pair 4 (S.04e57ae079.out} | 2 +- ...lt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out | 43 ------------------ ...lt 1 0 } None)-1-(Pair 4 (S.73700321f8.out | 43 ------------------ ...t 1 0 } None)-1-(Pair 4 (Some True))].out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out} | 2 +- ...air {} None)-1-(Pair 4 (Some False))1].out | 42 ------------------ ...air {} None)-1-(Pair 4 (Some False))].out} | 2 +- .../tests_015/test_contract_opcodes.py | 37 ---------------- ...t 0 1 } None)-1-(Pair 4 (S.04e57ae079.out} | 2 +- ...lt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out | 43 ------------------ ...lt 1 0 } None)-1-(Pair 4 (S.73700321f8.out | 43 ------------------ ...t 1 0 } None)-1-(Pair 4 (Some True))].out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out} | 2 +- ...lt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out | 44 ------------------- ...t 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out} | 2 +- ...air {} None)-1-(Pair 4 (Some False))1].out | 42 ------------------ ...air {} None)-1-(Pair 4 (Some False))].out} | 2 +- .../tests_alpha/test_contract_opcodes.py | 37 ---------------- 39 files changed, 18 insertions(+), 909 deletions(-) rename tests_python/tests_014/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out} (98%) delete mode 100644 tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out delete mode 100644 tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out rename tests_python/tests_014/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out} (98%) delete mode 100644 tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out rename tests_python/tests_014/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out} (97%) delete mode 100644 tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out rename tests_python/tests_014/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out} (97%) delete mode 100644 tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out rename tests_python/tests_014/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out} (97%) delete mode 100644 tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out rename tests_python/tests_014/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out} (98%) rename tests_python/tests_015/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out} (98%) delete mode 100644 tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out delete mode 100644 tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out rename tests_python/tests_015/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out} (98%) delete mode 100644 tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out rename tests_python/tests_015/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out} (97%) delete mode 100644 tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out rename tests_python/tests_015/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out} (97%) delete mode 100644 tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out rename tests_python/tests_015/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out} (97%) delete mode 100644 tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out rename tests_python/tests_015/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out} (98%) rename tests_python/tests_alpha/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out} (97%) delete mode 100644 tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out delete mode 100644 tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out rename tests_python/tests_alpha/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out} (97%) delete mode 100644 tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out rename tests_python/tests_alpha/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out} (97%) delete mode 100644 tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out rename tests_python/tests_alpha/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out} (97%) delete mode 100644 tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out rename tests_python/tests_alpha/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out} (97%) delete mode 100644 tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out rename tests_python/tests_alpha/_regtest_outputs/{test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out => test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out} (98%) diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out rename to tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out index a061582e750d..4c438c5f7d20 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out @@ -1,4 +1,4 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))1] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out deleted file mode 100644 index fde900be0a61..000000000000 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out +++ /dev/null @@ -1,43 +0,0 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))0] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[0] to 1 -trace - - location: 12 (remaining gas: 1039989.101 units remaining) - [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039989.091 units remaining) - [ 1 - (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039989.091 units remaining) - [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039989.081 units remaining) - [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039989.071 units remaining) - [ { Elt 0 1 } - { Elt 0 1 } ] - - location: 13 (remaining gas: 1039989.051 units remaining) - [ 1 - { Elt 0 1 } - { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.343 units remaining) - [ False - { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.333 units remaining) - [ (Some False) - { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.323 units remaining) - [ { Elt 0 1 } - (Some False) ] - - location: 20 (remaining gas: 1039988.313 units remaining) - [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.303 units remaining) - [ {} - (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.293 units remaining) - [ (Pair {} { Elt 0 1 } (Some False)) ] - diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out deleted file mode 100644 index f507bdd1cb8f..000000000000 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out +++ /dev/null @@ -1,43 +0,0 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))0] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 0 -trace - - location: 12 (remaining gas: 1039989.101 units remaining) - [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039989.091 units remaining) - [ 1 - (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039989.091 units remaining) - [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039989.081 units remaining) - [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039989.071 units remaining) - [ { Elt 1 0 } - { Elt 1 0 } ] - - location: 13 (remaining gas: 1039989.051 units remaining) - [ 1 - { Elt 1 0 } - { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.343 units remaining) - [ True - { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.333 units remaining) - [ (Some True) - { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.323 units remaining) - [ { Elt 1 0 } - (Some True) ] - - location: 20 (remaining gas: 1039988.313 units remaining) - [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.303 units remaining) - [ {} - (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.293 units remaining) - [ (Pair {} { Elt 1 0 } (Some True)) ] - diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out rename to tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out index 2430fa99130e..a88d1b58b254 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out @@ -1,4 +1,4 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))1] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out deleted file mode 100644 index 9fbbe7cb6bfa..000000000000 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))1] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (remaining gas: 1039988.145 units remaining) - [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.135 units remaining) - [ 1 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.135 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.125 units remaining) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.115 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.095 units remaining) - [ 1 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.386 units remaining) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.376 units remaining) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.366 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (remaining gas: 1039987.356 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.346 units remaining) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.336 units remaining) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out rename to tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out index 6acf637b8506..68bda3165867 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out @@ -1,4 +1,4 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))0] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out deleted file mode 100644 index 9b633f696de4..000000000000 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))0] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (remaining gas: 1039988.145 units remaining) - [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.135 units remaining) - [ 2 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.135 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.125 units remaining) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.115 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.095 units remaining) - [ 2 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.386 units remaining) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.376 units remaining) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.366 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (remaining gas: 1039987.356 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.346 units remaining) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.336 units remaining) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out rename to tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out index f2b7e6186961..0ed33b5fcb7a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out @@ -1,4 +1,4 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))1] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out deleted file mode 100644 index 94c655b86640..000000000000 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))0] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (remaining gas: 1039988.145 units remaining) - [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.135 units remaining) - [ 3 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.135 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.125 units remaining) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.115 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.095 units remaining) - [ 3 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.386 units remaining) - [ False - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.376 units remaining) - [ (Some False) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.366 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - (Some False) ] - - location: 20 (remaining gas: 1039987.356 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.346 units remaining) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.336 units remaining) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] - diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out rename to tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out index 64d4f5f00d50..52739685a655 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out @@ -1,4 +1,4 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))1] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out deleted file mode 100644 index edd445c45bd4..000000000000 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out +++ /dev/null @@ -1,42 +0,0 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) -trace - - location: 12 (remaining gas: 1039990.019 units remaining) - [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039990.009 units remaining) - [ 1 - (Pair {} None) ] - - location: 13 (remaining gas: 1039990.009 units remaining) - [ (Pair {} None) ] - - location: 15 (remaining gas: 1039989.999 units remaining) - [ {} ] - - location: 16 (remaining gas: 1039989.989 units remaining) - [ {} - {} ] - - location: 13 (remaining gas: 1039989.969 units remaining) - [ 1 - {} - {} ] - - location: 17 (remaining gas: 1039989.263 units remaining) - [ False - {} ] - - location: 18 (remaining gas: 1039989.253 units remaining) - [ (Some False) - {} ] - - location: 19 (remaining gas: 1039989.243 units remaining) - [ {} - (Some False) ] - - location: 20 (remaining gas: 1039989.233 units remaining) - [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.223 units remaining) - [ {} - (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.213 units remaining) - [ (Pair {} {} (Some False)) ] - diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out rename to tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out index bbdb33548c7f..c17c56950da7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out +++ b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out @@ -1,4 +1,4 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0] +tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_014/test_contract_opcodes.py b/tests_python/tests_014/test_contract_opcodes.py index 59e553af4e24..d1ee87aba60c 100644 --- a/tests_python/tests_014/test_contract_opcodes.py +++ b/tests_python/tests_014/test_contract_opcodes.py @@ -394,43 +394,6 @@ class TestContractOpcodes: '"baz"', '(Pair 4 (Some False))', ), - # Memberships in big maps - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair {} None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair 4 (Some False))', - ), # Identity on sets ('set_id.tz', '{}', '{ "a" ; "b" ; "c" }', '{ "a" ; "b" ; "c" }'), ('set_id.tz', '{}', '{}', '{}'), diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out rename to tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out index da6ed45eadcb..63c3e4db1a97 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out @@ -1,4 +1,4 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))1] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out deleted file mode 100644 index 87d39dc9b286..000000000000 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out +++ /dev/null @@ -1,43 +0,0 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))0] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[0] to 1 -trace - - location: 12 (remaining gas: 1039989.157 units remaining) - [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039989.147 units remaining) - [ 1 - (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039989.147 units remaining) - [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039989.137 units remaining) - [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039989.127 units remaining) - [ { Elt 0 1 } - { Elt 0 1 } ] - - location: 13 (remaining gas: 1039989.102 units remaining) - [ 1 - { Elt 0 1 } - { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.380 units remaining) - [ False - { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.370 units remaining) - [ (Some False) - { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.360 units remaining) - [ { Elt 0 1 } - (Some False) ] - - location: 20 (remaining gas: 1039988.350 units remaining) - [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.340 units remaining) - [ {} - (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.330 units remaining) - [ (Pair {} { Elt 0 1 } (Some False)) ] - diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out deleted file mode 100644 index 95c7c63a9070..000000000000 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out +++ /dev/null @@ -1,43 +0,0 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))0] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 0 -trace - - location: 12 (remaining gas: 1039989.132 units remaining) - [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039989.122 units remaining) - [ 1 - (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039989.122 units remaining) - [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039989.112 units remaining) - [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039989.102 units remaining) - [ { Elt 1 0 } - { Elt 1 0 } ] - - location: 13 (remaining gas: 1039989.077 units remaining) - [ 1 - { Elt 1 0 } - { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.355 units remaining) - [ True - { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.345 units remaining) - [ (Some True) - { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.335 units remaining) - [ { Elt 1 0 } - (Some True) ] - - location: 20 (remaining gas: 1039988.325 units remaining) - [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.315 units remaining) - [ {} - (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.305 units remaining) - [ (Pair {} { Elt 1 0 } (Some True)) ] - diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out rename to tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out index 48e67e1ed4cd..a2b52efd2ec8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out @@ -1,4 +1,4 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))1] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out deleted file mode 100644 index fd1c6aa2e568..000000000000 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))1] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (remaining gas: 1039988.162 units remaining) - [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) - [ 1 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) - [ 1 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out rename to tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out index b54c48958945..dca4e17de0f5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out @@ -1,4 +1,4 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))0] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out deleted file mode 100644 index bfc4d8535bbf..000000000000 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))0] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (remaining gas: 1039988.162 units remaining) - [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) - [ 2 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) - [ 2 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (remaining gas: 1039987.354 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out rename to tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out index e0e642657c6a..5a9895d86488 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out @@ -1,4 +1,4 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))1] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out deleted file mode 100644 index eb7092fa80d6..000000000000 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))0] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (remaining gas: 1039988.162 units remaining) - [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.152 units remaining) - [ 3 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.152 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.142 units remaining) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.132 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.107 units remaining) - [ 3 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.384 units remaining) - [ False - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.374 units remaining) - [ (Some False) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.364 units remaining) - [ { Elt 1 4 ; Elt 2 11 } - (Some False) ] - - location: 20 (remaining gas: 1039987.354 units remaining) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.344 units remaining) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.334 units remaining) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] - diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out rename to tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out index 7707fe869af1..dbb47660be72 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out @@ -1,4 +1,4 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))1] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out deleted file mode 100644 index 7a7f3659c4f9..000000000000 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out +++ /dev/null @@ -1,42 +0,0 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) -trace - - location: 12 (remaining gas: 1039990.064 units remaining) - [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039990.054 units remaining) - [ 1 - (Pair {} None) ] - - location: 13 (remaining gas: 1039990.054 units remaining) - [ (Pair {} None) ] - - location: 15 (remaining gas: 1039990.044 units remaining) - [ {} ] - - location: 16 (remaining gas: 1039990.034 units remaining) - [ {} - {} ] - - location: 13 (remaining gas: 1039990.009 units remaining) - [ 1 - {} - {} ] - - location: 17 (remaining gas: 1039989.289 units remaining) - [ False - {} ] - - location: 18 (remaining gas: 1039989.279 units remaining) - [ (Some False) - {} ] - - location: 19 (remaining gas: 1039989.269 units remaining) - [ {} - (Some False) ] - - location: 20 (remaining gas: 1039989.259 units remaining) - [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.249 units remaining) - [ {} - (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.239 units remaining) - [ (Pair {} {} (Some False)) ] - diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out rename to tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out index bc608af6b347..10699a68bf54 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out +++ b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out @@ -1,4 +1,4 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0] +tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_015/test_contract_opcodes.py b/tests_python/tests_015/test_contract_opcodes.py index 59e553af4e24..d1ee87aba60c 100644 --- a/tests_python/tests_015/test_contract_opcodes.py +++ b/tests_python/tests_015/test_contract_opcodes.py @@ -394,43 +394,6 @@ class TestContractOpcodes: '"baz"', '(Pair 4 (Some False))', ), - # Memberships in big maps - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair {} None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair 4 (Some False))', - ), # Identity on sets ('set_id.tz', '{}', '{ "a" ; "b" ; "c" }', '{ "a" ; "b" ; "c" }'), ('set_id.tz', '{}', '{}', '{}'), diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out rename to tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out index 467e607fdf57..a5a1afb3d435 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out @@ -1,4 +1,4 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))1] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out deleted file mode 100644 index 5b5c8f060e33..000000000000 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out +++ /dev/null @@ -1,43 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))0] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[0] to 1 -trace - - location: 12 (just consumed gas: 10.843) - [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 0 1 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 0 1 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 0 1 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 0 1 } - { Elt 0 1 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 0 1 } - { Elt 0 1 } ] - - location: 17 (just consumed gas: 0.722) - [ False - { Elt 0 1 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt 0 1 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 0 1 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 0 1 } (Some False)) ] - diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out deleted file mode 100644 index ffa283d5db7f..000000000000 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out +++ /dev/null @@ -1,43 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))0] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 0 -trace - - location: 12 (just consumed gas: 10.868) - [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 1 0 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 0 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 0 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 0 } - { Elt 1 0 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 1 0 } - { Elt 1 0 } ] - - location: 17 (just consumed gas: 0.722) - [ True - { Elt 1 0 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 0 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 0 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 0 } (Some True)) ] - diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out rename to tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out index 6dc945441fc9..b11b6a5859b6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out @@ -1,4 +1,4 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))1] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out deleted file mode 100644 index 7a4a24be9f6d..000000000000 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))1] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (just consumed gas: 11.838) - [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.723) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out rename to tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out index 85bd38c08f77..e370756fd05c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out @@ -1,4 +1,4 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))0] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out deleted file mode 100644 index b720741dce7c..000000000000 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))0] - -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (just consumed gas: 11.838) - [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 2 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 2 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.723) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out rename to tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out index f7462e05df60..a02e6f0afe27 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out @@ -1,4 +1,4 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))1] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))] storage (Pair 4 (Some True)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out deleted file mode 100644 index 1b5227762a8e..000000000000 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out +++ /dev/null @@ -1,44 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))0] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (just consumed gas: 11.838) - [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 3 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 3 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.723) - [ False - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] - diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out rename to tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out index 4231f0ee0bc8..f3b1f3b51616 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out @@ -1,4 +1,4 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))1] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out deleted file mode 100644 index a344f92e4e59..000000000000 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out +++ /dev/null @@ -1,42 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1] - -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) -trace - - location: 12 (just consumed gas: 9.936) - [ (Pair 1 {} None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair {} None) ] - - location: 13 (just consumed gas: 0) - [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010) - [ {} ] - - location: 16 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0.025) - [ 1 - {} - {} ] - - location: 17 (just consumed gas: 0.720) - [ False - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - {} ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} {} (Some False)) ] - diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out rename to tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out index cdd814b0e06c..57b486ee054c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out @@ -1,4 +1,4 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0] +tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))] storage (Pair 4 (Some False)) diff --git a/tests_python/tests_alpha/test_contract_opcodes.py b/tests_python/tests_alpha/test_contract_opcodes.py index 59e553af4e24..d1ee87aba60c 100644 --- a/tests_python/tests_alpha/test_contract_opcodes.py +++ b/tests_python/tests_alpha/test_contract_opcodes.py @@ -394,43 +394,6 @@ class TestContractOpcodes: '"baz"', '(Pair 4 (Some False))', ), - # Memberships in big maps - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair {} None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair 4 (Some False))', - ), # Identity on sets ('set_id.tz', '{}', '{ "a" ; "b" ; "c" }', '{ "a" ; "b" ; "c" }'), ('set_id.tz', '{}', '{}', '{}'), -- GitLab From 2cb5e7e6f08883ff2d87e235132a9d6b959a988b Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Tue, 1 Nov 2022 09:14:53 +0100 Subject: [PATCH 05/17] Client: add global option [--no-base-dir-warnings] This can be used to disable warnings about missing client data directories as emitted by e.g. [--mode mockup]. --- src/lib_client_base_unix/client_config.ml | 33 ++++++++++++++++------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/src/lib_client_base_unix/client_config.ml b/src/lib_client_base_unix/client_config.ml index 8c0e4727bff9..dfecba430872 100644 --- a/src/lib_client_base_unix/client_config.ml +++ b/src/lib_client_base_unix/client_config.ml @@ -433,6 +433,13 @@ let base_dir_arg () = default_base_dir) (string_parameter ()) +let no_base_dir_warnings_switch () = + Tezos_clic.switch + ~long:"no-base-dir-warnings" + ~short:'n' + ~doc:"silence warnings about client data directory" + () + let config_file_arg () = Tezos_clic.arg ~long:"config-file" @@ -859,8 +866,9 @@ let commands config_file cfg (client_mode : client_mode) ] let global_options () = - Tezos_clic.args18 + Tezos_clic.args19 (base_dir_arg ()) + (no_base_dir_warnings_switch ()) (config_file_arg ()) (timings_switch ()) (chain_arg ()) @@ -903,7 +911,8 @@ let default_parsed_config_args = * (when all/most commands will fail) or emits a warning (some commands may * fail). *) -let check_base_dir_for_mode (ctx : #Client_context.full) client_mode base_dir = +let check_base_dir_for_mode (ctx : #Client_context.full) client_mode + no_base_dir_warnings base_dir = let open Lwt_result_syntax in let open Tezos_mockup.Persistence in let* base_dir_class = classify_base_dir base_dir in @@ -928,12 +937,14 @@ let check_base_dir_for_mode (ctx : #Client_context.full) client_mode base_dir = | `Mode_mockup -> ( let warn_might_not_work explain = let*! () = - ctx#warning - "@[Base directory %s %a@ Some commands (e.g., transfer) might \ - not work correctly.@]" - base_dir - explain - () + if not no_base_dir_warnings then + ctx#warning + "@[Base directory %s %a@ Some commands (e.g., transfer) \ + might not work correctly.@]" + base_dir + explain + () + else Lwt.return_unit in return_unit in @@ -1031,6 +1042,7 @@ let light_mode_checks mode endpoint sources = let parse_config_args (ctx : #Client_context.full) argv = let open Lwt_result_syntax in let* ( ( base_dir, + no_base_dir_warnings, config_file, timings, chain, @@ -1077,7 +1089,9 @@ let parse_config_args (ctx : #Client_context.full) argv = (* In mockup mode base dir may be created automatically. *) return dir) in - let* () = check_base_dir_for_mode ctx client_mode base_dir in + let* () = + check_base_dir_for_mode ctx client_mode no_base_dir_warnings base_dir + in let* () = when_ (Option.is_some sources && client_mode <> `Mode_light) @@ -1219,6 +1233,7 @@ let parse_config_args (ctx : #Client_context.full) argv = type t = string option + * bool * string option * bool * Shell_services.chain -- GitLab From d882ab7439a0603e2552b7070e6fd7f15450e30e Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Tue, 1 Nov 2022 11:00:12 +0100 Subject: [PATCH 06/17] Tezt/Tests: fix rollup regressions to include [--no-base-dir-warnings] --- ...- Submit a batch to an invalid rollup address should fail.out | 1 + ...- Submit a batch to an invalid rollup address should fail.out | 1 + ...- Submit a batch to an invalid rollup address should fail.out | 1 + 3 files changed, 3 insertions(+) diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a batch to an invalid rollup address should fail.out b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a batch to an invalid rollup address should fail.out index e5de7807d387..85195a31084a 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a batch to an invalid rollup address should fail.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a batch to an invalid rollup address should fail.out @@ -16,6 +16,7 @@ To browse the documentation: Global options (must come before the command): -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) + -n --no-base-dir-warnings: silence warnings about client data directory -c --config-file : configuration file -t --timings: show RPC request times --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. diff --git a/tezt/tests/expected/tx_rollup.ml/Kathmandu- Submit a batch to an invalid rollup address should fail.out b/tezt/tests/expected/tx_rollup.ml/Kathmandu- Submit a batch to an invalid rollup address should fail.out index e5de7807d387..85195a31084a 100644 --- a/tezt/tests/expected/tx_rollup.ml/Kathmandu- Submit a batch to an invalid rollup address should fail.out +++ b/tezt/tests/expected/tx_rollup.ml/Kathmandu- Submit a batch to an invalid rollup address should fail.out @@ -16,6 +16,7 @@ To browse the documentation: Global options (must come before the command): -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) + -n --no-base-dir-warnings: silence warnings about client data directory -c --config-file : configuration file -t --timings: show RPC request times --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. diff --git a/tezt/tests/expected/tx_rollup.ml/Lima- Submit a batch to an invalid rollup address should fail.out b/tezt/tests/expected/tx_rollup.ml/Lima- Submit a batch to an invalid rollup address should fail.out index e5de7807d387..85195a31084a 100644 --- a/tezt/tests/expected/tx_rollup.ml/Lima- Submit a batch to an invalid rollup address should fail.out +++ b/tezt/tests/expected/tx_rollup.ml/Lima- Submit a batch to an invalid rollup address should fail.out @@ -16,6 +16,7 @@ To browse the documentation: Global options (must come before the command): -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) + -n --no-base-dir-warnings: silence warnings about client data directory -c --config-file : configuration file -t --timings: show RPC request times --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. -- GitLab From e1779dee609ccce02e3db6f741f6a08e39d791e0 Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Tue, 1 Nov 2022 09:15:02 +0100 Subject: [PATCH 07/17] Tezt/Client: add [--no-base-dir-warnings] to [Client.run_script] --- tezt/lib_tezos/client.ml | 26 +++++++++++++------------- tezt/lib_tezos/client.mli | 2 ++ 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/tezt/lib_tezos/client.ml b/tezt/lib_tezos/client.ml index 4522e69acf8f..c346e7777de4 100644 --- a/tezt/lib_tezos/client.ml +++ b/tezt/lib_tezos/client.ml @@ -1331,17 +1331,16 @@ let stresstest ?endpoint ?source_aliases ?source_pkhs ?source_accounts ?seed client |> Process.check -let spawn_run_script ?hooks ?balance ?self_address ?source ?payer ?gas ~prg - ~storage ~input client = - spawn_command - ?hooks - client - (["run"; "script"; prg; "on"; "storage"; storage; "and"; "input"; input] - @ optional_arg "payer" Fun.id payer - @ optional_arg "source" Fun.id source - @ optional_arg "balance" Tez.to_string balance - @ optional_arg "self-address" Fun.id self_address - @ optional_arg "gas" (fun gas -> string_of_int gas) gas) +let spawn_run_script ?hooks ?(no_base_dir_warnings = false) ?balance + ?self_address ?source ?payer ?gas ~prg ~storage ~input client = + spawn_command ?hooks client + @@ optional_switch "no-base-dir-warnings" no_base_dir_warnings + @ ["run"; "script"; prg; "on"; "storage"; storage; "and"; "input"; input] + @ optional_arg "payer" Fun.id payer + @ optional_arg "source" Fun.id source + @ optional_arg "balance" Tez.to_string balance + @ optional_arg "self-address" Fun.id self_address + @ optional_arg "gas" (fun gas -> string_of_int gas) gas let stresstest_estimate_gas ?endpoint client = let* output = @@ -1378,11 +1377,12 @@ let stresstest_fund_accounts_from_source ?endpoint ~source_key_pkh ?batch_size initial_amount) |> Process.check -let run_script ?hooks ?balance ?self_address ?source ?payer ?gas ~prg ~storage - ~input client = +let run_script ?hooks ?no_base_dir_warnings ?balance ?self_address ?source + ?payer ?gas ~prg ~storage ~input client = let* client_output = spawn_run_script ?hooks + ?no_base_dir_warnings ?balance ?source ?payer diff --git a/tezt/lib_tezos/client.mli b/tezt/lib_tezos/client.mli index 3d8743d84caa..7575c4bdce29 100644 --- a/tezt/lib_tezos/client.mli +++ b/tezt/lib_tezos/client.mli @@ -1081,6 +1081,7 @@ val stresstest_fund_accounts_from_source : Fails if the new storage cannot be extracted from the output. *) val run_script : ?hooks:Process.hooks -> + ?no_base_dir_warnings:bool -> ?balance:Tez.t -> ?self_address:string -> ?source:string -> @@ -1095,6 +1096,7 @@ val run_script : (** Same as [run_script] but do not wait for the process to exit. *) val spawn_run_script : ?hooks:Process.hooks -> + ?no_base_dir_warnings:bool -> ?balance:Tez.t -> ?self_address:string -> ?source:string -> -- GitLab From 73b315bd900b9f6eaa8f4a8492b0850a6fa87637 Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Mon, 3 Oct 2022 10:29:04 +0200 Subject: [PATCH 08/17] Tezt/Client: add [--trace-stack] to [Client.run_script] --- tezt/lib_tezos/client.ml | 7 +++++-- tezt/lib_tezos/client.mli | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/tezt/lib_tezos/client.ml b/tezt/lib_tezos/client.ml index c346e7777de4..0072923037f5 100644 --- a/tezt/lib_tezos/client.ml +++ b/tezt/lib_tezos/client.ml @@ -1332,7 +1332,8 @@ let stresstest ?endpoint ?source_aliases ?source_pkhs ?source_accounts ?seed |> Process.check let spawn_run_script ?hooks ?(no_base_dir_warnings = false) ?balance - ?self_address ?source ?payer ?gas ~prg ~storage ~input client = + ?self_address ?source ?payer ?gas ?(trace_stack = false) ~prg ~storage + ~input client = spawn_command ?hooks client @@ optional_switch "no-base-dir-warnings" no_base_dir_warnings @ ["run"; "script"; prg; "on"; "storage"; storage; "and"; "input"; input] @@ -1341,6 +1342,7 @@ let spawn_run_script ?hooks ?(no_base_dir_warnings = false) ?balance @ optional_arg "balance" Tez.to_string balance @ optional_arg "self-address" Fun.id self_address @ optional_arg "gas" (fun gas -> string_of_int gas) gas + @ optional_switch "trace-stack" trace_stack let stresstest_estimate_gas ?endpoint client = let* output = @@ -1378,7 +1380,7 @@ let stresstest_fund_accounts_from_source ?endpoint ~source_key_pkh ?batch_size |> Process.check let run_script ?hooks ?no_base_dir_warnings ?balance ?self_address ?source - ?payer ?gas ~prg ~storage ~input client = + ?payer ?gas ?trace_stack ~prg ~storage ~input client = let* client_output = spawn_run_script ?hooks @@ -1388,6 +1390,7 @@ let run_script ?hooks ?no_base_dir_warnings ?balance ?self_address ?source ?payer ?self_address ?gas + ?trace_stack ~prg ~storage ~input diff --git a/tezt/lib_tezos/client.mli b/tezt/lib_tezos/client.mli index 7575c4bdce29..6971816731a8 100644 --- a/tezt/lib_tezos/client.mli +++ b/tezt/lib_tezos/client.mli @@ -1087,6 +1087,7 @@ val run_script : ?source:string -> ?payer:string -> ?gas:int -> + ?trace_stack:bool -> prg:string -> storage:string -> input:string -> @@ -1102,6 +1103,7 @@ val spawn_run_script : ?source:string -> ?payer:string -> ?gas:int -> + ?trace_stack:bool -> prg:string -> storage:string -> input:string -> -- GitLab From b9c40745dbaa3a335e10426b25cf71b0547fb98b Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Mon, 3 Oct 2022 10:33:24 +0200 Subject: [PATCH 09/17] Tezt: add [Base.span] --- tezt/lib_core/base.ml | 7 +++++++ tezt/lib_core/base.mli | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/tezt/lib_core/base.ml b/tezt/lib_core/base.ml index e4b7e90b418a..f770053c1358 100644 --- a/tezt/lib_core/base.ml +++ b/tezt/lib_core/base.ml @@ -94,6 +94,13 @@ let rec drop n l = else if n = 0 then l else match l with [] -> [] | _ :: rest -> drop (n - 1) rest +let span pred = + let rec aux acc = function + | x :: xs when pred x -> aux (x :: acc) xs + | l -> (List.rev acc, l) + in + aux [] + let rex ?opts r = (r, Re.compile (Re.Perl.re ?opts r)) let show_rex = fst diff --git a/tezt/lib_core/base.mli b/tezt/lib_core/base.mli index 562ebab995ae..c45c782ed08e 100644 --- a/tezt/lib_core/base.mli +++ b/tezt/lib_core/base.mli @@ -86,6 +86,14 @@ val take : int -> 'a list -> 'a list else the empty list. Raise [invalid_arg] if [n] is negative. *) val drop : int -> 'a list -> 'a list +(** Split a list based on a predicate. + + [span f l] returns a pair of lists [(l1, l2)], where [l1] is the + longest prefix of [l] that satisfies the predicate [f], and [l2] is + the rest of the list. The order of the elements in the input list + is preserved such that [l = l1 @ l2]. *) +val span : ('a -> bool) -> 'a list -> 'a list * 'a list + (** {2 Regular Expressions} *) (** Compiled regular expressions. *) -- GitLab From eb2eceaa60efd928e658e4299b3bc55ce24af08b Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Mon, 3 Oct 2022 10:36:05 +0200 Subject: [PATCH 10/17] Tezt/Client: handle multi-line final storage in [Client.run_script] --- tezt/lib_tezos/client.ml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/tezt/lib_tezos/client.ml b/tezt/lib_tezos/client.ml index 0072923037f5..6561d0e1ef86 100644 --- a/tezt/lib_tezos/client.ml +++ b/tezt/lib_tezos/client.ml @@ -1397,12 +1397,21 @@ let run_script ?hooks ?no_base_dir_warnings ?balance ?self_address ?source client |> Process.check_and_read_stdout in - match client_output =~* rex "storage\n(.*)" with - | None -> + (* Extract the final storage, which is between the 'storage' and + 'emitted operations' line in [client_output] *) + let client_output_lines = String.split_on_char '\n' client_output in + let _header, tail = + span (fun line -> not (String.equal "storage" line)) client_output_lines + in + let storage, _tail = + span (fun line -> not (String.equal "emitted operations" line)) tail + in + match storage with + | "storage" :: storage -> return @@ String.trim (String.concat "\n" storage) + | _ -> Test.fail "Cannot extract new storage from client_output: %s" client_output - | Some storage -> return @@ String.trim storage let spawn_register_global_constant ?(wait = "none") ?burn_cap ~value ~src client = -- GitLab From 336502ca1c7faab63508a931546843eb702a482b Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Thu, 13 Oct 2022 14:40:52 +0200 Subject: [PATCH 11/17] Tezt/Client: add [protocol_hash] to [Client.(spawn_)run_script] --- tezt/lib_tezos/client.ml | 13 +++++++------ tezt/lib_tezos/client.mli | 2 ++ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/tezt/lib_tezos/client.ml b/tezt/lib_tezos/client.ml index 6561d0e1ef86..0afc2e97f440 100644 --- a/tezt/lib_tezos/client.ml +++ b/tezt/lib_tezos/client.ml @@ -1331,10 +1331,10 @@ let stresstest ?endpoint ?source_aliases ?source_pkhs ?source_accounts ?seed client |> Process.check -let spawn_run_script ?hooks ?(no_base_dir_warnings = false) ?balance - ?self_address ?source ?payer ?gas ?(trace_stack = false) ~prg ~storage - ~input client = - spawn_command ?hooks client +let spawn_run_script ?hooks ?protocol_hash ?(no_base_dir_warnings = false) + ?balance ?self_address ?source ?payer ?gas ?(trace_stack = false) ~prg + ~storage ~input client = + spawn_command ?hooks ?protocol_hash client @@ optional_switch "no-base-dir-warnings" no_base_dir_warnings @ ["run"; "script"; prg; "on"; "storage"; storage; "and"; "input"; input] @ optional_arg "payer" Fun.id payer @@ -1379,11 +1379,12 @@ let stresstest_fund_accounts_from_source ?endpoint ~source_key_pkh ?batch_size initial_amount) |> Process.check -let run_script ?hooks ?no_base_dir_warnings ?balance ?self_address ?source - ?payer ?gas ?trace_stack ~prg ~storage ~input client = +let run_script ?hooks ?protocol_hash ?no_base_dir_warnings ?balance + ?self_address ?source ?payer ?gas ?trace_stack ~prg ~storage ~input client = let* client_output = spawn_run_script ?hooks + ?protocol_hash ?no_base_dir_warnings ?balance ?source diff --git a/tezt/lib_tezos/client.mli b/tezt/lib_tezos/client.mli index 6971816731a8..fe5baec69168 100644 --- a/tezt/lib_tezos/client.mli +++ b/tezt/lib_tezos/client.mli @@ -1081,6 +1081,7 @@ val stresstest_fund_accounts_from_source : Fails if the new storage cannot be extracted from the output. *) val run_script : ?hooks:Process.hooks -> + ?protocol_hash:string -> ?no_base_dir_warnings:bool -> ?balance:Tez.t -> ?self_address:string -> @@ -1097,6 +1098,7 @@ val run_script : (** Same as [run_script] but do not wait for the process to exit. *) val spawn_run_script : ?hooks:Process.hooks -> + ?protocol_hash:string -> ?no_base_dir_warnings:bool -> ?balance:Tez.t -> ?self_address:string -> -- GitLab From c0fe6aa4a64bc5ae06c7f2aa3a0f75f6a0ddaaab Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Mon, 3 Oct 2022 10:36:54 +0200 Subject: [PATCH 12/17] Tezt: parameterize [Tezos_regression.hooks] --- tezt/lib_tezos/tezos_regression.ml | 11 ++++++++--- tezt/lib_tezos/tezos_regression.mli | 28 +++++++++++++++++++++------- 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/tezt/lib_tezos/tezos_regression.ml b/tezt/lib_tezos/tezos_regression.ml index 934361083d97..774b670a7da1 100644 --- a/tezt/lib_tezos/tezos_regression.ml +++ b/tezt/lib_tezos/tezos_regression.ml @@ -62,7 +62,11 @@ let replace_variables string = string replacements -let hooks = +let scrubbed_global_options = + ["--base-dir"; "-d"; "--endpoint"; "-E"; "--sources"] + +let hooks_custom ?(scrubbed_global_options = scrubbed_global_options) + ?(replace_variables = replace_variables) () = let on_spawn command arguments = (* Remove arguments that shouldn't be captured in regression output. *) let arguments, _ = @@ -72,8 +76,7 @@ let hooks = else match arg with (* scrub client global options *) - | "--base-dir" | "-d" | "--endpoint" | "-E" | "--sources" -> - (acc, true) + | option when List.mem option scrubbed_global_options -> (acc, true) | _ -> (acc @ [replace_variables arg], false)) ([], (* scrub_next *) false) arguments @@ -83,3 +86,5 @@ let hooks = in let on_log output = replace_variables output |> Regression.capture in {Process.on_spawn; on_log} + +let hooks = hooks_custom ~scrubbed_global_options ~replace_variables () diff --git a/tezt/lib_tezos/tezos_regression.mli b/tezt/lib_tezos/tezos_regression.mli index 9a4761e64967..1adf6402a8ac 100644 --- a/tezt/lib_tezos/tezos_regression.mli +++ b/tezt/lib_tezos/tezos_regression.mli @@ -25,14 +25,28 @@ (** Tezos-specific extension for the [Regression] module. *) -(** Hooks that replaces Tezos-specific values with constants. - - They replace public key hashes, public keys, contract hashes, and timestamps. - They also remove command arguments: --base-dir, -d, --endpoint, -E, and - --sources. *) -val hooks : Process.hooks - (** [replace_variables log] returns [log] with all occurrences of variables such as contract addresses, hashes etc. that may change between different runs replaced by constants. *) val replace_variables : string -> string + +(** Custom Tezos-specific regression hooks that replaces Tezos-specific values + with constants. + + [scrubbed_global_options] list of global options to scrub. Default: remove + global options [--base-dir], [-d], [--endpoint], [-E], and [--sources]. + + [replace_variables] is applied to the output and to the argument of each + global option not in [scrubbed_global_options]. Defaults to + {!replace_variables} that replaces key hashes, public keys, contract hashes, + and timestamps. *) +val hooks_custom : + ?scrubbed_global_options:string list -> + ?replace_variables:(string -> string) -> + unit -> + Process.hooks + +(** Hooks that replaces Tezos-specific values with constants. + + This is {!hooks_custom} with the default arguments. *) +val hooks : Process.hooks -- GitLab From b6c1a0fb3226d699e01e03929676baf813a94529 Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Mon, 17 Oct 2022 18:39:42 +0200 Subject: [PATCH 13/17] Tezt/Client: add [--level] to [Client.run_script] --- tezt/lib_tezos/client.ml | 9 ++++++--- tezt/lib_tezos/client.mli | 2 ++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/tezt/lib_tezos/client.ml b/tezt/lib_tezos/client.ml index 0afc2e97f440..78078f18f89c 100644 --- a/tezt/lib_tezos/client.ml +++ b/tezt/lib_tezos/client.ml @@ -1332,8 +1332,8 @@ let stresstest ?endpoint ?source_aliases ?source_pkhs ?source_accounts ?seed |> Process.check let spawn_run_script ?hooks ?protocol_hash ?(no_base_dir_warnings = false) - ?balance ?self_address ?source ?payer ?gas ?(trace_stack = false) ~prg - ~storage ~input client = + ?balance ?self_address ?source ?payer ?gas ?(trace_stack = false) ?level + ~prg ~storage ~input client = spawn_command ?hooks ?protocol_hash client @@ optional_switch "no-base-dir-warnings" no_base_dir_warnings @ ["run"; "script"; prg; "on"; "storage"; storage; "and"; "input"; input] @@ -1342,6 +1342,7 @@ let spawn_run_script ?hooks ?protocol_hash ?(no_base_dir_warnings = false) @ optional_arg "balance" Tez.to_string balance @ optional_arg "self-address" Fun.id self_address @ optional_arg "gas" (fun gas -> string_of_int gas) gas + @ optional_arg "level" string_of_int level @ optional_switch "trace-stack" trace_stack let stresstest_estimate_gas ?endpoint client = @@ -1380,7 +1381,8 @@ let stresstest_fund_accounts_from_source ?endpoint ~source_key_pkh ?batch_size |> Process.check let run_script ?hooks ?protocol_hash ?no_base_dir_warnings ?balance - ?self_address ?source ?payer ?gas ?trace_stack ~prg ~storage ~input client = + ?self_address ?source ?payer ?gas ?trace_stack ?level ~prg ~storage ~input + client = let* client_output = spawn_run_script ?hooks @@ -1392,6 +1394,7 @@ let run_script ?hooks ?protocol_hash ?no_base_dir_warnings ?balance ?self_address ?gas ?trace_stack + ?level ~prg ~storage ~input diff --git a/tezt/lib_tezos/client.mli b/tezt/lib_tezos/client.mli index fe5baec69168..1c6c4290e0eb 100644 --- a/tezt/lib_tezos/client.mli +++ b/tezt/lib_tezos/client.mli @@ -1089,6 +1089,7 @@ val run_script : ?payer:string -> ?gas:int -> ?trace_stack:bool -> + ?level:int -> prg:string -> storage:string -> input:string -> @@ -1106,6 +1107,7 @@ val spawn_run_script : ?payer:string -> ?gas:int -> ?trace_stack:bool -> + ?level:int -> prg:string -> storage:string -> input:string -> -- GitLab From 1ad89f2f61f698796c5faf455f642793fab9499d Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Thu, 13 Oct 2022 10:43:34 +0200 Subject: [PATCH 14/17] Tezt: replace [test_contract_input_output] in [contract_opcodes.ml] --- .../tests_014/test_contract_opcodes.py | 1413 ----------------- .../tests_015/test_contract_opcodes.py | 1413 ----------------- .../tests_alpha/test_contract_opcodes.py | 1413 ----------------- tezt/tests/contract_opcodes.ml | 1063 +++++++++++++ tezt/tests/main.ml | 1 + 5 files changed, 1064 insertions(+), 4239 deletions(-) create mode 100644 tezt/tests/contract_opcodes.ml diff --git a/tests_python/tests_014/test_contract_opcodes.py b/tests_python/tests_014/test_contract_opcodes.py index d1ee87aba60c..7d8d784d5f41 100644 --- a/tests_python/tests_014/test_contract_opcodes.py +++ b/tests_python/tests_014/test_contract_opcodes.py @@ -21,1419 +21,6 @@ PUBLIC_KEY = IDENTITIES['bootstrap1']['public'] class TestContractOpcodes: """Tests for individual opcodes that do not require origination.""" - @pytest.mark.parametrize( - "contract,storage,param,expected", - [ # FORMAT: assert_output contract_file storage input expected_result - # TODO add tests for map_car.tz, subset.tz - # NB: noop.tz is tested in test_basic.sh - ('cons.tz', '{}', '10', '{ 10 }'), - ('cons.tz', '{ 10 }', '-5', '{ -5 ; 10 }'), - ('cons.tz', '{ -5 ; 10 }', '99', '{ 99 ; -5 ; 10 }'), - # Tests on Options - ('none.tz', 'Some 10', 'Unit', 'None'), - ('ret_int.tz', 'None', 'Unit', '(Some 300)'), - # Map block on lists - ('list_map_block.tz', '{0}', '{}', '{}'), - ( - 'list_map_block.tz', - '{0}', - '{ 1 ; 1 ; 1 ; 1 }', - '{ 1 ; 2 ; 3 ; 4 }', - ), - ( - 'list_map_block.tz', - '{0}', - '{ 1 ; 2 ; 3 ; 0 }', - '{ 1 ; 3 ; 5 ; 3 }', - ), - ('emit.tz', 'Unit', 'Unit', 'Unit'), - # Reverse a list - ('reverse.tz', '{""}', '{}', '{}'), - ( - 'reverse.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Reverse using LOOP_LEFT - ('loop_left.tz', '{""}', '{}', '{}'), - ( - 'loop_left.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Identity on strings - ('str_id.tz', 'None', '"Hello"', '(Some "Hello")'), - ('str_id.tz', 'None', '"abcd"', '(Some "abcd")'), - # Slice strings - ('slice.tz', 'None', 'Pair 0 0', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 10 5', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 0 0', '(Some "")'), - ('slice.tz', 'Some "Foo"', 'Pair 0 10', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 0 2', '(Some "Fo")'), - ('slice.tz', 'Some "Foo"', 'Pair 1 3', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 1 1', '(Some "o")'), - # Stress-test the failure case of slice for a - # non-trivial gas consumption - ( - 'slice.tz', - 'Some' + '"' + 'Foo' * 2000 + '"', - 'Pair 1 10000', - 'None', - ), - # Slice bytes - ('slice_bytes.tz', 'None', 'Pair 0 1', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 0 0', '(Some 0x)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 0 1', '(Some 0xaa)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 2', '(Some 0xbbcc)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 3', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 1', '(Some 0xcc)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 2', 'None'), - # Stress-test the failure case of slice for a - # non-trivial gas consumption - ( - 'slice_bytes.tz', - 'Some 0x' + 'aabbcc' * 2000, - 'Pair 1 10000', - 'None', - ), - # Identity on pairs - ( - 'pair_id.tz', - 'None', - '(Pair True False)', - '(Some (Pair True False))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair False True)', - '(Some (Pair False True))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair True True)', - '(Some (Pair True True))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair False False)', - '(Some (Pair False False))', - ), - # Tests CAR and CDR instructions - ('car.tz', '0', '(Pair 34 17)', '34'), - ('cdr.tz', '0', '(Pair 34 17)', '17'), - # Logical not - ('not.tz', 'None', 'True', '(Some False)'), - ('not.tz', 'None', 'False', '(Some True)'), - # Logical and - ('and.tz', 'None', '(Pair False False)', '(Some False)'), - ('and.tz', 'None', '(Pair False True)', '(Some False)'), - ('and.tz', 'None', '(Pair True False)', '(Some False)'), - ('and.tz', 'None', '(Pair True True)', '(Some True)'), - # Logical or - ('or.tz', 'None', '(Pair False False)', '(Some False)'), - ('or.tz', 'None', '(Pair False True)', '(Some True)'), - ('or.tz', 'None', '(Pair True False)', '(Some True)'), - ('or.tz', 'None', '(Pair True True)', '(Some True)'), - # Logical and - ('and_logical_1.tz', 'False', "(Pair False False)", 'False'), - ('and_logical_1.tz', 'False', "(Pair False True)", 'False'), - ('and_logical_1.tz', 'False', "(Pair True False)", 'False'), - ('and_logical_1.tz', 'False', "(Pair True True)", 'True'), - # Binary and - ('and_binary.tz', 'Unit', 'Unit', 'Unit'), - # Binary or - ('or_binary.tz', 'None', '(Pair 4 8)', '(Some 12)'), - ('or_binary.tz', 'None', '(Pair 0 8)', '(Some 8)'), - ('or_binary.tz', 'None', '(Pair 8 0)', '(Some 8)'), - ('or_binary.tz', 'None', '(Pair 15 4)', '(Some 15)'), - ('or_binary.tz', 'None', '(Pair 14 1)', '(Some 15)'), - ('or_binary.tz', 'None', '(Pair 7 7)', '(Some 7)'), - # Binary not - ('not_binary.tz', 'None', '(Left 0)', '(Some -1)'), - ('not_binary.tz', 'None', '(Left 8)', '(Some -9)'), - ('not_binary.tz', 'None', '(Left 7)', '(Some -8)'), - ('not_binary.tz', 'None', '(Left -9)', '(Some 8)'), - ('not_binary.tz', 'None', '(Left -8)', '(Some 7)'), - ('not_binary.tz', 'None', '(Right 0)', '(Some -1)'), - ('not_binary.tz', 'None', '(Right 8)', '(Some -9)'), - ('not_binary.tz', 'None', '(Right 7)', '(Some -8)'), - # XOR - ( - 'xor.tz', - 'None', - 'Left (Pair False False)', - '(Some (Left False))', - ), - ('xor.tz', 'None', 'Left (Pair False True)', '(Some (Left True))'), - ('xor.tz', 'None', 'Left (Pair True False)', '(Some (Left True))'), - ('xor.tz', 'None', 'Left (Pair True True)', '(Some (Left False))'), - ('xor.tz', 'None', 'Right (Pair 0 0)', '(Some (Right 0))'), - ('xor.tz', 'None', 'Right (Pair 0 1)', '(Some (Right 1))'), - ('xor.tz', 'None', 'Right (Pair 1 0)', '(Some (Right 1))'), - ('xor.tz', 'None', 'Right (Pair 1 1)', '(Some (Right 0))'), - ('xor.tz', 'None', 'Right (Pair 42 21)', '(Some (Right 63))'), - ('xor.tz', 'None', 'Right (Pair 42 63)', '(Some (Right 21))'), - # test shifts: LSL & LSR - ('shifts.tz', 'None', '(Left (Pair 8 1))', '(Some 16)'), - ('shifts.tz', 'None', '(Left (Pair 0 0))', '(Some 0)'), - ('shifts.tz', 'None', '(Left (Pair 0 1))', '(Some 0)'), - ('shifts.tz', 'None', '(Left (Pair 1 2))', '(Some 4)'), - ('shifts.tz', 'None', '(Left (Pair 15 2))', '(Some 60)'), - ('shifts.tz', 'None', '(Right (Pair 8 1))', '(Some 4)'), - ('shifts.tz', 'None', '(Right (Pair 0 0))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 0 1))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 1 2))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 15 2))', '(Some 3)'), - # Concatenate all strings of a list into one string - ('concat_list.tz', '""', '{ "a" ; "b" ; "c" }', '"abc"'), - ('concat_list.tz', '""', '{}', '""'), - ( - 'concat_list.tz', - '""', - '{ "Hello" ; " " ; "World" ; "!" }', - '"Hello World!"', - ), - # Concatenate the bytes in storage with all bytes in the given list - ('concat_hello_bytes.tz', '{}', '{ 0xcd }', '{ 0xffcd }'), - ('concat_hello_bytes.tz', '{}', '{}', '{}'), - ( - 'concat_hello_bytes.tz', - '{}', - '{ 0xab ; 0xcd }', - '{ 0xffab ; 0xffcd }', - ), - # Identity on lists - ( - 'list_id.tz', - '{""}', - '{ "1" ; "2" ; "3" }', - '{ "1" ; "2" ; "3" }', - ), - ('list_id.tz', '{""}', '{}', '{}'), - ( - 'list_id.tz', - '{""}', - '{ "a" ; "b" ; "c" }', - '{ "a" ; "b" ; "c" }', - ), - ( - 'list_id_map.tz', - '{""}', - '{ "1" ; "2" ; "3" }', - '{ "1" ; "2" ; "3" }', - ), - ('list_id_map.tz', '{""}', '{}', '{}'), - ( - 'list_id_map.tz', - '{""}', - '{ "a" ; "b" ; "c" }', - '{ "a" ; "b" ; "c" }', - ), - # Identity on maps - ('map_id.tz', '{}', '{ Elt 0 1 }', '{ Elt 0 1 }'), - ('map_id.tz', '{}', '{ Elt 0 0 }', '{ Elt 0 0 }'), - ( - 'map_id.tz', - '{}', - '{ Elt 0 0 ; Elt 3 4 }', - '{ Elt 0 0 ; Elt 3 4 }', - ), - # Memberships in maps - ( - 'map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair { Elt 0 1 } (Some False))', - ), - ('map_mem_nat.tz', '(Pair {} None)', '1', '(Pair {} (Some False))'), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair { Elt 1 0 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "foo" 1 } None)', - '"bar"', - '(Pair { Elt "foo" 1 } (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair {} None)', - '"bar"', - '(Pair {} (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "foo" 0 } None)', - '"foo"', - '(Pair { Elt "foo" 0 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"foo"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"bar"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"baz"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False))', - ), - # Mapping over maps - ('map_map.tz', '{}', '10', '{}'), - ('map_map.tz', '{ Elt "foo" 1 }', '10', '{ Elt "foo" 11 }'), - ( - 'map_map.tz', - '{ Elt "bar" 5 ; Elt "foo" 1 }', - '15', - '{ Elt "bar" 20 ; Elt "foo" 16 }', - ), - # Memberships in big maps - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair {} None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "foo" 1 } None)', - '"bar"', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair {} None)', - '"bar"', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "foo" 0 } None)', - '"foo"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"foo"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"bar"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"baz"', - '(Pair 4 (Some False))', - ), - # Identity on sets - ('set_id.tz', '{}', '{ "a" ; "b" ; "c" }', '{ "a" ; "b" ; "c" }'), - ('set_id.tz', '{}', '{}', '{}'), - ('set_id.tz', '{}', '{ "asdf" ; "bcde" }', '{ "asdf" ; "bcde" }'), - # List concat - ('list_concat.tz', '"abc"', '{ "d" ; "e" ; "f" }', '"abcdef"'), - ('list_concat.tz', '"abc"', '{}', '"abc"'), - ( - 'list_concat_bytes.tz', - '0x00ab', - '{ 0xcd ; 0xef ; 0x00 }', - '0x00abcdef00', - ), - ( - 'list_concat_bytes.tz', - '0x', - '{ 0x00 ; 0x11 ; 0x00 }', - '0x001100', - ), - ('list_concat_bytes.tz', '0xabcd', '{}', '0xabcd'), - ('list_concat_bytes.tz', '0x', '{}', '0x'), - # List iter - ('list_iter.tz', '0', '{ 10 ; 2 ; 1 }', '20'), - ('list_iter.tz', '0', '{ 3 ; 6 ; 9 }', '162'), - # List size - ('list_size.tz', '111', '{}', '0'), - ('list_size.tz', '111', '{ 1 }', '1'), - ('list_size.tz', '111', '{ 1 ; 2 ; 3 }', '3'), - ('list_size.tz', '111', '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }', '6'), - # Set member -- set is in storage - ( - 'set_member.tz', - '(Pair {} None)', - '"Hi"', - '(Pair {} (Some False))', - ), - ( - 'set_member.tz', - '(Pair { "Hi" } None)', - '"Hi"', - '(Pair { "Hi" } (Some True))', - ), - ( - 'set_member.tz', - '(Pair { "Hello" ; "World" } None)', - '""', - '(Pair { "Hello" ; "World" } (Some False))', - ), - # Set size - ('set_size.tz', '111', '{}', '0'), - ('set_size.tz', '111', '{ 1 }', '1'), - ('set_size.tz', '111', '{ 1 ; 2 ; 3 }', '3'), - ('set_size.tz', '111', '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }', '6'), - # Set iter - ('set_iter.tz', '111', '{}', '0'), - ('set_iter.tz', '111', '{ 1 }', '1'), - ('set_iter.tz', '111', '{ -100 ; 1 ; 2 ; 3 }', '-94'), - # Map size - ('map_size.tz', '111', '{}', '0'), - ('map_size.tz', '111', '{ Elt "a" 1 }', '1'), - ( - 'map_size.tz', - '111', - '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }', - '3', - ), - ( - 'map_size.tz', - '111', - '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; \ - Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }', - '6', - ), - # Contains all elements -- does the second list contain - # all of the same elements as the first one? I'm ignoring - # element multiplicity - ('contains_all.tz', 'None', '(Pair {} {})', '(Some True)'), - ( - 'contains_all.tz', - 'None', - '(Pair { "c" } { "B" })', - '(Some False)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "A" } { "B" })', - '(Some False)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" } { "B" })', - '(Some True)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })', - '(Some True)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })', - '(Some True)', - ), - # Concatenate the string in storage with all strings in - # the given list - ('concat_hello.tz', '{}', '{ "World!" }', '{ "Hello World!" }'), - ('concat_hello.tz', '{}', '{}', '{}'), - ( - 'concat_hello.tz', - '{}', - '{ "test1" ; "test2" }', - '{ "Hello test1" ; "Hello test2" }', - ), - # Create an empty map and add a string to it - ('empty_map.tz', '{}', 'Unit', '{ Elt "hello" "world" }'), - # Get the value stored at the given key in the map - ( - 'get_map_value.tz', - '(Pair None { Elt "hello" "hi" })', - '"hello"', - '(Pair (Some "hi") { Elt "hello" "hi" })', - ), - ( - 'get_map_value.tz', - '(Pair None { Elt "hello" "hi" })', - '""', - '(Pair None { Elt "hello" "hi" })', - ), - ( - 'get_map_value.tz', - '(Pair None { Elt "1" "one" ; \ - Elt "2" "two" })', - '"1"', - '(Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" })', - ), - # Get and update the value stored at the given key in the map - ( - 'get_and_update_map.tz', - '(Pair None {})', - '"hello"', - '(Pair None {})', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 4) {})', - '"hello"', - '(Pair None { Elt "hello" 4 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "hello" 4 })', - '"hello"', - '(Pair (Some 4) {})', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 5) { Elt "hello" 4 })', - '"hello"', - '(Pair (Some 4) { Elt "hello" 5 })', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 5) { Elt "hello" 4 })', - '"hi"', - '(Pair None { Elt "hello" 4 ; Elt "hi" 5 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "1" 1 ; \ - Elt "2" 2 })', - '"1"', - '(Pair (Some 1) { Elt "2" 2 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "1" 1 ; \ - Elt "2" 2 })', - '"2"', - '(Pair (Some 2) { Elt "1" 1 })', - ), - # Map iter - ( - 'map_iter.tz', - '(Pair 0 0)', - '{ Elt 0 100 ; Elt 2 100 }', - '(Pair 2 200)', - ), - ( - 'map_iter.tz', - '(Pair 0 0)', - '{ Elt 1 1 ; Elt 2 100 }', - '(Pair 3 101)', - ), - # Return True if True branch of if was taken and False otherwise - ('if.tz', 'None', 'True', '(Some True)'), - ('if.tz', 'None', 'False', '(Some False)'), - # Generate a pair of or types - ('left_right.tz', '(Left "X")', '(Left True)', '(Right True)'), - ('left_right.tz', '(Left "X")', '(Right "a")', '(Left "a")'), - # Reverse a list - ('reverse_loop.tz', '{""}', '{}', '{}'), - ( - 'reverse_loop.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Exec concat contract - ('exec_concat.tz', '"?"', '""', '"_abc"'), - ('exec_concat.tz', '"?"', '"test"', '"test_abc"'), - # Get the current balance of the contract - ('balance.tz', '111', 'Unit', '4000000000000'), - # Get the current level of the block - # Test the produced variable annotation - ('level.tz', '111', 'Unit', '1'), - # Test addition and subtraction on tez - ( - 'tez_add_sub.tz', - 'None', - '(Pair 2000000 1000000)', - '(Some (Pair 3000000 1000000))', - ), - ( - 'tez_add_sub.tz', - 'None', - '(Pair 2310000 1010000)', - '(Some (Pair 3320000 1300000))', - ), - # Test various additions - ('add.tz', 'Unit', 'Unit', 'Unit'), - # Test ABS - ('abs.tz', 'Unit', '12039123919239192312931', 'Unit'), - ('abs.tz', 'Unit', '0', 'Unit'), - ('abs.tz', 'Unit', '948', 'Unit'), - # Test INT - ('int.tz', 'None', '0', '(Some 0)'), - ('int.tz', 'None', '1', '(Some 1)'), - ('int.tz', 'None', '9999', '(Some 9999)'), - # Test DIP - ('dip.tz', '(Pair 0 0)', '(Pair 15 9)', '(Pair 15 24)'), - ('dip.tz', '(Pair 0 0)', '(Pair 1 1)', '(Pair 1 2)'), - # Test get first element of list - ('first.tz', '111', '{ 1 ; 2 ; 3 ; 4 }', '1'), - ('first.tz', '111', '{ 4 }', '4'), - # Hash input string - # Test assumed to be correct -- hash is based on encoding of AST - ( - 'hash_string.tz', - '0x00', - '"abcdefg"', - '0x46fdbcb4ea4eadad5615c' - + 'daa17d67f783e01e21149ce2b27de497600b4cd8f4e', - ), - ( - 'hash_string.tz', - '0x00', - '"12345"', - '0xb4c26c20de52a4eaf0d8a34' - + '0db47ad8cb1e74049570859c9a9a3952b204c772f', - ), - # IF_SOME - ('if_some.tz', '"?"', '(Some "hello")', '"hello"'), - ('if_some.tz', '"?"', 'None', '""'), - # Tests the SET_CAR and SET_CDR instructions - ('set_car.tz', '(Pair "hello" 0)', '"world"', '(Pair "world" 0)'), - ('set_car.tz', '(Pair "hello" 0)', '"abc"', '(Pair "abc" 0)'), - ('set_car.tz', '(Pair "hello" 0)', '""', '(Pair "" 0)'), - ('set_cdr.tz', '(Pair "hello" 0)', '1', '(Pair "hello" 1)'), - ('set_cdr.tz', '(Pair "hello" 500)', '3', '(Pair "hello" 3)'), - ('set_cdr.tz', '(Pair "hello" 7)', '100', '(Pair "hello" 100)'), - # Convert a public key to a public key hash - ( - 'hash_key.tz', - 'None', - '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"', - '(Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")', - ), - ( - 'hash_key.tz', - 'None', - '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"', - '(Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")', - ), - # Test timestamp operations - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair 100 100)', - '(Some "1970-01-01T00:03:20Z")', - ), - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair 100 -100)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair "1970-01-01T00:00:00Z" 0)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair 100 100)', - '(Some "1970-01-01T00:03:20Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair -100 100)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair 0 "1970-01-01T00:00:00Z")', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 100)', - '"1970-01-01T00:00:00Z"', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 -100)', - '"1970-01-01T00:03:20Z"', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 2000000000000000000)', - '-1999999999999999900', - ), - ('diff_timestamps.tz', '111', '(Pair 0 0)', '0'), - ('diff_timestamps.tz', '111', '(Pair 0 1)', '-1'), - ('diff_timestamps.tz', '111', '(Pair 1 0)', '1'), - ( - 'diff_timestamps.tz', - '111', - '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")', - '200', - ), - # Test pack/unpack - ( - 'packunpack_rev.tz', - 'Unit', - '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 ' - + '(Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ' - + '(Pair "2019-09-09T08:35:33Z" ' - + '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))', - 'Unit', - ), - ( - 'packunpack_rev.tz', - 'Unit', - '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 ' - + '(Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ' - + '(Pair "2019-09-09T08:35:33Z" ' - + '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))', - 'Unit', - ), - ( - 'packunpack_rev_cty.tz', - 'Unit', - '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9' - + 'sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAv' - + 'dxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8' - + 'V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmN' - + 'eEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5' - + 'CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair' - + ' { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnz' - + 'ENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; El' - + 't 1 "bar" } { PACK } )))))))))', - 'Unit', - ), - ( - 'packunpack_rev_cty.tz', - 'Unit', - '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9' - + 'sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAv' - + 'dxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8' - + 'V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair {' - + ' } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:' - + '35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))', - 'Unit', - ), - # Test EDIV on nat and int - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair 10 -3)', - '(Pair (Some (Pair -3 1)) (Some (Pair 3 1)) ' - + '(Some (Pair -3 1)) (Some (Pair 3 1)))', - ), - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair 10 0)', - '(Pair None None None None)', - ), - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair -8 2)', - '(Pair (Some (Pair -4 0)) (Some (Pair -4 0)) ' - + '(Some (Pair 4 0)) (Some (Pair 4 0)))', - ), - # Test EDIV on mutez - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 10))', - '(Left (Some (Pair 1 0)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 3))', - '(Left (Some (Pair 3 1)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 0))', - '(Left None)', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 10))', - '(Right (Some (Pair 1 0)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 3))', - '(Right (Some (Pair 3 1)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 0))', - '(Right None)', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 5 (Right 10))', - '(Right (Some (Pair 0 5)))', - ), - # Test compare - ('compare.tz', 'Unit', 'Unit', 'Unit'), - # Test comparison combinators: - # GT, GE, LT, LE, NEQ, EQ - ( - 'comparisons.tz', - '{}', - '{ -9999999; -1 ; 0 ; 1 ; 9999999 }', - '{ ' + '{ False ; False ; False ; True ; True } ;' - "\n" - ' { False ; False ; True ; True ; True } ;' - "\n" - ' { True ; True ; False ; False ; False } ;' - "\n" - ' { True ; True ; True ; False ; False } ;' - "\n" - ' { True ; True ; False ; True ; True } ;' - "\n" - ' { False ; False ; True ; False ; False }' - ' }', - ), - # Test ADDRESS - ( - 'address.tz', - 'None', - '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"', - '(Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")', - ), - # Test (CONTRACT unit) - ( - 'contract.tz', - 'Unit', - '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"', - 'Unit', - ), - # Test create_contract - ( - 'create_contract.tz', - 'None', - 'Unit', - '(Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")', - ), - # Test multiplication - success case (no overflow) - # Failure case is tested in m̀ul_overflow.tz - ('mul.tz', 'Unit', 'Unit', 'Unit'), - # Test NEG - ('neg.tz', '0', '(Left 2)', '-2'), - ('neg.tz', '0', '(Right 2)', '-2'), - ('neg.tz', '0', '(Left 0)', '0'), - ('neg.tz', '0', '(Right 0)', '0'), - ('neg.tz', '0', '(Left -2)', '2'), - # Test DIGN, DUGN, DROPN, DIPN - ('dign.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '5'), - ('dugn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '1'), - ('dropn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '5'), - ('dipn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '6'), - # Test DIGN 17 times. - ( - 'dig_eq.tz', - 'Unit', - '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12' - + ' (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (P' - + 'air 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))', - 'Unit', - ), - ( - 'dig_eq.tz', - 'Unit', - '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (' - + 'Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pa' - + 'ir 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))', - 'Unit', - ), - # Test Partial Exec - ('pexec.tz', '14', '38', '52'), - ('pexec_2.tz', "{ 0 ; 1 ; 2 ; 3}", '4', "{ 0 ; 7 ; 14 ; 21 }"), - # Test CHAIN_ID - ('chain_id_store.tz', 'None', 'Unit', '(Some "NetXdQprcVkpaWU")'), - ( - 'chain_id_store.tz', - '(Some 0x7a06a770)', - 'Unit', - '(Some "NetXdQprcVkpaWU")', - ), - ( - 'chain_id_store.tz', - '(Some "NetXdQprcVkpaWU")', - 'Unit', - '(Some "NetXdQprcVkpaWU")', - ), - # Test SELF - ('self_with_entrypoint.tz', 'Unit', 'Left (Left 0)', 'Unit'), - ('self_with_default_entrypoint.tz', 'Unit', 'Unit', 'Unit'), - # Test SELF_ADDRESS - ('self_address.tz', 'Unit', 'Unit', 'Unit'), - # Test UNPAIR - ('unpair.tz', 'Unit', 'Unit', 'Unit'), - # Test VOTING_POWER - ( - 'voting_power.tz', - '(Pair 0 0)', - f'"{PUBLIC_KEY}"', - '(Pair 4000000000000 20000000000000)', - ), - # Test KECCAK - ( - 'keccak.tz', - 'None', - f'0x{b"Hello, world!".hex()}', - '(Some 0xb6e16d27ac5ab427a7f68900ac5559ce2' - + '72dc6c37c82b3e052246c82244c50e4)', - ), - # Test SHA3 - ( - 'sha3.tz', - 'None', - f'0x{b"Hello, world!".hex()}', - '(Some 0xf345a219da005ebe9c1a1eaad97bbf38' - + 'a10c8473e41d0af7fb617caa0c6aa722)', - ), - # Test COMBs - ('comb.tz', '(Pair 0 0 0)', 'Unit', '(Pair 1 2 3)'), - ('uncomb.tz', '0', '(Pair 1 4 2)', '142'), - ('comb-get.tz', 'Unit', '(Pair 1 4 2 Unit)', 'Unit'), - ('comb-set.tz', '(Pair 1 4 2 Unit)', 'Unit', '(Pair 2 12 8 Unit)'), - ( - 'comb-set-2.tz', - 'None', - '(Pair 1 4 2 Unit)', - '(Some (Pair 2 4 "toto" 0x01))', - ), - # Test DUP n - ('dup-n.tz', 'Unit', 'Unit', 'Unit'), - # Test Sapling - ('sapling_empty_state.tz', '{}', 'Unit', '0'), - # Test building Fr element from nat. - # The initial storage is dropped then any value is valid. - # Random values can be generated using the following OCaml program. - # let r = Bls12_381.Fr.(random ()) in - # let x = Bls12_381.Fr.random () in - # Printf.printf "Param = (Pair %s 0x%s). Result = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes x)))) - # (Hex.(show (of_bytes (Bls12_381.Fr.(to_bytes (mul r x)))))) - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - # The natural is 1 in Fr. - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_fr_z_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test with (positive and negative) integers. - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_fr_z_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-1', - '0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953' - + 'a7ed73', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-42', - '0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a' - + '7ed73', - ), - # Test building Fr element from nat. - # The initial storage is dropped then any value is valid. - # Random values can be generated using the following OCaml program. - # let r = Bls12_381.Fr.(random ()) in - # let x = Bls12_381.Fr.random () in - # Printf.printf "Param = (Pair %s 0x%s). Result = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes x)))) - # (Hex.(show (of_bytes (Bls12_381.Fr.(to_bytes (mul r x)))))) - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - # The natural is 1 in Fr. - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_z_fr_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test with (positive and negative) integers. - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-1', - '0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953' - + 'a7ed73', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-42', - '0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a' - + '7ed73', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_z_fr_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test Fr bytes can be pushed without being padded - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x00 0x00', - '(Some 0x000000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x01 0x00', - '(Some 0x010000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x010000 0x00', - '(Some 0x010000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x010000 0x010000', - '(Some 0x020000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'bls12_381_fr_push_bytes_not_padded.tz', - 'None', - 'Unit', - '(Some 0x000000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'bls12_381_fr_push_nat.tz', - 'None', - 'Unit', - '(Some 0x100000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ('bls12_381_fr_to_int.tz', '0', '0x00', '0'), - ('bls12_381_fr_to_int.tz', '0', '0x01', '1'), - # Generated using - # let r = Bls12_381.Fr.(random ()) in - # Printf.printf "%s = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes r)))) - ( - 'bls12_381_fr_to_int.tz', - '0', - '0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9' - + 'af16c27', - '1783268807701357777652478449446472851821391321341286660405373' - + '5695200962927400', - ), - ( - 'bls12_381_fr_to_int.tz', - '0', - '0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c' - + '0b0719', - '1132026582925658583078152196614952946047676740821044523890286' - + '9222031333517497', - ), - # Mutez -> Fr - ( - 'mutez_to_bls12_381_fr.tz', - '0x02', - '16', - '0x100000000000000000000000000000000000000000000000000000000' - + '0000000', - ), - # # would fail if trying to PACK mutez and UNPACK to Fr - ( - 'mutez_to_bls12_381_fr.tz', - '0x00', - '257', - '0x010100000000000000000000000000000000000000000000000000000' - + '0000000', - ), - # Fr -> Mutez - ('bls12_381_fr_to_mutez.tz', '0', '0x10', '16'), - ], - ) - def test_contract_input_output( - self, - client_regtest: ClientRegression, - contract: str, - storage: str, - param: str, - expected: str, - ): - client = client_regtest - assert contract.endswith( - '.tz' - ), "test contract should have .tz extension" - contract = path.join(OPCODES_CONTRACT_PATH, contract) - run_script_res = client.run_script( - contract, storage, param, trace_stack=True - ) - assert run_script_res.storage == expected - @pytest.mark.parametrize("balance", [0, 0.000001, 0.5, 1, 5, 1000, 8e12]) def test_balance(self, client_regtest: ClientRegression, balance: float): client = client_regtest diff --git a/tests_python/tests_015/test_contract_opcodes.py b/tests_python/tests_015/test_contract_opcodes.py index d1ee87aba60c..7d8d784d5f41 100644 --- a/tests_python/tests_015/test_contract_opcodes.py +++ b/tests_python/tests_015/test_contract_opcodes.py @@ -21,1419 +21,6 @@ PUBLIC_KEY = IDENTITIES['bootstrap1']['public'] class TestContractOpcodes: """Tests for individual opcodes that do not require origination.""" - @pytest.mark.parametrize( - "contract,storage,param,expected", - [ # FORMAT: assert_output contract_file storage input expected_result - # TODO add tests for map_car.tz, subset.tz - # NB: noop.tz is tested in test_basic.sh - ('cons.tz', '{}', '10', '{ 10 }'), - ('cons.tz', '{ 10 }', '-5', '{ -5 ; 10 }'), - ('cons.tz', '{ -5 ; 10 }', '99', '{ 99 ; -5 ; 10 }'), - # Tests on Options - ('none.tz', 'Some 10', 'Unit', 'None'), - ('ret_int.tz', 'None', 'Unit', '(Some 300)'), - # Map block on lists - ('list_map_block.tz', '{0}', '{}', '{}'), - ( - 'list_map_block.tz', - '{0}', - '{ 1 ; 1 ; 1 ; 1 }', - '{ 1 ; 2 ; 3 ; 4 }', - ), - ( - 'list_map_block.tz', - '{0}', - '{ 1 ; 2 ; 3 ; 0 }', - '{ 1 ; 3 ; 5 ; 3 }', - ), - ('emit.tz', 'Unit', 'Unit', 'Unit'), - # Reverse a list - ('reverse.tz', '{""}', '{}', '{}'), - ( - 'reverse.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Reverse using LOOP_LEFT - ('loop_left.tz', '{""}', '{}', '{}'), - ( - 'loop_left.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Identity on strings - ('str_id.tz', 'None', '"Hello"', '(Some "Hello")'), - ('str_id.tz', 'None', '"abcd"', '(Some "abcd")'), - # Slice strings - ('slice.tz', 'None', 'Pair 0 0', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 10 5', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 0 0', '(Some "")'), - ('slice.tz', 'Some "Foo"', 'Pair 0 10', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 0 2', '(Some "Fo")'), - ('slice.tz', 'Some "Foo"', 'Pair 1 3', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 1 1', '(Some "o")'), - # Stress-test the failure case of slice for a - # non-trivial gas consumption - ( - 'slice.tz', - 'Some' + '"' + 'Foo' * 2000 + '"', - 'Pair 1 10000', - 'None', - ), - # Slice bytes - ('slice_bytes.tz', 'None', 'Pair 0 1', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 0 0', '(Some 0x)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 0 1', '(Some 0xaa)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 2', '(Some 0xbbcc)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 3', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 1', '(Some 0xcc)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 2', 'None'), - # Stress-test the failure case of slice for a - # non-trivial gas consumption - ( - 'slice_bytes.tz', - 'Some 0x' + 'aabbcc' * 2000, - 'Pair 1 10000', - 'None', - ), - # Identity on pairs - ( - 'pair_id.tz', - 'None', - '(Pair True False)', - '(Some (Pair True False))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair False True)', - '(Some (Pair False True))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair True True)', - '(Some (Pair True True))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair False False)', - '(Some (Pair False False))', - ), - # Tests CAR and CDR instructions - ('car.tz', '0', '(Pair 34 17)', '34'), - ('cdr.tz', '0', '(Pair 34 17)', '17'), - # Logical not - ('not.tz', 'None', 'True', '(Some False)'), - ('not.tz', 'None', 'False', '(Some True)'), - # Logical and - ('and.tz', 'None', '(Pair False False)', '(Some False)'), - ('and.tz', 'None', '(Pair False True)', '(Some False)'), - ('and.tz', 'None', '(Pair True False)', '(Some False)'), - ('and.tz', 'None', '(Pair True True)', '(Some True)'), - # Logical or - ('or.tz', 'None', '(Pair False False)', '(Some False)'), - ('or.tz', 'None', '(Pair False True)', '(Some True)'), - ('or.tz', 'None', '(Pair True False)', '(Some True)'), - ('or.tz', 'None', '(Pair True True)', '(Some True)'), - # Logical and - ('and_logical_1.tz', 'False', "(Pair False False)", 'False'), - ('and_logical_1.tz', 'False', "(Pair False True)", 'False'), - ('and_logical_1.tz', 'False', "(Pair True False)", 'False'), - ('and_logical_1.tz', 'False', "(Pair True True)", 'True'), - # Binary and - ('and_binary.tz', 'Unit', 'Unit', 'Unit'), - # Binary or - ('or_binary.tz', 'None', '(Pair 4 8)', '(Some 12)'), - ('or_binary.tz', 'None', '(Pair 0 8)', '(Some 8)'), - ('or_binary.tz', 'None', '(Pair 8 0)', '(Some 8)'), - ('or_binary.tz', 'None', '(Pair 15 4)', '(Some 15)'), - ('or_binary.tz', 'None', '(Pair 14 1)', '(Some 15)'), - ('or_binary.tz', 'None', '(Pair 7 7)', '(Some 7)'), - # Binary not - ('not_binary.tz', 'None', '(Left 0)', '(Some -1)'), - ('not_binary.tz', 'None', '(Left 8)', '(Some -9)'), - ('not_binary.tz', 'None', '(Left 7)', '(Some -8)'), - ('not_binary.tz', 'None', '(Left -9)', '(Some 8)'), - ('not_binary.tz', 'None', '(Left -8)', '(Some 7)'), - ('not_binary.tz', 'None', '(Right 0)', '(Some -1)'), - ('not_binary.tz', 'None', '(Right 8)', '(Some -9)'), - ('not_binary.tz', 'None', '(Right 7)', '(Some -8)'), - # XOR - ( - 'xor.tz', - 'None', - 'Left (Pair False False)', - '(Some (Left False))', - ), - ('xor.tz', 'None', 'Left (Pair False True)', '(Some (Left True))'), - ('xor.tz', 'None', 'Left (Pair True False)', '(Some (Left True))'), - ('xor.tz', 'None', 'Left (Pair True True)', '(Some (Left False))'), - ('xor.tz', 'None', 'Right (Pair 0 0)', '(Some (Right 0))'), - ('xor.tz', 'None', 'Right (Pair 0 1)', '(Some (Right 1))'), - ('xor.tz', 'None', 'Right (Pair 1 0)', '(Some (Right 1))'), - ('xor.tz', 'None', 'Right (Pair 1 1)', '(Some (Right 0))'), - ('xor.tz', 'None', 'Right (Pair 42 21)', '(Some (Right 63))'), - ('xor.tz', 'None', 'Right (Pair 42 63)', '(Some (Right 21))'), - # test shifts: LSL & LSR - ('shifts.tz', 'None', '(Left (Pair 8 1))', '(Some 16)'), - ('shifts.tz', 'None', '(Left (Pair 0 0))', '(Some 0)'), - ('shifts.tz', 'None', '(Left (Pair 0 1))', '(Some 0)'), - ('shifts.tz', 'None', '(Left (Pair 1 2))', '(Some 4)'), - ('shifts.tz', 'None', '(Left (Pair 15 2))', '(Some 60)'), - ('shifts.tz', 'None', '(Right (Pair 8 1))', '(Some 4)'), - ('shifts.tz', 'None', '(Right (Pair 0 0))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 0 1))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 1 2))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 15 2))', '(Some 3)'), - # Concatenate all strings of a list into one string - ('concat_list.tz', '""', '{ "a" ; "b" ; "c" }', '"abc"'), - ('concat_list.tz', '""', '{}', '""'), - ( - 'concat_list.tz', - '""', - '{ "Hello" ; " " ; "World" ; "!" }', - '"Hello World!"', - ), - # Concatenate the bytes in storage with all bytes in the given list - ('concat_hello_bytes.tz', '{}', '{ 0xcd }', '{ 0xffcd }'), - ('concat_hello_bytes.tz', '{}', '{}', '{}'), - ( - 'concat_hello_bytes.tz', - '{}', - '{ 0xab ; 0xcd }', - '{ 0xffab ; 0xffcd }', - ), - # Identity on lists - ( - 'list_id.tz', - '{""}', - '{ "1" ; "2" ; "3" }', - '{ "1" ; "2" ; "3" }', - ), - ('list_id.tz', '{""}', '{}', '{}'), - ( - 'list_id.tz', - '{""}', - '{ "a" ; "b" ; "c" }', - '{ "a" ; "b" ; "c" }', - ), - ( - 'list_id_map.tz', - '{""}', - '{ "1" ; "2" ; "3" }', - '{ "1" ; "2" ; "3" }', - ), - ('list_id_map.tz', '{""}', '{}', '{}'), - ( - 'list_id_map.tz', - '{""}', - '{ "a" ; "b" ; "c" }', - '{ "a" ; "b" ; "c" }', - ), - # Identity on maps - ('map_id.tz', '{}', '{ Elt 0 1 }', '{ Elt 0 1 }'), - ('map_id.tz', '{}', '{ Elt 0 0 }', '{ Elt 0 0 }'), - ( - 'map_id.tz', - '{}', - '{ Elt 0 0 ; Elt 3 4 }', - '{ Elt 0 0 ; Elt 3 4 }', - ), - # Memberships in maps - ( - 'map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair { Elt 0 1 } (Some False))', - ), - ('map_mem_nat.tz', '(Pair {} None)', '1', '(Pair {} (Some False))'), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair { Elt 1 0 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "foo" 1 } None)', - '"bar"', - '(Pair { Elt "foo" 1 } (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair {} None)', - '"bar"', - '(Pair {} (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "foo" 0 } None)', - '"foo"', - '(Pair { Elt "foo" 0 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"foo"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"bar"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"baz"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False))', - ), - # Mapping over maps - ('map_map.tz', '{}', '10', '{}'), - ('map_map.tz', '{ Elt "foo" 1 }', '10', '{ Elt "foo" 11 }'), - ( - 'map_map.tz', - '{ Elt "bar" 5 ; Elt "foo" 1 }', - '15', - '{ Elt "bar" 20 ; Elt "foo" 16 }', - ), - # Memberships in big maps - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair {} None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "foo" 1 } None)', - '"bar"', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair {} None)', - '"bar"', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "foo" 0 } None)', - '"foo"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"foo"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"bar"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"baz"', - '(Pair 4 (Some False))', - ), - # Identity on sets - ('set_id.tz', '{}', '{ "a" ; "b" ; "c" }', '{ "a" ; "b" ; "c" }'), - ('set_id.tz', '{}', '{}', '{}'), - ('set_id.tz', '{}', '{ "asdf" ; "bcde" }', '{ "asdf" ; "bcde" }'), - # List concat - ('list_concat.tz', '"abc"', '{ "d" ; "e" ; "f" }', '"abcdef"'), - ('list_concat.tz', '"abc"', '{}', '"abc"'), - ( - 'list_concat_bytes.tz', - '0x00ab', - '{ 0xcd ; 0xef ; 0x00 }', - '0x00abcdef00', - ), - ( - 'list_concat_bytes.tz', - '0x', - '{ 0x00 ; 0x11 ; 0x00 }', - '0x001100', - ), - ('list_concat_bytes.tz', '0xabcd', '{}', '0xabcd'), - ('list_concat_bytes.tz', '0x', '{}', '0x'), - # List iter - ('list_iter.tz', '0', '{ 10 ; 2 ; 1 }', '20'), - ('list_iter.tz', '0', '{ 3 ; 6 ; 9 }', '162'), - # List size - ('list_size.tz', '111', '{}', '0'), - ('list_size.tz', '111', '{ 1 }', '1'), - ('list_size.tz', '111', '{ 1 ; 2 ; 3 }', '3'), - ('list_size.tz', '111', '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }', '6'), - # Set member -- set is in storage - ( - 'set_member.tz', - '(Pair {} None)', - '"Hi"', - '(Pair {} (Some False))', - ), - ( - 'set_member.tz', - '(Pair { "Hi" } None)', - '"Hi"', - '(Pair { "Hi" } (Some True))', - ), - ( - 'set_member.tz', - '(Pair { "Hello" ; "World" } None)', - '""', - '(Pair { "Hello" ; "World" } (Some False))', - ), - # Set size - ('set_size.tz', '111', '{}', '0'), - ('set_size.tz', '111', '{ 1 }', '1'), - ('set_size.tz', '111', '{ 1 ; 2 ; 3 }', '3'), - ('set_size.tz', '111', '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }', '6'), - # Set iter - ('set_iter.tz', '111', '{}', '0'), - ('set_iter.tz', '111', '{ 1 }', '1'), - ('set_iter.tz', '111', '{ -100 ; 1 ; 2 ; 3 }', '-94'), - # Map size - ('map_size.tz', '111', '{}', '0'), - ('map_size.tz', '111', '{ Elt "a" 1 }', '1'), - ( - 'map_size.tz', - '111', - '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }', - '3', - ), - ( - 'map_size.tz', - '111', - '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; \ - Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }', - '6', - ), - # Contains all elements -- does the second list contain - # all of the same elements as the first one? I'm ignoring - # element multiplicity - ('contains_all.tz', 'None', '(Pair {} {})', '(Some True)'), - ( - 'contains_all.tz', - 'None', - '(Pair { "c" } { "B" })', - '(Some False)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "A" } { "B" })', - '(Some False)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" } { "B" })', - '(Some True)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })', - '(Some True)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })', - '(Some True)', - ), - # Concatenate the string in storage with all strings in - # the given list - ('concat_hello.tz', '{}', '{ "World!" }', '{ "Hello World!" }'), - ('concat_hello.tz', '{}', '{}', '{}'), - ( - 'concat_hello.tz', - '{}', - '{ "test1" ; "test2" }', - '{ "Hello test1" ; "Hello test2" }', - ), - # Create an empty map and add a string to it - ('empty_map.tz', '{}', 'Unit', '{ Elt "hello" "world" }'), - # Get the value stored at the given key in the map - ( - 'get_map_value.tz', - '(Pair None { Elt "hello" "hi" })', - '"hello"', - '(Pair (Some "hi") { Elt "hello" "hi" })', - ), - ( - 'get_map_value.tz', - '(Pair None { Elt "hello" "hi" })', - '""', - '(Pair None { Elt "hello" "hi" })', - ), - ( - 'get_map_value.tz', - '(Pair None { Elt "1" "one" ; \ - Elt "2" "two" })', - '"1"', - '(Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" })', - ), - # Get and update the value stored at the given key in the map - ( - 'get_and_update_map.tz', - '(Pair None {})', - '"hello"', - '(Pair None {})', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 4) {})', - '"hello"', - '(Pair None { Elt "hello" 4 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "hello" 4 })', - '"hello"', - '(Pair (Some 4) {})', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 5) { Elt "hello" 4 })', - '"hello"', - '(Pair (Some 4) { Elt "hello" 5 })', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 5) { Elt "hello" 4 })', - '"hi"', - '(Pair None { Elt "hello" 4 ; Elt "hi" 5 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "1" 1 ; \ - Elt "2" 2 })', - '"1"', - '(Pair (Some 1) { Elt "2" 2 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "1" 1 ; \ - Elt "2" 2 })', - '"2"', - '(Pair (Some 2) { Elt "1" 1 })', - ), - # Map iter - ( - 'map_iter.tz', - '(Pair 0 0)', - '{ Elt 0 100 ; Elt 2 100 }', - '(Pair 2 200)', - ), - ( - 'map_iter.tz', - '(Pair 0 0)', - '{ Elt 1 1 ; Elt 2 100 }', - '(Pair 3 101)', - ), - # Return True if True branch of if was taken and False otherwise - ('if.tz', 'None', 'True', '(Some True)'), - ('if.tz', 'None', 'False', '(Some False)'), - # Generate a pair of or types - ('left_right.tz', '(Left "X")', '(Left True)', '(Right True)'), - ('left_right.tz', '(Left "X")', '(Right "a")', '(Left "a")'), - # Reverse a list - ('reverse_loop.tz', '{""}', '{}', '{}'), - ( - 'reverse_loop.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Exec concat contract - ('exec_concat.tz', '"?"', '""', '"_abc"'), - ('exec_concat.tz', '"?"', '"test"', '"test_abc"'), - # Get the current balance of the contract - ('balance.tz', '111', 'Unit', '4000000000000'), - # Get the current level of the block - # Test the produced variable annotation - ('level.tz', '111', 'Unit', '1'), - # Test addition and subtraction on tez - ( - 'tez_add_sub.tz', - 'None', - '(Pair 2000000 1000000)', - '(Some (Pair 3000000 1000000))', - ), - ( - 'tez_add_sub.tz', - 'None', - '(Pair 2310000 1010000)', - '(Some (Pair 3320000 1300000))', - ), - # Test various additions - ('add.tz', 'Unit', 'Unit', 'Unit'), - # Test ABS - ('abs.tz', 'Unit', '12039123919239192312931', 'Unit'), - ('abs.tz', 'Unit', '0', 'Unit'), - ('abs.tz', 'Unit', '948', 'Unit'), - # Test INT - ('int.tz', 'None', '0', '(Some 0)'), - ('int.tz', 'None', '1', '(Some 1)'), - ('int.tz', 'None', '9999', '(Some 9999)'), - # Test DIP - ('dip.tz', '(Pair 0 0)', '(Pair 15 9)', '(Pair 15 24)'), - ('dip.tz', '(Pair 0 0)', '(Pair 1 1)', '(Pair 1 2)'), - # Test get first element of list - ('first.tz', '111', '{ 1 ; 2 ; 3 ; 4 }', '1'), - ('first.tz', '111', '{ 4 }', '4'), - # Hash input string - # Test assumed to be correct -- hash is based on encoding of AST - ( - 'hash_string.tz', - '0x00', - '"abcdefg"', - '0x46fdbcb4ea4eadad5615c' - + 'daa17d67f783e01e21149ce2b27de497600b4cd8f4e', - ), - ( - 'hash_string.tz', - '0x00', - '"12345"', - '0xb4c26c20de52a4eaf0d8a34' - + '0db47ad8cb1e74049570859c9a9a3952b204c772f', - ), - # IF_SOME - ('if_some.tz', '"?"', '(Some "hello")', '"hello"'), - ('if_some.tz', '"?"', 'None', '""'), - # Tests the SET_CAR and SET_CDR instructions - ('set_car.tz', '(Pair "hello" 0)', '"world"', '(Pair "world" 0)'), - ('set_car.tz', '(Pair "hello" 0)', '"abc"', '(Pair "abc" 0)'), - ('set_car.tz', '(Pair "hello" 0)', '""', '(Pair "" 0)'), - ('set_cdr.tz', '(Pair "hello" 0)', '1', '(Pair "hello" 1)'), - ('set_cdr.tz', '(Pair "hello" 500)', '3', '(Pair "hello" 3)'), - ('set_cdr.tz', '(Pair "hello" 7)', '100', '(Pair "hello" 100)'), - # Convert a public key to a public key hash - ( - 'hash_key.tz', - 'None', - '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"', - '(Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")', - ), - ( - 'hash_key.tz', - 'None', - '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"', - '(Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")', - ), - # Test timestamp operations - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair 100 100)', - '(Some "1970-01-01T00:03:20Z")', - ), - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair 100 -100)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair "1970-01-01T00:00:00Z" 0)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair 100 100)', - '(Some "1970-01-01T00:03:20Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair -100 100)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair 0 "1970-01-01T00:00:00Z")', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 100)', - '"1970-01-01T00:00:00Z"', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 -100)', - '"1970-01-01T00:03:20Z"', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 2000000000000000000)', - '-1999999999999999900', - ), - ('diff_timestamps.tz', '111', '(Pair 0 0)', '0'), - ('diff_timestamps.tz', '111', '(Pair 0 1)', '-1'), - ('diff_timestamps.tz', '111', '(Pair 1 0)', '1'), - ( - 'diff_timestamps.tz', - '111', - '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")', - '200', - ), - # Test pack/unpack - ( - 'packunpack_rev.tz', - 'Unit', - '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 ' - + '(Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ' - + '(Pair "2019-09-09T08:35:33Z" ' - + '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))', - 'Unit', - ), - ( - 'packunpack_rev.tz', - 'Unit', - '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 ' - + '(Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ' - + '(Pair "2019-09-09T08:35:33Z" ' - + '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))', - 'Unit', - ), - ( - 'packunpack_rev_cty.tz', - 'Unit', - '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9' - + 'sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAv' - + 'dxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8' - + 'V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmN' - + 'eEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5' - + 'CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair' - + ' { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnz' - + 'ENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; El' - + 't 1 "bar" } { PACK } )))))))))', - 'Unit', - ), - ( - 'packunpack_rev_cty.tz', - 'Unit', - '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9' - + 'sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAv' - + 'dxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8' - + 'V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair {' - + ' } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:' - + '35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))', - 'Unit', - ), - # Test EDIV on nat and int - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair 10 -3)', - '(Pair (Some (Pair -3 1)) (Some (Pair 3 1)) ' - + '(Some (Pair -3 1)) (Some (Pair 3 1)))', - ), - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair 10 0)', - '(Pair None None None None)', - ), - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair -8 2)', - '(Pair (Some (Pair -4 0)) (Some (Pair -4 0)) ' - + '(Some (Pair 4 0)) (Some (Pair 4 0)))', - ), - # Test EDIV on mutez - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 10))', - '(Left (Some (Pair 1 0)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 3))', - '(Left (Some (Pair 3 1)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 0))', - '(Left None)', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 10))', - '(Right (Some (Pair 1 0)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 3))', - '(Right (Some (Pair 3 1)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 0))', - '(Right None)', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 5 (Right 10))', - '(Right (Some (Pair 0 5)))', - ), - # Test compare - ('compare.tz', 'Unit', 'Unit', 'Unit'), - # Test comparison combinators: - # GT, GE, LT, LE, NEQ, EQ - ( - 'comparisons.tz', - '{}', - '{ -9999999; -1 ; 0 ; 1 ; 9999999 }', - '{ ' + '{ False ; False ; False ; True ; True } ;' - "\n" - ' { False ; False ; True ; True ; True } ;' - "\n" - ' { True ; True ; False ; False ; False } ;' - "\n" - ' { True ; True ; True ; False ; False } ;' - "\n" - ' { True ; True ; False ; True ; True } ;' - "\n" - ' { False ; False ; True ; False ; False }' - ' }', - ), - # Test ADDRESS - ( - 'address.tz', - 'None', - '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"', - '(Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")', - ), - # Test (CONTRACT unit) - ( - 'contract.tz', - 'Unit', - '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"', - 'Unit', - ), - # Test create_contract - ( - 'create_contract.tz', - 'None', - 'Unit', - '(Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")', - ), - # Test multiplication - success case (no overflow) - # Failure case is tested in m̀ul_overflow.tz - ('mul.tz', 'Unit', 'Unit', 'Unit'), - # Test NEG - ('neg.tz', '0', '(Left 2)', '-2'), - ('neg.tz', '0', '(Right 2)', '-2'), - ('neg.tz', '0', '(Left 0)', '0'), - ('neg.tz', '0', '(Right 0)', '0'), - ('neg.tz', '0', '(Left -2)', '2'), - # Test DIGN, DUGN, DROPN, DIPN - ('dign.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '5'), - ('dugn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '1'), - ('dropn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '5'), - ('dipn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '6'), - # Test DIGN 17 times. - ( - 'dig_eq.tz', - 'Unit', - '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12' - + ' (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (P' - + 'air 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))', - 'Unit', - ), - ( - 'dig_eq.tz', - 'Unit', - '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (' - + 'Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pa' - + 'ir 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))', - 'Unit', - ), - # Test Partial Exec - ('pexec.tz', '14', '38', '52'), - ('pexec_2.tz', "{ 0 ; 1 ; 2 ; 3}", '4', "{ 0 ; 7 ; 14 ; 21 }"), - # Test CHAIN_ID - ('chain_id_store.tz', 'None', 'Unit', '(Some "NetXdQprcVkpaWU")'), - ( - 'chain_id_store.tz', - '(Some 0x7a06a770)', - 'Unit', - '(Some "NetXdQprcVkpaWU")', - ), - ( - 'chain_id_store.tz', - '(Some "NetXdQprcVkpaWU")', - 'Unit', - '(Some "NetXdQprcVkpaWU")', - ), - # Test SELF - ('self_with_entrypoint.tz', 'Unit', 'Left (Left 0)', 'Unit'), - ('self_with_default_entrypoint.tz', 'Unit', 'Unit', 'Unit'), - # Test SELF_ADDRESS - ('self_address.tz', 'Unit', 'Unit', 'Unit'), - # Test UNPAIR - ('unpair.tz', 'Unit', 'Unit', 'Unit'), - # Test VOTING_POWER - ( - 'voting_power.tz', - '(Pair 0 0)', - f'"{PUBLIC_KEY}"', - '(Pair 4000000000000 20000000000000)', - ), - # Test KECCAK - ( - 'keccak.tz', - 'None', - f'0x{b"Hello, world!".hex()}', - '(Some 0xb6e16d27ac5ab427a7f68900ac5559ce2' - + '72dc6c37c82b3e052246c82244c50e4)', - ), - # Test SHA3 - ( - 'sha3.tz', - 'None', - f'0x{b"Hello, world!".hex()}', - '(Some 0xf345a219da005ebe9c1a1eaad97bbf38' - + 'a10c8473e41d0af7fb617caa0c6aa722)', - ), - # Test COMBs - ('comb.tz', '(Pair 0 0 0)', 'Unit', '(Pair 1 2 3)'), - ('uncomb.tz', '0', '(Pair 1 4 2)', '142'), - ('comb-get.tz', 'Unit', '(Pair 1 4 2 Unit)', 'Unit'), - ('comb-set.tz', '(Pair 1 4 2 Unit)', 'Unit', '(Pair 2 12 8 Unit)'), - ( - 'comb-set-2.tz', - 'None', - '(Pair 1 4 2 Unit)', - '(Some (Pair 2 4 "toto" 0x01))', - ), - # Test DUP n - ('dup-n.tz', 'Unit', 'Unit', 'Unit'), - # Test Sapling - ('sapling_empty_state.tz', '{}', 'Unit', '0'), - # Test building Fr element from nat. - # The initial storage is dropped then any value is valid. - # Random values can be generated using the following OCaml program. - # let r = Bls12_381.Fr.(random ()) in - # let x = Bls12_381.Fr.random () in - # Printf.printf "Param = (Pair %s 0x%s). Result = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes x)))) - # (Hex.(show (of_bytes (Bls12_381.Fr.(to_bytes (mul r x)))))) - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - # The natural is 1 in Fr. - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_fr_z_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test with (positive and negative) integers. - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_fr_z_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-1', - '0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953' - + 'a7ed73', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-42', - '0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a' - + '7ed73', - ), - # Test building Fr element from nat. - # The initial storage is dropped then any value is valid. - # Random values can be generated using the following OCaml program. - # let r = Bls12_381.Fr.(random ()) in - # let x = Bls12_381.Fr.random () in - # Printf.printf "Param = (Pair %s 0x%s). Result = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes x)))) - # (Hex.(show (of_bytes (Bls12_381.Fr.(to_bytes (mul r x)))))) - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - # The natural is 1 in Fr. - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_z_fr_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test with (positive and negative) integers. - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-1', - '0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953' - + 'a7ed73', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-42', - '0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a' - + '7ed73', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_z_fr_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test Fr bytes can be pushed without being padded - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x00 0x00', - '(Some 0x000000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x01 0x00', - '(Some 0x010000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x010000 0x00', - '(Some 0x010000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x010000 0x010000', - '(Some 0x020000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'bls12_381_fr_push_bytes_not_padded.tz', - 'None', - 'Unit', - '(Some 0x000000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'bls12_381_fr_push_nat.tz', - 'None', - 'Unit', - '(Some 0x100000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ('bls12_381_fr_to_int.tz', '0', '0x00', '0'), - ('bls12_381_fr_to_int.tz', '0', '0x01', '1'), - # Generated using - # let r = Bls12_381.Fr.(random ()) in - # Printf.printf "%s = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes r)))) - ( - 'bls12_381_fr_to_int.tz', - '0', - '0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9' - + 'af16c27', - '1783268807701357777652478449446472851821391321341286660405373' - + '5695200962927400', - ), - ( - 'bls12_381_fr_to_int.tz', - '0', - '0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c' - + '0b0719', - '1132026582925658583078152196614952946047676740821044523890286' - + '9222031333517497', - ), - # Mutez -> Fr - ( - 'mutez_to_bls12_381_fr.tz', - '0x02', - '16', - '0x100000000000000000000000000000000000000000000000000000000' - + '0000000', - ), - # # would fail if trying to PACK mutez and UNPACK to Fr - ( - 'mutez_to_bls12_381_fr.tz', - '0x00', - '257', - '0x010100000000000000000000000000000000000000000000000000000' - + '0000000', - ), - # Fr -> Mutez - ('bls12_381_fr_to_mutez.tz', '0', '0x10', '16'), - ], - ) - def test_contract_input_output( - self, - client_regtest: ClientRegression, - contract: str, - storage: str, - param: str, - expected: str, - ): - client = client_regtest - assert contract.endswith( - '.tz' - ), "test contract should have .tz extension" - contract = path.join(OPCODES_CONTRACT_PATH, contract) - run_script_res = client.run_script( - contract, storage, param, trace_stack=True - ) - assert run_script_res.storage == expected - @pytest.mark.parametrize("balance", [0, 0.000001, 0.5, 1, 5, 1000, 8e12]) def test_balance(self, client_regtest: ClientRegression, balance: float): client = client_regtest diff --git a/tests_python/tests_alpha/test_contract_opcodes.py b/tests_python/tests_alpha/test_contract_opcodes.py index d1ee87aba60c..7d8d784d5f41 100644 --- a/tests_python/tests_alpha/test_contract_opcodes.py +++ b/tests_python/tests_alpha/test_contract_opcodes.py @@ -21,1419 +21,6 @@ PUBLIC_KEY = IDENTITIES['bootstrap1']['public'] class TestContractOpcodes: """Tests for individual opcodes that do not require origination.""" - @pytest.mark.parametrize( - "contract,storage,param,expected", - [ # FORMAT: assert_output contract_file storage input expected_result - # TODO add tests for map_car.tz, subset.tz - # NB: noop.tz is tested in test_basic.sh - ('cons.tz', '{}', '10', '{ 10 }'), - ('cons.tz', '{ 10 }', '-5', '{ -5 ; 10 }'), - ('cons.tz', '{ -5 ; 10 }', '99', '{ 99 ; -5 ; 10 }'), - # Tests on Options - ('none.tz', 'Some 10', 'Unit', 'None'), - ('ret_int.tz', 'None', 'Unit', '(Some 300)'), - # Map block on lists - ('list_map_block.tz', '{0}', '{}', '{}'), - ( - 'list_map_block.tz', - '{0}', - '{ 1 ; 1 ; 1 ; 1 }', - '{ 1 ; 2 ; 3 ; 4 }', - ), - ( - 'list_map_block.tz', - '{0}', - '{ 1 ; 2 ; 3 ; 0 }', - '{ 1 ; 3 ; 5 ; 3 }', - ), - ('emit.tz', 'Unit', 'Unit', 'Unit'), - # Reverse a list - ('reverse.tz', '{""}', '{}', '{}'), - ( - 'reverse.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Reverse using LOOP_LEFT - ('loop_left.tz', '{""}', '{}', '{}'), - ( - 'loop_left.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Identity on strings - ('str_id.tz', 'None', '"Hello"', '(Some "Hello")'), - ('str_id.tz', 'None', '"abcd"', '(Some "abcd")'), - # Slice strings - ('slice.tz', 'None', 'Pair 0 0', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 10 5', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 0 0', '(Some "")'), - ('slice.tz', 'Some "Foo"', 'Pair 0 10', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 0 2', '(Some "Fo")'), - ('slice.tz', 'Some "Foo"', 'Pair 1 3', 'None'), - ('slice.tz', 'Some "Foo"', 'Pair 1 1', '(Some "o")'), - # Stress-test the failure case of slice for a - # non-trivial gas consumption - ( - 'slice.tz', - 'Some' + '"' + 'Foo' * 2000 + '"', - 'Pair 1 10000', - 'None', - ), - # Slice bytes - ('slice_bytes.tz', 'None', 'Pair 0 1', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 0 0', '(Some 0x)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 0 1', '(Some 0xaa)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 1', '(Some 0xbb)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 2', '(Some 0xbbcc)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 1 3', 'None'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 1', '(Some 0xcc)'), - ('slice_bytes.tz', 'Some 0xaabbcc', 'Pair 2 2', 'None'), - # Stress-test the failure case of slice for a - # non-trivial gas consumption - ( - 'slice_bytes.tz', - 'Some 0x' + 'aabbcc' * 2000, - 'Pair 1 10000', - 'None', - ), - # Identity on pairs - ( - 'pair_id.tz', - 'None', - '(Pair True False)', - '(Some (Pair True False))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair False True)', - '(Some (Pair False True))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair True True)', - '(Some (Pair True True))', - ), - ( - 'pair_id.tz', - 'None', - '(Pair False False)', - '(Some (Pair False False))', - ), - # Tests CAR and CDR instructions - ('car.tz', '0', '(Pair 34 17)', '34'), - ('cdr.tz', '0', '(Pair 34 17)', '17'), - # Logical not - ('not.tz', 'None', 'True', '(Some False)'), - ('not.tz', 'None', 'False', '(Some True)'), - # Logical and - ('and.tz', 'None', '(Pair False False)', '(Some False)'), - ('and.tz', 'None', '(Pair False True)', '(Some False)'), - ('and.tz', 'None', '(Pair True False)', '(Some False)'), - ('and.tz', 'None', '(Pair True True)', '(Some True)'), - # Logical or - ('or.tz', 'None', '(Pair False False)', '(Some False)'), - ('or.tz', 'None', '(Pair False True)', '(Some True)'), - ('or.tz', 'None', '(Pair True False)', '(Some True)'), - ('or.tz', 'None', '(Pair True True)', '(Some True)'), - # Logical and - ('and_logical_1.tz', 'False', "(Pair False False)", 'False'), - ('and_logical_1.tz', 'False', "(Pair False True)", 'False'), - ('and_logical_1.tz', 'False', "(Pair True False)", 'False'), - ('and_logical_1.tz', 'False', "(Pair True True)", 'True'), - # Binary and - ('and_binary.tz', 'Unit', 'Unit', 'Unit'), - # Binary or - ('or_binary.tz', 'None', '(Pair 4 8)', '(Some 12)'), - ('or_binary.tz', 'None', '(Pair 0 8)', '(Some 8)'), - ('or_binary.tz', 'None', '(Pair 8 0)', '(Some 8)'), - ('or_binary.tz', 'None', '(Pair 15 4)', '(Some 15)'), - ('or_binary.tz', 'None', '(Pair 14 1)', '(Some 15)'), - ('or_binary.tz', 'None', '(Pair 7 7)', '(Some 7)'), - # Binary not - ('not_binary.tz', 'None', '(Left 0)', '(Some -1)'), - ('not_binary.tz', 'None', '(Left 8)', '(Some -9)'), - ('not_binary.tz', 'None', '(Left 7)', '(Some -8)'), - ('not_binary.tz', 'None', '(Left -9)', '(Some 8)'), - ('not_binary.tz', 'None', '(Left -8)', '(Some 7)'), - ('not_binary.tz', 'None', '(Right 0)', '(Some -1)'), - ('not_binary.tz', 'None', '(Right 8)', '(Some -9)'), - ('not_binary.tz', 'None', '(Right 7)', '(Some -8)'), - # XOR - ( - 'xor.tz', - 'None', - 'Left (Pair False False)', - '(Some (Left False))', - ), - ('xor.tz', 'None', 'Left (Pair False True)', '(Some (Left True))'), - ('xor.tz', 'None', 'Left (Pair True False)', '(Some (Left True))'), - ('xor.tz', 'None', 'Left (Pair True True)', '(Some (Left False))'), - ('xor.tz', 'None', 'Right (Pair 0 0)', '(Some (Right 0))'), - ('xor.tz', 'None', 'Right (Pair 0 1)', '(Some (Right 1))'), - ('xor.tz', 'None', 'Right (Pair 1 0)', '(Some (Right 1))'), - ('xor.tz', 'None', 'Right (Pair 1 1)', '(Some (Right 0))'), - ('xor.tz', 'None', 'Right (Pair 42 21)', '(Some (Right 63))'), - ('xor.tz', 'None', 'Right (Pair 42 63)', '(Some (Right 21))'), - # test shifts: LSL & LSR - ('shifts.tz', 'None', '(Left (Pair 8 1))', '(Some 16)'), - ('shifts.tz', 'None', '(Left (Pair 0 0))', '(Some 0)'), - ('shifts.tz', 'None', '(Left (Pair 0 1))', '(Some 0)'), - ('shifts.tz', 'None', '(Left (Pair 1 2))', '(Some 4)'), - ('shifts.tz', 'None', '(Left (Pair 15 2))', '(Some 60)'), - ('shifts.tz', 'None', '(Right (Pair 8 1))', '(Some 4)'), - ('shifts.tz', 'None', '(Right (Pair 0 0))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 0 1))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 1 2))', '(Some 0)'), - ('shifts.tz', 'None', '(Right (Pair 15 2))', '(Some 3)'), - # Concatenate all strings of a list into one string - ('concat_list.tz', '""', '{ "a" ; "b" ; "c" }', '"abc"'), - ('concat_list.tz', '""', '{}', '""'), - ( - 'concat_list.tz', - '""', - '{ "Hello" ; " " ; "World" ; "!" }', - '"Hello World!"', - ), - # Concatenate the bytes in storage with all bytes in the given list - ('concat_hello_bytes.tz', '{}', '{ 0xcd }', '{ 0xffcd }'), - ('concat_hello_bytes.tz', '{}', '{}', '{}'), - ( - 'concat_hello_bytes.tz', - '{}', - '{ 0xab ; 0xcd }', - '{ 0xffab ; 0xffcd }', - ), - # Identity on lists - ( - 'list_id.tz', - '{""}', - '{ "1" ; "2" ; "3" }', - '{ "1" ; "2" ; "3" }', - ), - ('list_id.tz', '{""}', '{}', '{}'), - ( - 'list_id.tz', - '{""}', - '{ "a" ; "b" ; "c" }', - '{ "a" ; "b" ; "c" }', - ), - ( - 'list_id_map.tz', - '{""}', - '{ "1" ; "2" ; "3" }', - '{ "1" ; "2" ; "3" }', - ), - ('list_id_map.tz', '{""}', '{}', '{}'), - ( - 'list_id_map.tz', - '{""}', - '{ "a" ; "b" ; "c" }', - '{ "a" ; "b" ; "c" }', - ), - # Identity on maps - ('map_id.tz', '{}', '{ Elt 0 1 }', '{ Elt 0 1 }'), - ('map_id.tz', '{}', '{ Elt 0 0 }', '{ Elt 0 0 }'), - ( - 'map_id.tz', - '{}', - '{ Elt 0 0 ; Elt 3 4 }', - '{ Elt 0 0 ; Elt 3 4 }', - ), - # Memberships in maps - ( - 'map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair { Elt 0 1 } (Some False))', - ), - ('map_mem_nat.tz', '(Pair {} None)', '1', '(Pair {} (Some False))'), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair { Elt 1 0 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some True))', - ), - ( - 'map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair { Elt 1 4 ; Elt 2 11 } (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "foo" 1 } None)', - '"bar"', - '(Pair { Elt "foo" 1 } (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair {} None)', - '"bar"', - '(Pair {} (Some False))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "foo" 0 } None)', - '"foo"', - '(Pair { Elt "foo" 0 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"foo"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"bar"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))', - ), - ( - 'map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"baz"', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False))', - ), - # Mapping over maps - ('map_map.tz', '{}', '10', '{}'), - ('map_map.tz', '{ Elt "foo" 1 }', '10', '{ Elt "foo" 11 }'), - ( - 'map_map.tz', - '{ Elt "bar" 5 ; Elt "foo" 1 }', - '15', - '{ Elt "bar" 20 ; Elt "foo" 16 }', - ), - # Memberships in big maps - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 0 1 } None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair {} None)', - '1', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 0 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '1', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '2', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_nat.tz', - '(Pair { Elt 1 4 ; Elt 2 11 } None)', - '3', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "foo" 1 } None)', - '"bar"', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair {} None)', - '"bar"', - '(Pair 4 (Some False))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "foo" 0 } None)', - '"foo"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"foo"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"bar"', - '(Pair 4 (Some True))', - ), - ( - 'big_map_mem_string.tz', - '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)', - '"baz"', - '(Pair 4 (Some False))', - ), - # Identity on sets - ('set_id.tz', '{}', '{ "a" ; "b" ; "c" }', '{ "a" ; "b" ; "c" }'), - ('set_id.tz', '{}', '{}', '{}'), - ('set_id.tz', '{}', '{ "asdf" ; "bcde" }', '{ "asdf" ; "bcde" }'), - # List concat - ('list_concat.tz', '"abc"', '{ "d" ; "e" ; "f" }', '"abcdef"'), - ('list_concat.tz', '"abc"', '{}', '"abc"'), - ( - 'list_concat_bytes.tz', - '0x00ab', - '{ 0xcd ; 0xef ; 0x00 }', - '0x00abcdef00', - ), - ( - 'list_concat_bytes.tz', - '0x', - '{ 0x00 ; 0x11 ; 0x00 }', - '0x001100', - ), - ('list_concat_bytes.tz', '0xabcd', '{}', '0xabcd'), - ('list_concat_bytes.tz', '0x', '{}', '0x'), - # List iter - ('list_iter.tz', '0', '{ 10 ; 2 ; 1 }', '20'), - ('list_iter.tz', '0', '{ 3 ; 6 ; 9 }', '162'), - # List size - ('list_size.tz', '111', '{}', '0'), - ('list_size.tz', '111', '{ 1 }', '1'), - ('list_size.tz', '111', '{ 1 ; 2 ; 3 }', '3'), - ('list_size.tz', '111', '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }', '6'), - # Set member -- set is in storage - ( - 'set_member.tz', - '(Pair {} None)', - '"Hi"', - '(Pair {} (Some False))', - ), - ( - 'set_member.tz', - '(Pair { "Hi" } None)', - '"Hi"', - '(Pair { "Hi" } (Some True))', - ), - ( - 'set_member.tz', - '(Pair { "Hello" ; "World" } None)', - '""', - '(Pair { "Hello" ; "World" } (Some False))', - ), - # Set size - ('set_size.tz', '111', '{}', '0'), - ('set_size.tz', '111', '{ 1 }', '1'), - ('set_size.tz', '111', '{ 1 ; 2 ; 3 }', '3'), - ('set_size.tz', '111', '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }', '6'), - # Set iter - ('set_iter.tz', '111', '{}', '0'), - ('set_iter.tz', '111', '{ 1 }', '1'), - ('set_iter.tz', '111', '{ -100 ; 1 ; 2 ; 3 }', '-94'), - # Map size - ('map_size.tz', '111', '{}', '0'), - ('map_size.tz', '111', '{ Elt "a" 1 }', '1'), - ( - 'map_size.tz', - '111', - '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }', - '3', - ), - ( - 'map_size.tz', - '111', - '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; \ - Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }', - '6', - ), - # Contains all elements -- does the second list contain - # all of the same elements as the first one? I'm ignoring - # element multiplicity - ('contains_all.tz', 'None', '(Pair {} {})', '(Some True)'), - ( - 'contains_all.tz', - 'None', - '(Pair { "c" } { "B" })', - '(Some False)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "A" } { "B" })', - '(Some False)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" } { "B" })', - '(Some True)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })', - '(Some True)', - ), - ( - 'contains_all.tz', - 'None', - '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })', - '(Some True)', - ), - # Concatenate the string in storage with all strings in - # the given list - ('concat_hello.tz', '{}', '{ "World!" }', '{ "Hello World!" }'), - ('concat_hello.tz', '{}', '{}', '{}'), - ( - 'concat_hello.tz', - '{}', - '{ "test1" ; "test2" }', - '{ "Hello test1" ; "Hello test2" }', - ), - # Create an empty map and add a string to it - ('empty_map.tz', '{}', 'Unit', '{ Elt "hello" "world" }'), - # Get the value stored at the given key in the map - ( - 'get_map_value.tz', - '(Pair None { Elt "hello" "hi" })', - '"hello"', - '(Pair (Some "hi") { Elt "hello" "hi" })', - ), - ( - 'get_map_value.tz', - '(Pair None { Elt "hello" "hi" })', - '""', - '(Pair None { Elt "hello" "hi" })', - ), - ( - 'get_map_value.tz', - '(Pair None { Elt "1" "one" ; \ - Elt "2" "two" })', - '"1"', - '(Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" })', - ), - # Get and update the value stored at the given key in the map - ( - 'get_and_update_map.tz', - '(Pair None {})', - '"hello"', - '(Pair None {})', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 4) {})', - '"hello"', - '(Pair None { Elt "hello" 4 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "hello" 4 })', - '"hello"', - '(Pair (Some 4) {})', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 5) { Elt "hello" 4 })', - '"hello"', - '(Pair (Some 4) { Elt "hello" 5 })', - ), - ( - 'get_and_update_map.tz', - '(Pair (Some 5) { Elt "hello" 4 })', - '"hi"', - '(Pair None { Elt "hello" 4 ; Elt "hi" 5 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "1" 1 ; \ - Elt "2" 2 })', - '"1"', - '(Pair (Some 1) { Elt "2" 2 })', - ), - ( - 'get_and_update_map.tz', - '(Pair None { Elt "1" 1 ; \ - Elt "2" 2 })', - '"2"', - '(Pair (Some 2) { Elt "1" 1 })', - ), - # Map iter - ( - 'map_iter.tz', - '(Pair 0 0)', - '{ Elt 0 100 ; Elt 2 100 }', - '(Pair 2 200)', - ), - ( - 'map_iter.tz', - '(Pair 0 0)', - '{ Elt 1 1 ; Elt 2 100 }', - '(Pair 3 101)', - ), - # Return True if True branch of if was taken and False otherwise - ('if.tz', 'None', 'True', '(Some True)'), - ('if.tz', 'None', 'False', '(Some False)'), - # Generate a pair of or types - ('left_right.tz', '(Left "X")', '(Left True)', '(Right True)'), - ('left_right.tz', '(Left "X")', '(Right "a")', '(Left "a")'), - # Reverse a list - ('reverse_loop.tz', '{""}', '{}', '{}'), - ( - 'reverse_loop.tz', - '{""}', - '{ "c" ; "b" ; "a" }', - '{ "a" ; "b" ; "c" }', - ), - # Exec concat contract - ('exec_concat.tz', '"?"', '""', '"_abc"'), - ('exec_concat.tz', '"?"', '"test"', '"test_abc"'), - # Get the current balance of the contract - ('balance.tz', '111', 'Unit', '4000000000000'), - # Get the current level of the block - # Test the produced variable annotation - ('level.tz', '111', 'Unit', '1'), - # Test addition and subtraction on tez - ( - 'tez_add_sub.tz', - 'None', - '(Pair 2000000 1000000)', - '(Some (Pair 3000000 1000000))', - ), - ( - 'tez_add_sub.tz', - 'None', - '(Pair 2310000 1010000)', - '(Some (Pair 3320000 1300000))', - ), - # Test various additions - ('add.tz', 'Unit', 'Unit', 'Unit'), - # Test ABS - ('abs.tz', 'Unit', '12039123919239192312931', 'Unit'), - ('abs.tz', 'Unit', '0', 'Unit'), - ('abs.tz', 'Unit', '948', 'Unit'), - # Test INT - ('int.tz', 'None', '0', '(Some 0)'), - ('int.tz', 'None', '1', '(Some 1)'), - ('int.tz', 'None', '9999', '(Some 9999)'), - # Test DIP - ('dip.tz', '(Pair 0 0)', '(Pair 15 9)', '(Pair 15 24)'), - ('dip.tz', '(Pair 0 0)', '(Pair 1 1)', '(Pair 1 2)'), - # Test get first element of list - ('first.tz', '111', '{ 1 ; 2 ; 3 ; 4 }', '1'), - ('first.tz', '111', '{ 4 }', '4'), - # Hash input string - # Test assumed to be correct -- hash is based on encoding of AST - ( - 'hash_string.tz', - '0x00', - '"abcdefg"', - '0x46fdbcb4ea4eadad5615c' - + 'daa17d67f783e01e21149ce2b27de497600b4cd8f4e', - ), - ( - 'hash_string.tz', - '0x00', - '"12345"', - '0xb4c26c20de52a4eaf0d8a34' - + '0db47ad8cb1e74049570859c9a9a3952b204c772f', - ), - # IF_SOME - ('if_some.tz', '"?"', '(Some "hello")', '"hello"'), - ('if_some.tz', '"?"', 'None', '""'), - # Tests the SET_CAR and SET_CDR instructions - ('set_car.tz', '(Pair "hello" 0)', '"world"', '(Pair "world" 0)'), - ('set_car.tz', '(Pair "hello" 0)', '"abc"', '(Pair "abc" 0)'), - ('set_car.tz', '(Pair "hello" 0)', '""', '(Pair "" 0)'), - ('set_cdr.tz', '(Pair "hello" 0)', '1', '(Pair "hello" 1)'), - ('set_cdr.tz', '(Pair "hello" 500)', '3', '(Pair "hello" 3)'), - ('set_cdr.tz', '(Pair "hello" 7)', '100', '(Pair "hello" 100)'), - # Convert a public key to a public key hash - ( - 'hash_key.tz', - 'None', - '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"', - '(Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")', - ), - ( - 'hash_key.tz', - 'None', - '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"', - '(Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")', - ), - # Test timestamp operations - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair 100 100)', - '(Some "1970-01-01T00:03:20Z")', - ), - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair 100 -100)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_timestamp_delta.tz', - 'None', - '(Pair "1970-01-01T00:00:00Z" 0)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair 100 100)', - '(Some "1970-01-01T00:03:20Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair -100 100)', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'add_delta_timestamp.tz', - 'None', - '(Pair 0 "1970-01-01T00:00:00Z")', - '(Some "1970-01-01T00:00:00Z")', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 100)', - '"1970-01-01T00:00:00Z"', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 -100)', - '"1970-01-01T00:03:20Z"', - ), - ( - 'sub_timestamp_delta.tz', - '111', - '(Pair 100 2000000000000000000)', - '-1999999999999999900', - ), - ('diff_timestamps.tz', '111', '(Pair 0 0)', '0'), - ('diff_timestamps.tz', '111', '(Pair 0 1)', '-1'), - ('diff_timestamps.tz', '111', '(Pair 1 0)', '1'), - ( - 'diff_timestamps.tz', - '111', - '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")', - '200', - ), - # Test pack/unpack - ( - 'packunpack_rev.tz', - 'Unit', - '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 ' - + '(Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ' - + '(Pair "2019-09-09T08:35:33Z" ' - + '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))', - 'Unit', - ), - ( - 'packunpack_rev.tz', - 'Unit', - '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 ' - + '(Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ' - + '(Pair "2019-09-09T08:35:33Z" ' - + '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))', - 'Unit', - ), - ( - 'packunpack_rev_cty.tz', - 'Unit', - '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9' - + 'sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAv' - + 'dxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8' - + 'V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmN' - + 'eEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5' - + 'CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair' - + ' { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnz' - + 'ENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; El' - + 't 1 "bar" } { PACK } )))))))))', - 'Unit', - ), - ( - 'packunpack_rev_cty.tz', - 'Unit', - '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9' - + 'sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAv' - + 'dxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8' - + 'V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair {' - + ' } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:' - + '35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))', - 'Unit', - ), - # Test EDIV on nat and int - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair 10 -3)', - '(Pair (Some (Pair -3 1)) (Some (Pair 3 1)) ' - + '(Some (Pair -3 1)) (Some (Pair 3 1)))', - ), - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair 10 0)', - '(Pair None None None None)', - ), - ( - 'ediv.tz', - '(Pair None None None None)', - '(Pair -8 2)', - '(Pair (Some (Pair -4 0)) (Some (Pair -4 0)) ' - + '(Some (Pair 4 0)) (Some (Pair 4 0)))', - ), - # Test EDIV on mutez - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 10))', - '(Left (Some (Pair 1 0)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 3))', - '(Left (Some (Pair 3 1)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Left 0))', - '(Left None)', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 10))', - '(Right (Some (Pair 1 0)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 3))', - '(Right (Some (Pair 3 1)))', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 10 (Right 0))', - '(Right None)', - ), - ( - 'ediv_mutez.tz', - '(Left None)', - '(Pair 5 (Right 10))', - '(Right (Some (Pair 0 5)))', - ), - # Test compare - ('compare.tz', 'Unit', 'Unit', 'Unit'), - # Test comparison combinators: - # GT, GE, LT, LE, NEQ, EQ - ( - 'comparisons.tz', - '{}', - '{ -9999999; -1 ; 0 ; 1 ; 9999999 }', - '{ ' + '{ False ; False ; False ; True ; True } ;' - "\n" - ' { False ; False ; True ; True ; True } ;' - "\n" - ' { True ; True ; False ; False ; False } ;' - "\n" - ' { True ; True ; True ; False ; False } ;' - "\n" - ' { True ; True ; False ; True ; True } ;' - "\n" - ' { False ; False ; True ; False ; False }' - ' }', - ), - # Test ADDRESS - ( - 'address.tz', - 'None', - '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"', - '(Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")', - ), - # Test (CONTRACT unit) - ( - 'contract.tz', - 'Unit', - '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"', - 'Unit', - ), - # Test create_contract - ( - 'create_contract.tz', - 'None', - 'Unit', - '(Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")', - ), - # Test multiplication - success case (no overflow) - # Failure case is tested in m̀ul_overflow.tz - ('mul.tz', 'Unit', 'Unit', 'Unit'), - # Test NEG - ('neg.tz', '0', '(Left 2)', '-2'), - ('neg.tz', '0', '(Right 2)', '-2'), - ('neg.tz', '0', '(Left 0)', '0'), - ('neg.tz', '0', '(Right 0)', '0'), - ('neg.tz', '0', '(Left -2)', '2'), - # Test DIGN, DUGN, DROPN, DIPN - ('dign.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '5'), - ('dugn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '1'), - ('dropn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '5'), - ('dipn.tz', '0', '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)', '6'), - # Test DIGN 17 times. - ( - 'dig_eq.tz', - 'Unit', - '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12' - + ' (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (P' - + 'air 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))', - 'Unit', - ), - ( - 'dig_eq.tz', - 'Unit', - '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (' - + 'Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pa' - + 'ir 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))', - 'Unit', - ), - # Test Partial Exec - ('pexec.tz', '14', '38', '52'), - ('pexec_2.tz', "{ 0 ; 1 ; 2 ; 3}", '4', "{ 0 ; 7 ; 14 ; 21 }"), - # Test CHAIN_ID - ('chain_id_store.tz', 'None', 'Unit', '(Some "NetXdQprcVkpaWU")'), - ( - 'chain_id_store.tz', - '(Some 0x7a06a770)', - 'Unit', - '(Some "NetXdQprcVkpaWU")', - ), - ( - 'chain_id_store.tz', - '(Some "NetXdQprcVkpaWU")', - 'Unit', - '(Some "NetXdQprcVkpaWU")', - ), - # Test SELF - ('self_with_entrypoint.tz', 'Unit', 'Left (Left 0)', 'Unit'), - ('self_with_default_entrypoint.tz', 'Unit', 'Unit', 'Unit'), - # Test SELF_ADDRESS - ('self_address.tz', 'Unit', 'Unit', 'Unit'), - # Test UNPAIR - ('unpair.tz', 'Unit', 'Unit', 'Unit'), - # Test VOTING_POWER - ( - 'voting_power.tz', - '(Pair 0 0)', - f'"{PUBLIC_KEY}"', - '(Pair 4000000000000 20000000000000)', - ), - # Test KECCAK - ( - 'keccak.tz', - 'None', - f'0x{b"Hello, world!".hex()}', - '(Some 0xb6e16d27ac5ab427a7f68900ac5559ce2' - + '72dc6c37c82b3e052246c82244c50e4)', - ), - # Test SHA3 - ( - 'sha3.tz', - 'None', - f'0x{b"Hello, world!".hex()}', - '(Some 0xf345a219da005ebe9c1a1eaad97bbf38' - + 'a10c8473e41d0af7fb617caa0c6aa722)', - ), - # Test COMBs - ('comb.tz', '(Pair 0 0 0)', 'Unit', '(Pair 1 2 3)'), - ('uncomb.tz', '0', '(Pair 1 4 2)', '142'), - ('comb-get.tz', 'Unit', '(Pair 1 4 2 Unit)', 'Unit'), - ('comb-set.tz', '(Pair 1 4 2 Unit)', 'Unit', '(Pair 2 12 8 Unit)'), - ( - 'comb-set-2.tz', - 'None', - '(Pair 1 4 2 Unit)', - '(Some (Pair 2 4 "toto" 0x01))', - ), - # Test DUP n - ('dup-n.tz', 'Unit', 'Unit', 'Unit'), - # Test Sapling - ('sapling_empty_state.tz', '{}', 'Unit', '0'), - # Test building Fr element from nat. - # The initial storage is dropped then any value is valid. - # Random values can be generated using the following OCaml program. - # let r = Bls12_381.Fr.(random ()) in - # let x = Bls12_381.Fr.random () in - # Printf.printf "Param = (Pair %s 0x%s). Result = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes x)))) - # (Hex.(show (of_bytes (Bls12_381.Fr.(to_bytes (mul r x)))))) - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - # The natural is 1 in Fr. - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_fr_z_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_fr_z_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test with (positive and negative) integers. - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_fr_z_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-1', - '0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953' - + 'a7ed73', - ), - ( - 'bls12_381_fr_z_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-42', - '0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a' - + '7ed73', - ), - # Test building Fr element from nat. - # The initial storage is dropped then any value is valid. - # Random values can be generated using the following OCaml program. - # let r = Bls12_381.Fr.(random ()) in - # let x = Bls12_381.Fr.random () in - # Printf.printf "Param = (Pair %s 0x%s). Result = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes x)))) - # (Hex.(show (of_bytes (Bls12_381.Fr.(to_bytes (mul r x)))))) - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - # The natural is 1 in Fr. - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_z_fr_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_z_fr_nat.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test with (positive and negative) integers. - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '0', - '0x00000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '1', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '524358751751261904794477405081859658376905525005276378226036' - '58699938581184514', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '2', - '0x02000000000000000000000000000000000000000000000000000000000' - + '00000', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c' - + '5401f', - '3364491663033484423912034843462646864953418677080980279259699' - + '6408934105684394', - '0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91' - + '8a221', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc' - + 'dbe3f', - '2262028481792278490256467246991799299632821112798447289749169' - + '8543785655336309', - '0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6' - + '77c62', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '1718009307279455880617703583439793220591757728848373965251048' - + '2486858834123369', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-1', - '0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953' - + 'a7ed73', - ), - ( - 'bls12_381_z_fr_int.tz', - '0x01000000000000000000000000000000000000000000000000000000000' - + '00000', - '-42', - '0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a' - + '7ed73', - ), - # Same than previous one, but we added the order to the natural to - # verify the modulo is computed correctly and the multiplication - # computation does not fail. - ( - 'bls12_381_z_fr_int.tz', - '0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7' - + 'fcf2d', - '69615968247920749285624776342583898043608129789011377475114141' - + '186797415307882', - '0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec' - + 'bf221', - ), - # Test Fr bytes can be pushed without being padded - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x00 0x00', - '(Some 0x000000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x01 0x00', - '(Some 0x010000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x010000 0x00', - '(Some 0x010000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'add_bls12_381_fr.tz', - 'None', - 'Pair 0x010000 0x010000', - '(Some 0x020000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'bls12_381_fr_push_bytes_not_padded.tz', - 'None', - 'Unit', - '(Some 0x000000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ( - 'bls12_381_fr_push_nat.tz', - 'None', - 'Unit', - '(Some 0x100000000000000000000000000000000000000000000000000000' - + '0000000000)', - ), - ('bls12_381_fr_to_int.tz', '0', '0x00', '0'), - ('bls12_381_fr_to_int.tz', '0', '0x01', '1'), - # Generated using - # let r = Bls12_381.Fr.(random ()) in - # Printf.printf "%s = 0x%s" - # (Bls12_381.Fr.to_string r) - # (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes r)))) - ( - 'bls12_381_fr_to_int.tz', - '0', - '0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9' - + 'af16c27', - '1783268807701357777652478449446472851821391321341286660405373' - + '5695200962927400', - ), - ( - 'bls12_381_fr_to_int.tz', - '0', - '0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c' - + '0b0719', - '1132026582925658583078152196614952946047676740821044523890286' - + '9222031333517497', - ), - # Mutez -> Fr - ( - 'mutez_to_bls12_381_fr.tz', - '0x02', - '16', - '0x100000000000000000000000000000000000000000000000000000000' - + '0000000', - ), - # # would fail if trying to PACK mutez and UNPACK to Fr - ( - 'mutez_to_bls12_381_fr.tz', - '0x00', - '257', - '0x010100000000000000000000000000000000000000000000000000000' - + '0000000', - ), - # Fr -> Mutez - ('bls12_381_fr_to_mutez.tz', '0', '0x10', '16'), - ], - ) - def test_contract_input_output( - self, - client_regtest: ClientRegression, - contract: str, - storage: str, - param: str, - expected: str, - ): - client = client_regtest - assert contract.endswith( - '.tz' - ), "test contract should have .tz extension" - contract = path.join(OPCODES_CONTRACT_PATH, contract) - run_script_res = client.run_script( - contract, storage, param, trace_stack=True - ) - assert run_script_res.storage == expected - @pytest.mark.parametrize("balance", [0, 0.000001, 0.5, 1, 5, 1000, 8e12]) def test_balance(self, client_regtest: ClientRegression, balance: float): client = client_regtest diff --git a/tezt/tests/contract_opcodes.ml b/tezt/tests/contract_opcodes.ml new file mode 100644 index 000000000000..1da248818c38 --- /dev/null +++ b/tezt/tests/contract_opcodes.ml @@ -0,0 +1,1063 @@ +(*****************************************************************************) +(* *) +(* Open Source License *) +(* Copyright (c) 2022 Nomadic Labs *) +(* *) +(* 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 + ------- + Component: Michelson + Invocation: dune exec tezt/tests/main.exe -- --file contract_opcodes.ml + Subject: Runs Michelson opcode tests using [octez-client -mode mockup run script ...]. +*) + +(* For these tests, the default hooks would scrub much output of + interest. We use a lighter hook that only scrubs the clients + [--base-dir], since it varies between executions. *) +let hooks = + Tezos_regression.hooks_custom + ~scrubbed_global_options:["--base-dir"; "-d"] + ~replace_variables:Fun.id + () + +let public_key = Account.Bootstrap.keys.(0).public_key + +let hex s = s |> Bytes.of_string |> Hex.of_bytes |> Hex.show + +let test_contract_opcodes protocols = + let parameterization = + [ + ("cons.tz", "{}", "10", "{ 10 }"); + ("cons.tz", "{ 10 }", "-5", "{ -5 ; 10 }"); + ("cons.tz", "{ -5 ; 10 }", "99", "{ 99 ; -5 ; 10 }"); + (* Tests on Options *) + ("none.tz", "Some 10", "Unit", "None"); + ("ret_int.tz", "None", "Unit", "(Some 300)"); + (* Map block on lists *) + ("list_map_block.tz", "{0}", "{}", "{}"); + ("list_map_block.tz", "{0}", "{ 1 ; 1 ; 1 ; 1 }", "{ 1 ; 2 ; 3 ; 4 }"); + ("list_map_block.tz", "{0}", "{ 1 ; 2 ; 3 ; 0 }", "{ 1 ; 3 ; 5 ; 3 }"); + ("emit.tz", "Unit", "Unit", "Unit"); + (* Reverse a list *) + ("reverse.tz", {|{""}|}, "{}", "{}"); + ("reverse.tz", {|{""}|}, {|{ "c" ; "b" ; "a" }|}, {|{ "a" ; "b" ; "c" }|}); + (* Reverse using LOOP_LEFT *) + ("loop_left.tz", {|{""}|}, "{}", "{}"); + ( "loop_left.tz", + {|{""}|}, + {|{ "c" ; "b" ; "a" }|}, + {|{ "a" ; "b" ; "c" }|} ); + (* Identity on strings *) + ("str_id.tz", "None", {|"Hello"|}, {|(Some "Hello")|}); + ("str_id.tz", "None", {|"abcd"|}, {|(Some "abcd")|}); + (* Slice strings *) + ("slice.tz", "None", "Pair 0 0", "None"); + ("slice.tz", {|Some "Foo"|}, "Pair 10 5", "None"); + ("slice.tz", {|Some "Foo"|}, "Pair 0 0", {|(Some "")|}); + ("slice.tz", {|Some "Foo"|}, "Pair 0 10", "None"); + ("slice.tz", {|Some "Foo"|}, "Pair 0 2", {|(Some "Fo")|}); + ("slice.tz", {|Some "Foo"|}, "Pair 1 3", "None"); + ("slice.tz", {|Some "Foo"|}, "Pair 1 1", {|(Some "o")|}); + (* Stress-test the failure case of slice for a *) + (* non-trivial gas consumption *) + ( "slice.tz", + "Some" ^ "\"" + ^ (String.concat "" @@ List.init 2000 (Fun.const "Foo")) + ^ "\"", + "Pair 1 10000", + "None" ); + (* Slice bytes *) + ("slice_bytes.tz", "None", "Pair 0 1", "None"); + ("slice_bytes.tz", "Some 0xaabbcc", "Pair 0 0", "(Some 0x)"); + ("slice_bytes.tz", "Some 0xaabbcc", "Pair 0 1", "(Some 0xaa)"); + ("slice_bytes.tz", "Some 0xaabbcc", "Pair 1 1", "(Some 0xbb)"); + ("slice_bytes.tz", "Some 0xaabbcc", "Pair 1 2", "(Some 0xbbcc)"); + ("slice_bytes.tz", "Some 0xaabbcc", "Pair 1 3", "None"); + ("slice_bytes.tz", "Some 0xaabbcc", "Pair 2 1", "(Some 0xcc)"); + ("slice_bytes.tz", "Some 0xaabbcc", "Pair 2 2", "None"); + (* Stress-test the failure case of slice for a *) + (* non-trivial gas consumption *) + ( "slice_bytes.tz", + "Some 0x" ^ String.concat "" @@ List.init 2000 (Fun.const "aabbcc"), + "Pair 1 10000", + "None" ); + (* Identity on pairs *) + ("pair_id.tz", "None", "(Pair True False)", "(Some (Pair True False))"); + ("pair_id.tz", "None", "(Pair False True)", "(Some (Pair False True))"); + ("pair_id.tz", "None", "(Pair True True)", "(Some (Pair True True))"); + ("pair_id.tz", "None", "(Pair False False)", "(Some (Pair False False))"); + (* Tests CAR and CDR instructions *) + ("car.tz", "0", "(Pair 34 17)", "34"); + ("cdr.tz", "0", "(Pair 34 17)", "17"); + (* Logical not *) + ("not.tz", "None", "True", "(Some False)"); + ("not.tz", "None", "False", "(Some True)"); + (* Logical and *) + ("and.tz", "None", "(Pair False False)", "(Some False)"); + ("and.tz", "None", "(Pair False True)", "(Some False)"); + ("and.tz", "None", "(Pair True False)", "(Some False)"); + ("and.tz", "None", "(Pair True True)", "(Some True)"); + (* Logical or *) + ("or.tz", "None", "(Pair False False)", "(Some False)"); + ("or.tz", "None", "(Pair False True)", "(Some True)"); + ("or.tz", "None", "(Pair True False)", "(Some True)"); + ("or.tz", "None", "(Pair True True)", "(Some True)"); + (* Logical and *) + ("and_logical_1.tz", "False", "(Pair False False)", "False"); + ("and_logical_1.tz", "False", "(Pair False True)", "False"); + ("and_logical_1.tz", "False", "(Pair True False)", "False"); + ("and_logical_1.tz", "False", "(Pair True True)", "True"); + (* Binary and *) + ("and_binary.tz", "Unit", "Unit", "Unit"); + (* Binary or *) + ("or_binary.tz", "None", "(Pair 4 8)", "(Some 12)"); + ("or_binary.tz", "None", "(Pair 0 8)", "(Some 8)"); + ("or_binary.tz", "None", "(Pair 8 0)", "(Some 8)"); + ("or_binary.tz", "None", "(Pair 15 4)", "(Some 15)"); + ("or_binary.tz", "None", "(Pair 14 1)", "(Some 15)"); + ("or_binary.tz", "None", "(Pair 7 7)", "(Some 7)"); + (* Binary not *) + ("not_binary.tz", "None", "(Left 0)", "(Some -1)"); + ("not_binary.tz", "None", "(Left 8)", "(Some -9)"); + ("not_binary.tz", "None", "(Left 7)", "(Some -8)"); + ("not_binary.tz", "None", "(Left -9)", "(Some 8)"); + ("not_binary.tz", "None", "(Left -8)", "(Some 7)"); + ("not_binary.tz", "None", "(Right 0)", "(Some -1)"); + ("not_binary.tz", "None", "(Right 8)", "(Some -9)"); + ("not_binary.tz", "None", "(Right 7)", "(Some -8)"); + (* XOR *) + ("xor.tz", "None", "Left (Pair False False)", "(Some (Left False))"); + ("xor.tz", "None", "Left (Pair False True)", "(Some (Left True))"); + ("xor.tz", "None", "Left (Pair True False)", "(Some (Left True))"); + ("xor.tz", "None", "Left (Pair True True)", "(Some (Left False))"); + ("xor.tz", "None", "Right (Pair 0 0)", "(Some (Right 0))"); + ("xor.tz", "None", "Right (Pair 0 1)", "(Some (Right 1))"); + ("xor.tz", "None", "Right (Pair 1 0)", "(Some (Right 1))"); + ("xor.tz", "None", "Right (Pair 1 1)", "(Some (Right 0))"); + ("xor.tz", "None", "Right (Pair 42 21)", "(Some (Right 63))"); + ("xor.tz", "None", "Right (Pair 42 63)", "(Some (Right 21))"); + (* test shifts: LSL & LSR *) + ("shifts.tz", "None", "(Left (Pair 8 1))", "(Some 16)"); + ("shifts.tz", "None", "(Left (Pair 0 0))", "(Some 0)"); + ("shifts.tz", "None", "(Left (Pair 0 1))", "(Some 0)"); + ("shifts.tz", "None", "(Left (Pair 1 2))", "(Some 4)"); + ("shifts.tz", "None", "(Left (Pair 15 2))", "(Some 60)"); + ("shifts.tz", "None", "(Right (Pair 8 1))", "(Some 4)"); + ("shifts.tz", "None", "(Right (Pair 0 0))", "(Some 0)"); + ("shifts.tz", "None", "(Right (Pair 0 1))", "(Some 0)"); + ("shifts.tz", "None", "(Right (Pair 1 2))", "(Some 0)"); + ("shifts.tz", "None", "(Right (Pair 15 2))", "(Some 3)"); + (* Concatenate all strings of a list into one string *) + ("concat_list.tz", {|""|}, {|{ "a" ; "b" ; "c" }|}, {|"abc"|}); + ("concat_list.tz", {|""|}, "{}", {|""|}); + ( "concat_list.tz", + {|""|}, + {|{ "Hello" ; " " ; "World" ; "!" }|}, + {|"Hello World!"|} ); + (* Concatenate the bytes in storage with all bytes in the given list *) + ("concat_hello_bytes.tz", "{}", "{ 0xcd }", "{ 0xffcd }"); + ("concat_hello_bytes.tz", "{}", "{}", "{}"); + ("concat_hello_bytes.tz", "{}", "{ 0xab ; 0xcd }", "{ 0xffab ; 0xffcd }"); + (* Identity on lists *) + ("list_id.tz", {|{""}|}, {|{ "1" ; "2" ; "3" }|}, {|{ "1" ; "2" ; "3" }|}); + ("list_id.tz", {|{""}|}, "{}", "{}"); + ("list_id.tz", {|{""}|}, {|{ "a" ; "b" ; "c" }|}, {|{ "a" ; "b" ; "c" }|}); + ( "list_id_map.tz", + {|{""}|}, + {|{ "1" ; "2" ; "3" }|}, + {|{ "1" ; "2" ; "3" }|} ); + ("list_id_map.tz", {|{""}|}, "{}", "{}"); + ( "list_id_map.tz", + {|{""}|}, + {|{ "a" ; "b" ; "c" }|}, + {|{ "a" ; "b" ; "c" }|} ); + (* Identity on maps *) + ("map_id.tz", "{}", "{ Elt 0 1 }", "{ Elt 0 1 }"); + ("map_id.tz", "{}", "{ Elt 0 0 }", "{ Elt 0 0 }"); + ("map_id.tz", "{}", "{ Elt 0 0 ; Elt 3 4 }", "{ Elt 0 0 ; Elt 3 4 }"); + (* Memberships in maps *) + ( "map_mem_nat.tz", + "(Pair { Elt 0 1 } None)", + "1", + "(Pair { Elt 0 1 } (Some False))" ); + ("map_mem_nat.tz", "(Pair {} None)", "1", "(Pair {} (Some False))"); + ( "map_mem_nat.tz", + "(Pair { Elt 1 0 } None)", + "1", + "(Pair { Elt 1 0 } (Some True))" ); + ( "map_mem_nat.tz", + "(Pair { Elt 1 4 ; Elt 2 11 } None)", + "1", + "(Pair { Elt 1 4 ; Elt 2 11 } (Some True))" ); + ( "map_mem_nat.tz", + "(Pair { Elt 1 4 ; Elt 2 11 } None)", + "2", + "(Pair { Elt 1 4 ; Elt 2 11 } (Some True))" ); + ( "map_mem_nat.tz", + "(Pair { Elt 1 4 ; Elt 2 11 } None)", + "3", + {|(Pair { Elt 1 4 ; Elt 2 11 } (Some False))|} ); + ( "map_mem_string.tz", + {|(Pair { Elt "foo" 1 } None)|}, + {|"bar"|}, + {|(Pair { Elt "foo" 1 } (Some False))|} ); + ( "map_mem_string.tz", + {|(Pair {} None)|}, + {|"bar"|}, + {|(Pair {} (Some False))|} ); + ( "map_mem_string.tz", + {|(Pair { Elt "foo" 0 } None)|}, + {|"foo"|}, + {|(Pair { Elt "foo" 0 } (Some True))|} ); + ( "map_mem_string.tz", + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)|}, + {|"foo"|}, + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))|} ); + ( "map_mem_string.tz", + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)|}, + {|"bar"|}, + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))|} ); + ( "map_mem_string.tz", + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)|}, + {|"baz"|}, + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False))|} ); + (* Mapping over maps *) + ("map_map.tz", "{}", "10", "{}"); + ("map_map.tz", {|{ Elt "foo" 1 }|}, "10", {|{ Elt "foo" 11 }|}); + ( "map_map.tz", + {|{ Elt "bar" 5 ; Elt "foo" 1 }|}, + "15", + {|{ Elt "bar" 20 ; Elt "foo" 16 }|} ); + (* Memberships in big maps *) + ( "big_map_mem_nat.tz", + "(Pair { Elt 0 1 } None)", + "1", + "(Pair 4 (Some False))" ); + ("big_map_mem_nat.tz", "(Pair {} None)", "1", "(Pair 4 (Some False))"); + ( "big_map_mem_nat.tz", + "(Pair { Elt 1 0 } None)", + "1", + "(Pair 4 (Some True))" ); + ( "big_map_mem_nat.tz", + "(Pair { Elt 1 4 ; Elt 2 11 } None)", + "1", + "(Pair 4 (Some True))" ); + ( "big_map_mem_nat.tz", + "(Pair { Elt 1 4 ; Elt 2 11 } None)", + "2", + "(Pair 4 (Some True))" ); + ( "big_map_mem_nat.tz", + "(Pair { Elt 1 4 ; Elt 2 11 } None)", + "3", + "(Pair 4 (Some False))" ); + ( "big_map_mem_string.tz", + {|(Pair { Elt "foo" 1 } None)|}, + {|"bar"|}, + "(Pair 4 (Some False))" ); + ( "big_map_mem_string.tz", + "(Pair {} None)", + {|"bar"|}, + "(Pair 4 (Some False))" ); + ( "big_map_mem_string.tz", + {|(Pair { Elt "foo" 0 } None)|}, + {|"foo"|}, + "(Pair 4 (Some True))" ); + ( "big_map_mem_string.tz", + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)|}, + {|"foo"|}, + "(Pair 4 (Some True))" ); + ( "big_map_mem_string.tz", + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)|}, + {|"bar"|}, + "(Pair 4 (Some True))" ); + ( "big_map_mem_string.tz", + {|(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)|}, + {|"baz"|}, + "(Pair 4 (Some False))" ); + (* Identity on sets *) + ("set_id.tz", "{}", {|{ "a" ; "b" ; "c" }|}, {|{ "a" ; "b" ; "c" }|}); + ("set_id.tz", "{}", "{}", "{}"); + ("set_id.tz", "{}", {|{ "asdf" ; "bcde" }|}, {|{ "asdf" ; "bcde" }|}); + (* List concat *) + ("list_concat.tz", {|"abc"|}, {|{ "d" ; "e" ; "f" }|}, {|"abcdef"|}); + ("list_concat.tz", {|"abc"|}, "{}", {|"abc"|}); + ( "list_concat_bytes.tz", + "0x00ab", + "{ 0xcd ; 0xef ; 0x00 }", + "0x00abcdef00" ); + ("list_concat_bytes.tz", "0x", "{ 0x00 ; 0x11 ; 0x00 }", "0x001100"); + ("list_concat_bytes.tz", "0xabcd", "{}", "0xabcd"); + ("list_concat_bytes.tz", "0x", "{}", "0x"); + (* List iter *) + ("list_iter.tz", "0", "{ 10 ; 2 ; 1 }", "20"); + ("list_iter.tz", "0", "{ 3 ; 6 ; 9 }", "162"); + (* List size *) + ("list_size.tz", "111", "{}", "0"); + ("list_size.tz", "111", "{ 1 }", "1"); + ("list_size.tz", "111", "{ 1 ; 2 ; 3 }", "3"); + ("list_size.tz", "111", "{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }", "6"); + (* Set member -- set is in storage *) + ("set_member.tz", "(Pair {} None)", {|"Hi"|}, "(Pair {} (Some False))"); + ( "set_member.tz", + {|(Pair { "Hi" } None)|}, + {|"Hi"|}, + {|(Pair { "Hi" } (Some True))|} ); + ( "set_member.tz", + {|(Pair { "Hello" ; "World" } None)|}, + {|""|}, + {|(Pair { "Hello" ; "World" } (Some False))|} ); + (* Set size *) + ("set_size.tz", "111", "{}", "0"); + ("set_size.tz", "111", "{ 1 }", "1"); + ("set_size.tz", "111", "{ 1 ; 2 ; 3 }", "3"); + ("set_size.tz", "111", "{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }", "6"); + (* Set iter *) + ("set_iter.tz", "111", "{}", "0"); + ("set_iter.tz", "111", "{ 1 }", "1"); + ("set_iter.tz", "111", "{ -100 ; 1 ; 2 ; 3 }", "-94"); + (* Map size *) + ("map_size.tz", "111", "{}", "0"); + ("map_size.tz", "111", {|{ Elt "a" 1 }|}, "1"); + ("map_size.tz", "111", {|{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }|}, "3"); + ( "map_size.tz", + "111", + {|{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }|}, + "6" ); + (* Contains all elements -- does the second list contain all of the same elements as the first one? I'm ignoring element multiplicity *) + ("contains_all.tz", "None", "(Pair {} {})", "(Some True)"); + ("contains_all.tz", "None", {|(Pair { "c" } { "B" })|}, "(Some False)"); + ("contains_all.tz", "None", {|(Pair { "A" } { "B" })|}, "(Some False)"); + ("contains_all.tz", "None", {|(Pair { "B" } { "B" })|}, "(Some True)"); + ( "contains_all.tz", + "None", + {|(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })|}, + "(Some True)" ); + ( "contains_all.tz", + "None", + {|(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })|}, + "(Some True)" ); + (* Concatenate the string in storage with all strings in *) + (* the given list *) + ("concat_hello.tz", "{}", {|{ "World!" }|}, {|{ "Hello World!" }|}); + ("concat_hello.tz", "{}", "{}", "{}"); + ( "concat_hello.tz", + "{}", + {|{ "test1" ; "test2" }|}, + {|{ "Hello test1" ; "Hello test2" }|} ); + (* Create an empty map and add a string to it *) + ("empty_map.tz", "{}", "Unit", {|{ Elt "hello" "world" }|}); + (* Get the value stored at the given key in the map *) + ( "get_map_value.tz", + {|(Pair None { Elt "hello" "hi" })|}, + {|"hello"|}, + {|(Pair (Some "hi") { Elt "hello" "hi" })|} ); + ( "get_map_value.tz", + {|(Pair None { Elt "hello" "hi" })|}, + {|""|}, + {|(Pair None { Elt "hello" "hi" })|} ); + ( "get_map_value.tz", + {|(Pair None { Elt "1" "one" ; Elt "2" "two" })|}, + {|"1"|}, + {|(Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" })|} ); + (* Get and update the value stored at the given key in the map *) + ("get_and_update_map.tz", "(Pair None {})", {|"hello"|}, "(Pair None {})"); + ( "get_and_update_map.tz", + "(Pair (Some 4) {})", + {|"hello"|}, + {|(Pair None { Elt "hello" 4 })|} ); + ( "get_and_update_map.tz", + {|(Pair None { Elt "hello" 4 })|}, + {|"hello"|}, + "(Pair (Some 4) {})" ); + ( "get_and_update_map.tz", + {|(Pair (Some 5) { Elt "hello" 4 })|}, + {|"hello"|}, + {|(Pair (Some 4) { Elt "hello" 5 })|} ); + ( "get_and_update_map.tz", + {|(Pair (Some 5) { Elt "hello" 4 })|}, + {|"hi"|}, + {|(Pair None { Elt "hello" 4 ; Elt "hi" 5 })|} ); + ( "get_and_update_map.tz", + {|(Pair None { Elt "1" 1 ; Elt "2" 2 })|}, + {|"1"|}, + {|(Pair (Some 1) { Elt "2" 2 })|} ); + ( "get_and_update_map.tz", + {|(Pair None { Elt "1" 1 ; Elt "2" 2 })|}, + {|"2"|}, + {|(Pair (Some 2) { Elt "1" 1 })|} ); + (* Map iter *) + ("map_iter.tz", "(Pair 0 0)", "{ Elt 0 100 ; Elt 2 100 }", "(Pair 2 200)"); + ("map_iter.tz", "(Pair 0 0)", "{ Elt 1 1 ; Elt 2 100 }", "(Pair 3 101)"); + (* Return True if True branch of if was taken and False otherwise *) + ("if.tz", "None", "True", "(Some True)"); + ("if.tz", "None", "False", "(Some False)"); + (* Generate a pair of or types *) + ("left_right.tz", {|(Left "X")|}, "(Left True)", "(Right True)"); + ("left_right.tz", {|(Left "X")|}, {|(Right "a")|}, {|(Left "a")|}); + (* Reverse a list *) + ("reverse_loop.tz", {|{""}|}, "{}", "{}"); + ( "reverse_loop.tz", + {|{""}|}, + {|{ "c" ; "b" ; "a" }|}, + {|{ "a" ; "b" ; "c" }|} ); + (* Exec concat contract *) + ("exec_concat.tz", {|"?"|}, {|""|}, {|"_abc"|}); + ("exec_concat.tz", {|"?"|}, {|"test"|}, {|"test_abc"|}); + (* Get the current balance of the contract *) + ("balance.tz", "111", "Unit", "4000000000000"); + (* Get the current level of the block *) + (* Test the produced variable annotation *) + ("level.tz", "111", "Unit", "1"); + (* Test addition and subtraction on tez *) + ( "tez_add_sub.tz", + "None", + "(Pair 2000000 1000000)", + "(Some (Pair 3000000 1000000))" ); + ( "tez_add_sub.tz", + "None", + "(Pair 2310000 1010000)", + "(Some (Pair 3320000 1300000))" ); + (* Test various additions *) + ("add.tz", "Unit", "Unit", "Unit"); + (* Test ABS *) + ("abs.tz", "Unit", "12039123919239192312931", "Unit"); + ("abs.tz", "Unit", "0", "Unit"); + ("abs.tz", "Unit", "948", "Unit"); + (* Test INT *) + ("int.tz", "None", "0", "(Some 0)"); + ("int.tz", "None", "1", "(Some 1)"); + ("int.tz", "None", "9999", "(Some 9999)"); + (* Test DIP *) + ("dip.tz", "(Pair 0 0)", "(Pair 15 9)", "(Pair 15 24)"); + ("dip.tz", "(Pair 0 0)", "(Pair 1 1)", "(Pair 1 2)"); + (* Test get first element of list *) + ("first.tz", "111", "{ 1 ; 2 ; 3 ; 4 }", "1"); + ("first.tz", "111", "{ 4 }", "4"); + (* Hash input string *) + (* Test assumed to be correct -- hash is based on encoding of AST *) + ( "hash_string.tz", + "0x00", + {|"abcdefg"|}, + "0x46fdbcb4ea4eadad5615c" + ^ "daa17d67f783e01e21149ce2b27de497600b4cd8f4e" ); + ( "hash_string.tz", + "0x00", + {|"12345"|}, + "0xb4c26c20de52a4eaf0d8a34" + ^ "0db47ad8cb1e74049570859c9a9a3952b204c772f" ); + (* IF_SOME *) + ("if_some.tz", {|"?"|}, {|(Some "hello")|}, {|"hello"|}); + ("if_some.tz", {|"?"|}, "None", {|""|}); + (* Tests the SET_CAR and SET_CDR instructions *) + ("set_car.tz", {|(Pair "hello" 0)|}, {|"world"|}, {|(Pair "world" 0)|}); + ("set_car.tz", {|(Pair "hello" 0)|}, {|"abc"|}, {|(Pair "abc" 0)|}); + ("set_car.tz", {|(Pair "hello" 0)|}, {|""|}, {|(Pair "" 0)|}); + ("set_cdr.tz", {|(Pair "hello" 0)|}, "1", {|(Pair "hello" 1)|}); + ("set_cdr.tz", {|(Pair "hello" 500)|}, "3", {|(Pair "hello" 3)|}); + ("set_cdr.tz", {|(Pair "hello" 7)|}, "100", {|(Pair "hello" 100)|}); + (* Convert a public key to a public key hash *) + ( "hash_key.tz", + "None", + {|"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"|}, + {|(Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")|} ); + ( "hash_key.tz", + "None", + {|"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"|}, + {|(Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")|} ); + (* Test timestamp operations *) + ( "add_timestamp_delta.tz", + "None", + "(Pair 100 100)", + {|(Some "1970-01-01T00:03:20Z")|} ); + ( "add_timestamp_delta.tz", + "None", + "(Pair 100 -100)", + {|(Some "1970-01-01T00:00:00Z")|} ); + ( "add_timestamp_delta.tz", + "None", + {|(Pair "1970-01-01T00:00:00Z" 0)|}, + {|(Some "1970-01-01T00:00:00Z")|} ); + ( "add_delta_timestamp.tz", + "None", + "(Pair 100 100)", + {|(Some "1970-01-01T00:03:20Z")|} ); + ( "add_delta_timestamp.tz", + "None", + "(Pair -100 100)", + {|(Some "1970-01-01T00:00:00Z")|} ); + ( "add_delta_timestamp.tz", + "None", + {|(Pair 0 "1970-01-01T00:00:00Z")|}, + {|(Some "1970-01-01T00:00:00Z")|} ); + ( "sub_timestamp_delta.tz", + "111", + "(Pair 100 100)", + {|"1970-01-01T00:00:00Z"|} ); + ( "sub_timestamp_delta.tz", + "111", + "(Pair 100 -100)", + {|"1970-01-01T00:03:20Z"|} ); + ( "sub_timestamp_delta.tz", + "111", + "(Pair 100 2000000000000000000)", + "-1999999999999999900" ); + ("diff_timestamps.tz", "111", "(Pair 0 0)", "0"); + ("diff_timestamps.tz", "111", "(Pair 0 1)", "-1"); + ("diff_timestamps.tz", "111", "(Pair 1 0)", "1"); + ( "diff_timestamps.tz", + "111", + {|(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")|}, + "200" ); + (* Test pack/unpack *) + ( "packunpack_rev.tz", + "Unit", + {|(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))|}, + "Unit" ); + ( "packunpack_rev.tz", + "Unit", + {|(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))|}, + "Unit" ); + ( "packunpack_rev_cty.tz", + "Unit", + {|(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))|}, + "Unit" ); + ( "packunpack_rev_cty.tz", + "Unit", + {|(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))|}, + "Unit" ); + (* Test EDIV on nat and int *) + ( "ediv.tz", + "(Pair None None None None)", + "(Pair 10 -3)", + "(Pair (Some (Pair -3 1)) (Some (Pair 3 1)) " + ^ "(Some (Pair -3 1)) (Some (Pair 3 1)))" ); + ( "ediv.tz", + "(Pair None None None None)", + "(Pair 10 0)", + "(Pair None None None None)" ); + ( "ediv.tz", + "(Pair None None None None)", + "(Pair -8 2)", + "(Pair (Some (Pair -4 0)) (Some (Pair -4 0)) " + ^ "(Some (Pair 4 0)) (Some (Pair 4 0)))" ); + (* Test EDIV on mutez *) + ( "ediv_mutez.tz", + "(Left None)", + "(Pair 10 (Left 10))", + "(Left (Some (Pair 1 0)))" ); + ( "ediv_mutez.tz", + "(Left None)", + "(Pair 10 (Left 3))", + "(Left (Some (Pair 3 1)))" ); + ("ediv_mutez.tz", "(Left None)", "(Pair 10 (Left 0))", "(Left None)"); + ( "ediv_mutez.tz", + "(Left None)", + "(Pair 10 (Right 10))", + "(Right (Some (Pair 1 0)))" ); + ( "ediv_mutez.tz", + "(Left None)", + "(Pair 10 (Right 3))", + "(Right (Some (Pair 3 1)))" ); + ("ediv_mutez.tz", "(Left None)", "(Pair 10 (Right 0))", "(Right None)"); + ( "ediv_mutez.tz", + "(Left None)", + "(Pair 5 (Right 10))", + "(Right (Some (Pair 0 5)))" ); + (* Test compare *) + ("compare.tz", "Unit", "Unit", "Unit"); + (* Test comparison combinators: *) + (* GT, GE, LT, LE, NEQ, EQ *) + ( "comparisons.tz", + "{}", + "{ -9999999; -1 ; 0 ; 1 ; 9999999 }", + "{ " + ^ "{ False ; False ; False ; True ; True } ;\n\ + \ { False ; False ; True ; True ; True } ;\n\ + \ { True ; True ; False ; False ; False } ;\n\ + \ { True ; True ; True ; False ; False } ;\n\ + \ { True ; True ; False ; True ; True } ;\n\ + \ { False ; False ; True ; False ; False } }" ); + (* Test ADDRESS *) + ( "address.tz", + "None", + {|"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"|}, + {|(Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")|} ); + (* Test (CONTRACT unit) *) + ("contract.tz", "Unit", {|"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"|}, "Unit"); + (* Test create_contract *) + ( "create_contract.tz", + "None", + "Unit", + {|(Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")|} ); + (* Test multiplication - success case (no overflow) *) + (* Failure case is tested in mul_overflow.tz *) + ("mul.tz", "Unit", "Unit", "Unit"); + (* Test NEG *) + ("neg.tz", "0", "(Left 2)", "-2"); + ("neg.tz", "0", "(Right 2)", "-2"); + ("neg.tz", "0", "(Left 0)", "0"); + ("neg.tz", "0", "(Right 0)", "0"); + ("neg.tz", "0", "(Left -2)", "2"); + (* Test DIGN, DUGN, DROPN, DIPN *) + ("dign.tz", "0", "(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)", "5"); + ("dugn.tz", "0", "(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)", "1"); + ("dropn.tz", "0", "(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)", "5"); + ("dipn.tz", "0", "(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)", "6"); + (* Test DIGN 17 times. *) + ( "dig_eq.tz", + "Unit", + "(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12" + ^ " (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (P" + ^ "air 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))", + "Unit" ); + ( "dig_eq.tz", + "Unit", + "(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (" + ^ "Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pa" + ^ "ir 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))", + "Unit" ); + (* Test Partial Exec *) + ("pexec.tz", "14", "38", "52"); + ("pexec_2.tz", "{ 0 ; 1 ; 2 ; 3}", "4", "{ 0 ; 7 ; 14 ; 21 }"); + (* Test CHAIN_ID *) + ("chain_id_store.tz", "None", "Unit", {|(Some "NetXynUjJNZm7wi")|}); + ( "chain_id_store.tz", + "(Some 0x7a06a770)", + "Unit", + {|(Some "NetXynUjJNZm7wi")|} ); + ( "chain_id_store.tz", + {|(Some "NetXynUjJNZm7wi")|}, + "Unit", + {|(Some "NetXynUjJNZm7wi")|} ); + (* Test SELF *) + ("self_with_entrypoint.tz", "Unit", "Left (Left 0)", "Unit"); + ("self_with_default_entrypoint.tz", "Unit", "Unit", "Unit"); + (* Test SELF_ADDRESS *) + ("self_address.tz", "Unit", "Unit", "Unit"); + (* Test UNPAIR *) + ("unpair.tz", "Unit", "Unit", "Unit"); + (* Test VOTING_POWER *) + ( "voting_power.tz", + "(Pair 0 0)", + sf {|"%s"|} public_key, + "(Pair 4000000000000 20000000000000)" ); + (* Test KECCAK *) + ( "keccak.tz", + "None", + "0x" ^ hex "Hello, world!", + "(Some 0xb6e16d27ac5ab427a7f68900ac5559ce2" + ^ "72dc6c37c82b3e052246c82244c50e4)" ); + (* Test SHA3 *) + ( "sha3.tz", + "None", + "0x" ^ hex "Hello, world!", + "(Some 0xf345a219da005ebe9c1a1eaad97bbf38" + ^ "a10c8473e41d0af7fb617caa0c6aa722)" ); + (* Test COMBs *) + ("comb.tz", "(Pair 0 0 0)", "Unit", "(Pair 1 2 3)"); + ("uncomb.tz", "0", "(Pair 1 4 2)", "142"); + ("comb-get.tz", "Unit", "(Pair 1 4 2 Unit)", "Unit"); + ("comb-set.tz", "(Pair 1 4 2 Unit)", "Unit", "(Pair 2 12 8 Unit)"); + ( "comb-set-2.tz", + "None", + "(Pair 1 4 2 Unit)", + {|(Some (Pair 2 4 "toto" 0x01))|} ); + (* Test DUP n *) + ("dup-n.tz", "Unit", "Unit", "Unit"); + (* Test Sapling *) + ("sapling_empty_state.tz", "{}", "Unit", "0"); + (* Test building Fr element from nat. *) + (* The initial storage is dropped then any value is valid. *) + (* Random values can be generated using the following OCaml program. *) + (* let r = Bls12_381.Fr.(random ()) in *) + (* let x = Bls12_381.Fr.random () in *) + (* Printf.printf "Param = (Pair %s 0x%s). Result = 0x%s" *) + (* (Bls12_381.Fr.to_string r) *) + (* (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes x)))) *) + (* (Hex.(show (of_bytes (Bls12_381.Fr.(to_bytes (mul r x)))))) *) + ( "bls12_381_fr_z_nat.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "0", + "0x00000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_fr_z_nat.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "1", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + (* The natural is 1 in Fr. *) + ( "bls12_381_fr_z_nat.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "52435875175126190479447740508185965837690552500527637822603658699938581184514", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_fr_z_nat.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "2", + "0x02000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_fr_z_nat.tz", + "0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c" + ^ "5401f", + "3364491663033484423912034843462646864953418677080980279259699" + ^ "6408934105684394", + "0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91" + ^ "8a221" ); + ( "bls12_381_fr_z_nat.tz", + "0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc" + ^ "dbe3f", + "2262028481792278490256467246991799299632821112798447289749169" + ^ "8543785655336309", + "0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6" + ^ "77c62" ); + ( "bls12_381_fr_z_nat.tz", + "0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7" + ^ "fcf2d", + "1718009307279455880617703583439793220591757728848373965251048" + ^ "2486858834123369", + "0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec" + ^ "bf221" ); + (* Same than previous one, but we added the order to the natural to *) + (* verify the modulo is computed correctly and the multiplication *) + (* computation does not fail. *) + ( "bls12_381_fr_z_nat.tz", + "0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7" + ^ "fcf2d", + "69615968247920749285624776342583898043608129789011377475114141" + ^ "186797415307882", + "0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec" + ^ "bf221" ); + (* Test with (positive and negative) integers. *) + ( "bls12_381_fr_z_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "0", + "0x00000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_fr_z_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "1", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_fr_z_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "52435875175126190479447740508185965837690552500527637822603658699938581184514", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_fr_z_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "2", + "0x02000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_fr_z_int.tz", + "0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c" + ^ "5401f", + "3364491663033484423912034843462646864953418677080980279259699" + ^ "6408934105684394", + "0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91" + ^ "8a221" ); + ( "bls12_381_fr_z_int.tz", + "0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc" + ^ "dbe3f", + "2262028481792278490256467246991799299632821112798447289749169" + ^ "8543785655336309", + "0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6" + ^ "77c62" ); + ( "bls12_381_fr_z_int.tz", + "0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7" + ^ "fcf2d", + "1718009307279455880617703583439793220591757728848373965251048" + ^ "2486858834123369", + "0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec" + ^ "bf221" ); + (* Same than previous one, but we added the order to the natural to *) + (* verify the modulo is computed correctly and the multiplication *) + (* computation does not fail. *) + ( "bls12_381_fr_z_int.tz", + "0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7" + ^ "fcf2d", + "69615968247920749285624776342583898043608129789011377475114141" + ^ "186797415307882", + "0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec" + ^ "bf221" ); + ( "bls12_381_fr_z_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "-1", + "0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953" + ^ "a7ed73" ); + ( "bls12_381_fr_z_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "-42", + "0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a" + ^ "7ed73" ); + (* Test building Fr element from nat. *) + (* The initial storage is dropped then any value is valid. *) + (* Random values can be generated using the following OCaml program. *) + (* let r = Bls12_381.Fr.(random ()) in *) + (* let x = Bls12_381.Fr.random () in *) + (* Printf.printf "Param = (Pair %s 0x%s). Result = 0x%s" *) + (* (Bls12_381.Fr.to_string r) *) + (* (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes x)))) *) + (* (Hex.(show (of_bytes (Bls12_381.Fr.(to_bytes (mul r x)))))) *) + ( "bls12_381_z_fr_nat.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "0", + "0x00000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_z_fr_nat.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "1", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + (* The natural is 1 in Fr. *) + ( "bls12_381_z_fr_nat.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "52435875175126190479447740508185965837690552500527637822603658699938581184514", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_z_fr_nat.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "2", + "0x02000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_z_fr_nat.tz", + "0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c" + ^ "5401f", + "3364491663033484423912034843462646864953418677080980279259699" + ^ "6408934105684394", + "0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91" + ^ "8a221" ); + ( "bls12_381_z_fr_nat.tz", + "0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc" + ^ "dbe3f", + "2262028481792278490256467246991799299632821112798447289749169" + ^ "8543785655336309", + "0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6" + ^ "77c62" ); + ( "bls12_381_z_fr_nat.tz", + "0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7" + ^ "fcf2d", + "1718009307279455880617703583439793220591757728848373965251048" + ^ "2486858834123369", + "0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec" + ^ "bf221" ); + (* Same than previous one, but we added the order to the natural to *) + (* verify the modulo is computed correctly and the multiplication *) + (* computation does not fail. *) + ( "bls12_381_z_fr_nat.tz", + "0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7" + ^ "fcf2d", + "69615968247920749285624776342583898043608129789011377475114141" + ^ "186797415307882", + "0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec" + ^ "bf221" ); + (* Test with (positive and negative) integers. *) + ( "bls12_381_z_fr_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "0", + "0x00000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_z_fr_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "1", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_z_fr_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "52435875175126190479447740508185965837690552500527637822603658699938581184514", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_z_fr_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "2", + "0x02000000000000000000000000000000000000000000000000000000000" + ^ "00000" ); + ( "bls12_381_z_fr_int.tz", + "0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c" + ^ "5401f", + "3364491663033484423912034843462646864953418677080980279259699" + ^ "6408934105684394", + "0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca91" + ^ "8a221" ); + ( "bls12_381_z_fr_int.tz", + "0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfc" + ^ "dbe3f", + "2262028481792278490256467246991799299632821112798447289749169" + ^ "8543785655336309", + "0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe6" + ^ "77c62" ); + ( "bls12_381_z_fr_int.tz", + "0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7" + ^ "fcf2d", + "1718009307279455880617703583439793220591757728848373965251048" + ^ "2486858834123369", + "0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec" + ^ "bf221" ); + ( "bls12_381_z_fr_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "-1", + "0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953" + ^ "a7ed73" ); + ( "bls12_381_z_fr_int.tz", + "0x01000000000000000000000000000000000000000000000000000000000" + ^ "00000", + "-42", + "0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a" + ^ "7ed73" ); + (* Same than previous one, but we added the order to the natural to *) + (* verify the modulo is computed correctly and the multiplication *) + (* computation does not fail. *) + ( "bls12_381_z_fr_int.tz", + "0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7" + ^ "fcf2d", + "69615968247920749285624776342583898043608129789011377475114141" + ^ "186797415307882", + "0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddec" + ^ "bf221" ); + (* Test Fr bytes can be pushed without being padded *) + ( "add_bls12_381_fr.tz", + "None", + "Pair 0x00 0x00", + "(Some 0x000000000000000000000000000000000000000000000000000000" + ^ "0000000000)" ); + ( "add_bls12_381_fr.tz", + "None", + "Pair 0x01 0x00", + "(Some 0x010000000000000000000000000000000000000000000000000000" + ^ "0000000000)" ); + ( "add_bls12_381_fr.tz", + "None", + "Pair 0x010000 0x00", + "(Some 0x010000000000000000000000000000000000000000000000000000" + ^ "0000000000)" ); + ( "add_bls12_381_fr.tz", + "None", + "Pair 0x010000 0x010000", + "(Some 0x020000000000000000000000000000000000000000000000000000" + ^ "0000000000)" ); + ( "bls12_381_fr_push_bytes_not_padded.tz", + "None", + "Unit", + "(Some 0x000000000000000000000000000000000000000000000000000000" + ^ "0000000000)" ); + ( "bls12_381_fr_push_nat.tz", + "None", + "Unit", + "(Some 0x100000000000000000000000000000000000000000000000000000" + ^ "0000000000)" ); + ("bls12_381_fr_to_int.tz", "0", "0x00", "0"); + ("bls12_381_fr_to_int.tz", "0", "0x01", "1"); + (* Generated using *) + (* let r = Bls12_381.Fr.(random ()) in *) + (* Printf.printf "%s = 0x%s" *) + (* (Bls12_381.Fr.to_string r) *) + (* (Hex.(show (of_bytes (Bls12_381.Fr.to_bytes r)))) *) + ( "bls12_381_fr_to_int.tz", + "0", + "0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9" + ^ "af16c27", + "1783268807701357777652478449446472851821391321341286660405373" + ^ "5695200962927400" ); + ( "bls12_381_fr_to_int.tz", + "0", + "0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c" + ^ "0b0719", + "1132026582925658583078152196614952946047676740821044523890286" + ^ "9222031333517497" ); + (* Mutez -> Fr *) + ( "mutez_to_bls12_381_fr.tz", + "0x02", + "16", + "0x100000000000000000000000000000000000000000000000000000000" + ^ "0000000" ); + (* # would fail if trying to PACK mutez and UNPACK to Fr *) + ( "mutez_to_bls12_381_fr.tz", + "0x00", + "257", + "0x010100000000000000000000000000000000000000000000000000000" + ^ "0000000" ); + (* Fr -> Mutez *) + ("bls12_381_fr_to_mutez.tz", "0", "0x10", "16"); + ] + in + Fun.flip List.iter parameterization + @@ fun (contract, storage, input, expected) -> + ( Protocol.register_regression_test + ~__FILE__ + ~title: + (sf + "opcodes [%s--storage%d--input%d]" + contract + (Hashtbl.hash storage) + (Hashtbl.hash input)) + ~tags:["michelson"] + @@ fun protocol -> + let client = Client.create_with_mode Mockup in + let contract = + sf + "./tests_python/contracts_%s/opcodes/%s" + (match protocol with + | Alpha -> "alpha" + | _ -> sf "%03d" (Protocol.number protocol)) + contract + in + let* run_script_res_storage = + Client.run_script + ~protocol_hash:(Protocol.hash protocol) + ~no_base_dir_warnings:true + ~trace_stack:true + ~hooks + ~prg:contract + ~storage + ~input + (* We force the level to 1 to get consistent results from the + [LEVEL] instructions *) + ~level:1 + client + in + let error_msg = + "Expected storage %R, got %L when executing" + ^ sf " %s with input %s and storage %s" contract input storage + in + Check.((run_script_res_storage = expected) string ~__LOC__ ~error_msg) ; + unit ) + protocols + +let register ~protocols = test_contract_opcodes protocols diff --git a/tezt/tests/main.ml b/tezt/tests/main.ml index 417714838305..93b401f920c5 100644 --- a/tezt/tests/main.ml +++ b/tezt/tests/main.ml @@ -108,6 +108,7 @@ let register_protocol_tests_that_use_supports_correctly () = Comparable_datatype.register ~protocols ; Contract_hash_fun.register ~protocols ; Contract_hash_with_origination.register ~protocols ; + Contract_opcodes.register ~protocols ; Create_contract.register ~protocols ; Deposits_limit.register ~protocols ; Double_bake.register ~protocols ; -- GitLab From caf9b04da2b6c809ae501477ffecb4a698e75a3d Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Thu, 13 Oct 2022 14:51:10 +0200 Subject: [PATCH 15/17] Tezt/contract_opcodes: replace pytest with tezt traces for Kathmandu --- ...prcVkpaWU\")-Unit-(Some \".8420090f97.out" | 23 ------------------- ....tz--storage125992234--input254251340-.out | 2 +- ....tz--storage125992234--input420401245-.out | 2 +- ....tz--storage125992234--input680650890-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage921624073--input322109491-.out | 2 +- ....tz--storage921624073--input461261325-.out | 2 +- ....tz--storage921624073--input530006774-.out | 2 +- ....tz--storage921624073--input712570300-.out | 2 +- ....tz--storage921624073--input249636002-.out | 2 +- ....tz--storage921624073--input267363182-.out | 2 +- ....tz--storage921624073--input438561129-.out | 2 +- ....tz--storage921624073--input249636002-.out | 2 +- ....tz--storage921624073--input307538219-.out | 2 +- ....tz--storage921624073--input373737581-.out | 2 +- ....tz--storage921624073--input117475800-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage570553153--input106930123-.out | 2 +- ....tz--storage570553153--input181204719-.out | 2 +- ....tz--storage570553153--input223774825-.out | 2 +- ....tz--storage570553153--input908807505-.out | 2 +- ....tz--storage492856247--input125992234-.out | 2 +- ....tz--storage495706788--input453441034-.out | 2 +- ...t.tz--storage56274299--input453441034-.out | 2 +- ...t.tz--storage56274299--input564400327-.out | 2 +- ...t.tz--storage56274299--input654274102-.out | 2 +- ....tz--storage690637660--input453441034-.out | 2 +- ....tz--storage806237530--input453441034-.out | 2 +- ...tz--storage109689253--input1071610051-.out | 2 +- ....tz--storage109689253--input700475845-.out | 2 +- ....tz--storage109689253--input905318451-.out | 2 +- ....tz--storage495706788--input700475845-.out | 2 +- ....tz--storage915708427--input700475845-.out | 2 +- ....tz--storage936682951--input905318451-.out | 2 +- ...s_not_padded.tz--storage921624073--inp.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ...tz--storage680650890--input1043734173-.out | 2 +- ....tz--storage680650890--input151303925-.out | 2 +- ....tz--storage680650890--input520610122-.out | 2 +- ....tz--storage680650890--input558805129-.out | 2 +- ....tz--storage680650890--input229402968-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input585234482-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage994282947--input701858804-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input585234482-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage994282947--input701858804-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage680650890--input783124233-.out | 2 +- ....tz--storage680650890--input783124233-.out | 2 +- ....tz--storage109160754--input125992234-.out | 12 +++++----- ....tz--storage921624073--input125992234-.out | 12 +++++----- ....tz--storage981066851--input125992234-.out | 23 +++++++++++++++++++ ....tz--storage125992234--input186507116-.out | 2 +- ....tz--storage921624073--input186507116-.out | 2 +- ....tz--storage186507116--input125992234-.out | 2 +- ....tz--storage950292965--input125992234-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage457300675--input281780712-.out | 2 +- ....tz--storage457300675--input392583650-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ....tz--storage457300675--input640104625-.out | 2 +- ....tz--storage457300675--input354091714-.out | 2 +- ....tz--storage457300675--input441061063-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ...t.tz--storage79230375--input264787654-.out | 2 +- ...t.tz--storage79230375--input316676251-.out | 2 +- ...t.tz--storage79230375--input457300675-.out | 2 +- ....tz--storage457300675--input798141440-.out | 2 +- ....tz--storage581876226--input166122047-.out | 2 +- ....tz--storage793461282--input781487591-.out | 2 +- ....tz--storage921624073--input315650912-.out | 2 +- ...l.tz--storage921624073--input51111414-.out | 2 +- ....tz--storage921624073--input545734274-.out | 2 +- ....tz--storage921624073--input772794967-.out | 2 +- ....tz--storage921624073--input917967660-.out | 2 +- ....tz--storage921624073--input964818218-.out | 2 +- ....tz--storage125992234--input117475800-.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ...tz--storage492856247--input1011138251-.out | 2 +- ...tz--storage492856247--input1018564342-.out | 2 +- ...tz--storage492856247--input1031049988-.out | 2 +- ....tz--storage492856247--input685590443-.out | 2 +- ....tz--storage125992234--input246866101-.out | 2 +- ...q.tz--storage125992234--input26856104-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ...tz--storage1011138251--input590117173-.out | 2 +- ...tz--storage1011138251--input850887554-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage994417987--input247451205-.out | 2 +- ....tz--storage994417987--input250545589-.out | 2 +- ...v.tz--storage994417987--input79625541-.out | 2 +- ....tz--storage977883604--input147133089-.out | 2 +- ....tz--storage977883604--input215785357-.out | 2 +- ....tz--storage977883604--input389351431-.out | 2 +- ...z.tz--storage977883604--input44513000-.out | 2 +- ....tz--storage977883604--input635398196-.out | 2 +- ....tz--storage977883604--input734264738-.out | 2 +- ....tz--storage977883604--input993071382-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage457300675--input125992234-.out | 2 +- ....tz--storage398998998--input246262487-.out | 2 +- ...t.tz--storage398998998--input79230375-.out | 2 +- ....tz--storage492856247--input478406404-.out | 2 +- ....tz--storage492856247--input962874972-.out | 2 +- ...tz--storage1026405794--input329240220-.out | 2 +- ....tz--storage382368661--input329240220-.out | 2 +- ....tz--storage496578814--input329240220-.out | 2 +- ....tz--storage496578814--input507231566-.out | 2 +- ....tz--storage547821324--input329240220-.out | 2 +- ....tz--storage796012494--input156280093-.out | 2 +- ....tz--storage796012494--input228164856-.out | 2 +- ....tz--storage139236239--input329240220-.out | 2 +- ...e.tz--storage139236239--input79230375-.out | 2 +- ....tz--storage329396864--input156280093-.out | 2 +- ...tz--storage921624073--input1040351577-.out | 2 +- ....tz--storage921624073--input153350004-.out | 2 +- ...ng.tz--storage151303925--input3431716-.out | 2 +- ....tz--storage151303925--input535018041-.out | 2 +- ....tz--storage921624073--input570553153-.out | 2 +- ....tz--storage921624073--input954397288-.out | 2 +- ....tz--storage398998998--input288201633-.out | 2 +- ....tz--storage398998998--input921624073-.out | 2 +- ....tz--storage921624073--input453441034-.out | 2 +- ....tz--storage921624073--input535454136-.out | 2 +- ....tz--storage921624073--input680650890-.out | 2 +- ...tz--storage921624073--input1008262038-.out | 2 +- ...ht.tz--storage4177631--input202098045-.out | 2 +- ...ght.tz--storage4177631--input44576556-.out | 2 +- ....tz--storage492856247--input125992234-.out | 2 +- ....tz--storage717096222--input457300675-.out | 2 +- ....tz--storage717096222--input546523343-.out | 2 +- ....tz--storage149262694--input220724351-.out | 2 +- ....tz--storage149262694--input457300675-.out | 2 +- ...s.tz--storage65410082--input457300675-.out | 2 +- ....tz--storage726220441--input972761363-.out | 2 +- ....tz--storage528921618--input264787654-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input656499821-.out | 2 +- ....tz--storage528921618--input264787654-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input656499821-.out | 2 +- ....tz--storage680650890--input568817463-.out | 2 +- ....tz--storage680650890--input737923774-.out | 2 +- ....tz--storage907453363--input457300675-.out | 2 +- ....tz--storage907453363--input648737279-.out | 2 +- ....tz--storage907453363--input908379154-.out | 2 +- ....tz--storage492856247--input403499055-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input469078912-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ...tz--storage457300675--input1027566226-.out | 2 +- ....tz--storage457300675--input276660554-.out | 2 +- ....tz--storage457300675--input599923743-.out | 2 +- ...tz--storage1011138251--input403579222-.out | 2 +- ...tz--storage1011138251--input532072758-.out | 2 +- ....tz--storage457300675--input798141440-.out | 2 +- ....tz--storage794999348--input152441147-.out | 2 +- ...p.tz--storage88008216--input798141440-.out | 2 +- ....tz--storage495706788--input453441034-.out | 2 +- ...t.tz--storage56274299--input453441034-.out | 2 +- ...t.tz--storage56274299--input564400327-.out | 2 +- ...t.tz--storage56274299--input654274102-.out | 2 +- ....tz--storage690637660--input453441034-.out | 2 +- ....tz--storage806237530--input453441034-.out | 2 +- ...tz--storage109689253--input1071610051-.out | 2 +- ....tz--storage109689253--input700475845-.out | 2 +- ....tz--storage109689253--input905318451-.out | 2 +- ....tz--storage495706788--input700475845-.out | 2 +- ....tz--storage915708427--input700475845-.out | 2 +- ....tz--storage936682951--input905318451-.out | 2 +- ...e.tz--storage492856247--input15265129-.out | 2 +- ....tz--storage492856247--input158311065-.out | 2 +- ....tz--storage492856247--input456982702-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage151303925--input216277421-.out | 2 +- ....tz--storage287799761--input485842614-.out | 2 +- ...tz--storage680650890--input1067298059-.out | 2 +- ....tz--storage680650890--input380029349-.out | 2 +- ....tz--storage680650890--input563503226-.out | 2 +- ....tz--storage680650890--input788662499-.out | 2 +- ....tz--storage680650890--input972832189-.out | 2 +- ...e.tz--storage11179311--input125992234-.out | 2 +- ....tz--storage921624073--input570553153-.out | 2 +- ....tz--storage921624073--input954397288-.out | 2 +- ...tz--storage921624073--input1051197453-.out | 2 +- ....tz--storage921624073--input123939249-.out | 2 +- ...y.tz--storage921624073--input24243730-.out | 2 +- ....tz--storage921624073--input518945720-.out | 2 +- ....tz--storage921624073--input788662499-.out | 2 +- ....tz--storage921624073--input906118781-.out | 2 +- ....tz--storage921624073--input921874253-.out | 2 +- ....tz--storage921624073--input972832189-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ...tz--storage921624073--input1056991424-.out | 2 +- ....tz--storage921624073--input375993021-.out | 2 +- ....tz--storage921624073--input673240563-.out | 2 +- ....tz--storage921624073--input747448890-.out | 2 +- ....tz--storage921624073--input832403787-.out | 2 +- ....tz--storage921624073--input858098961-.out | 2 +- ....tz--storage125992234--input305844558-.out | 2 +- ....tz--storage125992234--input646365167-.out | 2 +- ...tz--storage125992234--input1028781121-.out | 2 +- ....tz--storage125992234--input802670583-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ...tz--storage256947135--input1050356042-.out | 2 +- ....tz--storage197120858--input179371027-.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ....tz--storage457300675--input125992234-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ...ypoint.tz--storage125992234--input1259.out | 2 +- ....tz--storage125992234--input289072903-.out | 2 +- ....tz--storage224747103--input620760059-.out | 2 +- ....tz--storage224747103--input717096222-.out | 2 +- ...r.tz--storage224747103--input79230375-.out | 2 +- ....tz--storage205576101--input654274102-.out | 2 +- ....tz--storage224747103--input453441034-.out | 2 +- ....tz--storage611418174--input967284912-.out | 2 +- ....tz--storage457300675--input264787654-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ....tz--storage457300675--input989507347-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input701684511-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ...r.tz--storage495706788--input33757838-.out | 2 +- ...r.tz--storage550087893--input79230375-.out | 2 +- ...r.tz--storage605111220--input33757838-.out | 2 +- ....tz--storage492856247--input403499055-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input469078912-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ...tz--storage921624073--input1008262038-.out | 2 +- ....tz--storage921624073--input115382786-.out | 2 +- ....tz--storage921624073--input271566295-.out | 2 +- ....tz--storage921624073--input340971987-.out | 2 +- ....tz--storage921624073--input374168553-.out | 2 +- ....tz--storage921624073--input413621582-.out | 2 +- ....tz--storage921624073--input424849461-.out | 2 +- ....tz--storage921624073--input485030042-.out | 2 +- ....tz--storage921624073--input705767726-.out | 2 +- ....tz--storage921624073--input769385932-.out | 2 +- ....tz--storage921624073--input913715337-.out | 2 +- ...e.tz--storage351480851--input65907686-.out | 2 +- ....tz--storage364922380--input198821575-.out | 2 +- ....tz--storage364922380--input359592843-.out | 2 +- ....tz--storage364922380--input551316239-.out | 2 +- ....tz--storage364922380--input722749044-.out | 2 +- ....tz--storage364922380--input839234860-.out | 2 +- ....tz--storage364922380--input919180079-.out | 2 +- ....tz--storage921624073--input551316239-.out | 2 +- ....tz--storage229749865--input198821575-.out | 2 +- ....tz--storage229749865--input462551352-.out | 2 +- ....tz--storage229749865--input489157380-.out | 2 +- ....tz--storage229749865--input551316239-.out | 2 +- ....tz--storage229749865--input669330759-.out | 2 +- ....tz--storage229749865--input743596105-.out | 2 +- ....tz--storage229749865--input839234860-.out | 2 +- ...s.tz--storage504917929--input65907686-.out | 2 +- ....tz--storage921624073--input462551352-.out | 2 +- ...tz--storage921624073--input1016369050-.out | 2 +- ...d.tz--storage921624073--input93477117-.out | 2 +- ....tz--storage492856247--input249636002-.out | 2 +- ....tz--storage492856247--input307538219-.out | 2 +- ....tz--storage492856247--input831449542-.out | 2 +- ....tz--storage921624073--input706350605-.out | 2 +- ....tz--storage921624073--input856198194-.out | 2 +- ....tz--storage680650890--input394061083-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ...z--storage1011138251--input1040351577-.out | 2 +- ...tz--storage921624073--input1058477720-.out | 2 +- ...tz--storage921624073--input1073176155-.out | 2 +- ....tz--storage921624073--input246594902-.out | 2 +- ....tz--storage921624073--input506603577-.out | 2 +- ....tz--storage921624073--input576248088-.out | 2 +- ....tz--storage921624073--input612012282-.out | 2 +- ....tz--storage921624073--input617591686-.out | 2 +- ....tz--storage921624073--input639311176-.out | 2 +- ....tz--storage921624073--input688315180-.out | 2 +- ....tz--storage921624073--input967929605-.out | 2 +- 328 files changed, 359 insertions(+), 359 deletions(-) delete mode 100644 "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input254251340-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input420401245-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input680650890-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add.tz--storage125992234--input125992234-.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out (84%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out (82%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out (82%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -address.tz--storage921624073--input117475800-.out (75%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input106930123-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input181204719-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input223774825-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input908807505-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_binary.tz--storage125992234--input125992234-.out (92%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input106930123-.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input181204719-.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input223774825-.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input908807505-.out (69%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -balance.tz--storage492856247--input125992234-.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out (82%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--inp.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -car.tz--storage680650890--input783124233-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cdr.tz--storage680650890--input783124233-.out (66%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage109160754--input125992234-.out (54%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage921624073--input125992234-.out (53%) create mode 100644 tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage981066851--input125992234-.out rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-get.tz--storage125992234--input186507116-.out (94%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-set-2.tz--storage921624073--input186507116-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-set.tz--storage186507116--input125992234-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb.tz--storage950292965--input125992234-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -compare.tz--storage125992234--input125992234-.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comparisons.tz--storage457300675--input281780712-.out (97%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input392583650-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input457300675-.out (65%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input640104625-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out (65%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input264787654-.out (92%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input316676251-.out (93%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input457300675-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage457300675--input798141440-.out (67%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage581876226--input166122047-.out (68%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage793461282--input781487591-.out (69%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input315650912-.out (95%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input51111414-.out (98%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input545734274-.out (95%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input772794967-.out (87%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input917967660-.out (98%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input964818218-.out (95%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contract.tz--storage125992234--input117475800-.out (77%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -create_contract.tz--storage921624073--input125992234-.out (90%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dig_eq.tz--storage125992234--input246866101-.out (99%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dig_eq.tz--storage125992234--input26856104-.out (99%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dign.tz--storage680650890--input529388602-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dip.tz--storage1011138251--input590117173-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dip.tz--storage1011138251--input850887554-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dipn.tz--storage680650890--input529388602-.out (88%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dropn.tz--storage680650890--input529388602-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dugn.tz--storage680650890--input529388602-.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dup-n.tz--storage125992234--input125992234-.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input247451205-.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input250545589-.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input79625541-.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out (81%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -emit.tz--storage125992234--input125992234-.out (94%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -empty_map.tz--storage457300675--input125992234-.out (79%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -exec_concat.tz--storage398998998--input246262487-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -exec_concat.tz--storage398998998--input79230375-.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -first.tz--storage492856247--input478406404-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -first.tz--storage492856247--input962874972-.out (76%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out (78%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out (78%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out (79%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out (80%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out (77%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out (79%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out (79%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage139236239--input329240220-.out (84%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage139236239--input79230375-.out (84%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage329396864--input156280093-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_key.tz--storage921624073--input1040351577-.out (74%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_key.tz--storage921624073--input153350004-.out (74%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_string.tz--storage151303925--input3431716-.out (77%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_string.tz--storage151303925--input535018041-.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if.tz--storage921624073--input570553153-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if.tz--storage921624073--input954397288-.out (76%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if_some.tz--storage398998998--input288201633-.out (70%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if_some.tz--storage398998998--input921624073-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input453441034-.out (71%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input535454136-.out (71%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input680650890-.out (71%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -keccak.tz--storage921624073--input1008262038-.out (78%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -left_right.tz--storage4177631--input202098045-.out (73%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -left_right.tz--storage4177631--input44576556-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -level.tz--storage492856247--input125992234-.out (66%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat.tz--storage717096222--input457300675-.out (73%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat.tz--storage717096222--input546523343-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out (74%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input264787654-.out (65%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input457300675-.out (62%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input656499821-.out (65%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input264787654-.out (75%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input457300675-.out (65%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input656499821-.out (75%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_iter.tz--storage680650890--input568817463-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_iter.tz--storage680650890--input737923774-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input457300675-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input648737279-.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input908379154-.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input403499055-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input457300675-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input469078912-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input802622031-.out (66%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -loop_left.tz--storage528921618--input457300675-.out (86%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -loop_left.tz--storage528921618--input851203613-.out (96%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input1027566226-.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input276660554-.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input599923743-.out (64%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_iter.tz--storage1011138251--input403579222-.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_iter.tz--storage1011138251--input532072758-.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage457300675--input798141440-.out (77%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage794999348--input152441147-.out (88%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage88008216--input798141440-.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out (83%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input700475845-.out (84%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input905318451-.out (84%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage495706788--input700475845-.out (82%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage915708427--input700475845-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage936682951--input905318451-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input15265129-.out (66%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input158311065-.out (66%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input456982702-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input457300675-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mul.tz--storage125992234--input125992234-.out (94%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input1067298059-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input380029349-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input563503226-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input788662499-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input972832189-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -none.tz--storage11179311--input125992234-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not.tz--storage921624073--input570553153-.out (71%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not.tz--storage921624073--input954397288-.out (71%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input1051197453-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input123939249-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input24243730-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input518945720-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input788662499-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input906118781-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input921874253-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input972832189-.out (74%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input106930123-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input181204719-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input223774825-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input908807505-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input1056991424-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input375993021-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input673240563-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input747448890-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input832403787-.out (73%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input858098961-.out (73%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out (98%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out (98%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out (98%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out (98%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input106930123-.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input181204719-.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input223774825-.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input908807505-.out (70%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pexec.tz--storage256947135--input1050356042-.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pexec_2.tz--storage197120858--input179371027-.out (97%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ret_int.tz--storage921624073--input125992234-.out (70%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse.tz--storage528921618--input457300675-.out (72%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse.tz--storage528921618--input851203613-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse_loop.tz--storage528921618--input457300675-.out (83%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse_loop.tz--storage528921618--input851203613-.out (93%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_address.tz--storage125992234--input125992234-.out (86%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_with_default_entrypoint.tz--storage125992234--input1259.out (87%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out (94%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input620760059-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input717096222-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input79230375-.out (85%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage205576101--input654274102-.out (84%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage224747103--input453441034-.out (84%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage611418174--input967284912-.out (84%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input264787654-.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input457300675-.out (62%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input989507347-.out (65%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input457300675-.out (72%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input701684511-.out (84%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input802622031-.out (76%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage495706788--input33757838-.out (88%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage550087893--input79230375-.out (90%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage605111220--input33757838-.out (89%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input403499055-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input457300675-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input469078912-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input802622031-.out (66%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sha3.tz--storage921624073--input1008262038-.out (78%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input115382786-.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input271566295-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input340971987-.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input374168553-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input413621582-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input424849461-.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input485030042-.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input705767726-.out (76%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input769385932-.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input913715337-.out (76%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage351480851--input65907686-.out (99%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input198821575-.out (80%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input359592843-.out (79%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input551316239-.out (80%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input722749044-.out (79%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input839234860-.out (79%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input919180079-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage921624073--input551316239-.out (77%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input198821575-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input462551352-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input489157380-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input551316239-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input669330759-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input743596105-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input839234860-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage504917929--input65907686-.out (85%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage921624073--input462551352-.out (77%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -str_id.tz--storage921624073--input1016369050-.out (68%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -str_id.tz--storage921624073--input93477117-.out (68%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out (82%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out (90%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out (90%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -uncomb.tz--storage680650890--input394061083-.out (82%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -unpair.tz--storage125992234--input125992234-.out (98%) rename "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -voting_power.tz--storage1011138251--input1040351577-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input1058477720-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input1073176155-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input246594902-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input506603577-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input576248088-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input612012282-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input617591686-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input639311176-.out (80%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input688315180-.out (79%) rename tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out => tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input967929605-.out (79%) diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" "b/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" deleted file mode 100644 index decc25dda24a..000000000000 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" +++ /dev/null @@ -1,23 +0,0 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some "NetXdQprcVkpaWU")-Unit-(Some "NetXdQprcVkpaWU")] - -storage - (Some "NetXdQprcVkpaWU") -emitted operations - -big_map diff - -trace - - location: 8 (remaining gas: 1039993.247 units remaining) - [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (remaining gas: 1039993.237 units remaining) - [ ] - - location: 9 (remaining gas: 1039993.222 units remaining) - [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039993.212 units remaining) - [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039993.202 units remaining) - [ {} - (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039993.192 units remaining) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] - diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input254251340-.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input254251340-.out index 1ce391a6f6f5..d2b3bc913484 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input254251340-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/abs.tz on storage Unit and input 948 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input420401245-.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input420401245-.out index c42bf039f9d8..7bff3365d6d2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input420401245-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/abs.tz on storage Unit and input 12039123919239192312931 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input680650890-.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input680650890-.out index 33ea858452b7..7c1b42d40f0d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -abs.tz--storage125992234--input680650890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/abs.tz on storage Unit and input 0 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add.tz--storage125992234--input125992234-.out similarity index 96% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add.tz--storage125992234--input125992234-.out index 9456c48c5882..85afb187b22e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out index a876c8b8bd51..11f381e1292c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x01 0x00' --level 1 --trace-stack storage (Some 0x0100000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out index 34086c2bcd31..8b27e330d0b4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0x0200000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x010000' --level 1 --trace-stack storage (Some 0x0200000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out index f14e777d4766..2f6cddb85140 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x0100000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x00' --level 1 --trace-stack storage (Some 0x0100000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out index 2af53a7fa9ce..c6180f7cdf74 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x00 0x00' --level 1 --trace-stack storage (Some 0x0000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out index 0b593e84cc3e..c3fdcee8ad30 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some "1970-01-01T00:03:20Z")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:03:20Z") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out index e90973b7eb84..c33eb9076b9a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_delta_timestamp.tz on storage None and input '(Pair -100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out similarity index 82% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out index 77ce882cda36..68a9cc243951 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 "1970-01-01T00:00:00Z")-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 0 "1970-01-01T00:00:00Z")' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out index 3c2b7adcd164..509c5bfecd8e 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some "1970-01-01T00:03:20Z")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:03:20Z") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out index ed559a807f22..33c86a6ec0b0 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 -100)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out similarity index 82% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out index 91dae2a7c510..ee4e0cb667d3 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair "1970-01-01T00:00:00Z" 0)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/add_timestamp_delta.tz on storage None and input '(Pair "1970-01-01T00:00:00Z" 0)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -address.tz--storage921624073--input117475800-.out similarity index 75% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -address.tz--storage921624073--input117475800-.out index aac58e7644af..26be61d01621 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -address.tz--storage921624073--input117475800-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[address.tz-None-"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"-(Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/address.tz on storage None and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack storage (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input106930123-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input106930123-.out index 40e87d45754b..0b15755f2657 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input181204719-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input181204719-.out index 574c501ff1fe..6e3e5911e4d7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input223774825-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input223774825-.out index e79b50e84021..493cc9f5e631 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input908807505-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input908807505-.out index 4c73d0703a08..19e34f82aa90 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_binary.tz--storage125992234--input125992234-.out similarity index 92% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_binary.tz--storage125992234--input125992234-.out index dc27b01c328e..1c2c0387190a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_binary.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and_binary.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input106930123-.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input106930123-.out index f1f348a2b0d5..97ebd490bd53 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input106930123-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and_logical_1.tz on storage False and input '(Pair False True)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input181204719-.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input181204719-.out index e8a075c067b3..9b48be4ab364 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input181204719-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and_logical_1.tz on storage False and input '(Pair True False)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input223774825-.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input223774825-.out index 0dc327c92c09..283648317e07 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input223774825-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and_logical_1.tz on storage False and input '(Pair False False)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input908807505-.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input908807505-.out index 020a57feab7d..2d0078e89874 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -and_logical_1.tz--storage570553153--input908807505-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/and_logical_1.tz on storage False and input '(Pair True True)' --level 1 --trace-stack storage True emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -balance.tz--storage492856247--input125992234-.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -balance.tz--storage492856247--input125992234-.out index 4604506ab9e3..21378990a54d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -balance.tz--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/balance.tz on storage 111 and input Unit --level 1 --trace-stack storage 4000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out index c17c56950da7..2621f3866ed0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out index 68bda3165867..f0b735f5dfab 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out index 0ed33b5fcb7a..fc8f4987ae74 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out index 52739685a655..ee578af8485f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out index a88d1b58b254..81c4bc2cd5b7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out index 4c438c5f7d20..fad8ee5383bf 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out index c8cebc732512..bf8d04247105 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"baz"-(Pair 4 (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out index ba26520df790..455ff2d878b8 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"bar"-(Pair 4 (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out index 026fb9bb558a..3e1ca2248a80 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"foo"-(Pair 4 (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out similarity index 82% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out index 14826a083c11..75fd0be75399 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-"bar"-(Pair 4 (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out index 65a853d3a4b4..1dad4dc3cdf4 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "foo" 1 } None)-"bar"-(Pair 4 (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out index d883a1b32f8d..b953b906f0dc 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "foo" 0 } None)-"foo"-(Pair 4 (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--inp.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--inp.out index 1c0137340063..8cde0371758f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--inp.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0x0000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_push_bytes_not_padded.tz on storage None and input Unit --level 1 --trace-stack storage (Some 0x0000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out index 55cc8c93f2e9..ebc4db099e36 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x1000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_push_nat.tz on storage None and input Unit --level 1 --trace-stack storage (Some 0x1000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out index a4ee6667979f..58b04a6f046a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x01 --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out index 54daa18adfad..e55993071db5 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x00 --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out index cef96aaee324..7a3a2d598407 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719-11320265829256585830781521966149529460476767408210445238902869222031333517497] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 --level 1 --trace-stack storage 11320265829256585830781521966149529460476767408210445238902869222031333517497 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out index e5199a11ad79..a12a631f321a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27-17832688077013577776524784494464728518213913213412866604053735695200962927400] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 --level 1 --trace-stack storage 17832688077013577776524784494464728518213913213412866604053735695200962927400 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out index 6fd57be97a54..0322b34f4446 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_to_mutez.tz on storage 0 and input 0x10 --level 1 --trace-stack storage 16 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out index af9ceeb611a6..d63859a27159 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out index 618e0bfd55b4..e6559331f0f3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out index 947a894477e3..45b3bea514f9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out index f1063792fb33..c5a5194fad27 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out index 5672ce210f83..99ec29345bfc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out index 92465ece3193..5ebb568b53b2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out index 626de3021e21..7cf903197fdc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out index 23ac0c5b1479..11e61dc4450f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--42-0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack storage 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out index c498828bd4ef..a4eaf603bd6e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out index eeb4d2759bc2..db13b510e1e1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--1-0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack storage 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out index d12b6cd19ff0..ecadc4f25a0e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out index 87268ca35f53..416a41f8ef80 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out index bf707ce98c5a..b23e2c1b5e25 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out index f235b508b0ab..e291d555500f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out index 2254b4b9c46f..00af4f5dc601 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out index 1a895de2d3fd..efa67afcf68c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out index 835d45a21e31..dfcef3be6ebc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out index 6878cf157dd8..68f9e84c9693 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out index 1966374f467d..d788f6803dc7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out index 973b8de9f4c8..365191f6e621 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out index d3eec2ff0ae6..5309bd55f3ca 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out index 9f247729ea08..f839b662c197 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out index f41a016d8a88..7cc8932eb27d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out index 4e730008930e..a69a40de201a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out index 1d0ccad3602d..1dff29d60358 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out index 5328c3472460..a26739f90aac 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--42-0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack storage 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out index 7f2f0ae2426f..c4ac63f18709 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out index 93058c823838..b655508194c6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--1-0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack storage 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out index b849fc78dbbb..0ff421ec0b34 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out index e22898c7495c..99b8eb01c372 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out index 4013b35a97e2..5b952648d5b3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out index 5937b183dc7f..e2041444c5b1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out index 3f373fb18405..e90a567a7881 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out index 3f2f9a0b21ee..3acd3fdb4582 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out index a2b209e25cf1..3f9c6e5b9dbb 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out index 1ded91d5b24a..9b11d1783c23 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -car.tz--storage680650890--input783124233-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -car.tz--storage680650890--input783124233-.out index 654a8758a783..847f40ded55d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -car.tz--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/car.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack storage 34 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cdr.tz--storage680650890--input783124233-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cdr.tz--storage680650890--input783124233-.out index ff1f3ed489f3..ff0cb23161c7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cdr.tz--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/cdr.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack storage 17 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage109160754--input125992234-.out similarity index 54% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage109160754--input125992234-.out index cdeed11b5272..710c9e1a5f11 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage109160754--input125992234-.out @@ -1,7 +1,7 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some "NetXdQprcVkpaWU")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/chain_id_store.tz on storage '(Some 0x7a06a770)' and input Unit --level 1 --trace-stack storage - (Some "NetXdQprcVkpaWU") + (Some "NetXynUjJNZm7wi") emitted operations big_map diff @@ -12,12 +12,12 @@ trace - location: 8 (remaining gas: 1039994.787 units remaining) [ ] - location: 9 (remaining gas: 1039994.772 units remaining) - [ "NetXdQprcVkpaWU" ] + [ "NetXynUjJNZm7wi" ] - location: 10 (remaining gas: 1039994.762 units remaining) - [ (Some "NetXdQprcVkpaWU") ] + [ (Some "NetXynUjJNZm7wi") ] - location: 11 (remaining gas: 1039994.752 units remaining) [ {} - (Some "NetXdQprcVkpaWU") ] + (Some "NetXynUjJNZm7wi") ] - location: 13 (remaining gas: 1039994.742 units remaining) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage921624073--input125992234-.out similarity index 53% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage921624073--input125992234-.out index a1c2002420dc..ed8e4bdd875b 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage921624073--input125992234-.out @@ -1,7 +1,7 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some "NetXdQprcVkpaWU")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/chain_id_store.tz on storage None and input Unit --level 1 --trace-stack storage - (Some "NetXdQprcVkpaWU") + (Some "NetXynUjJNZm7wi") emitted operations big_map diff @@ -12,12 +12,12 @@ trace - location: 8 (remaining gas: 1039994.937 units remaining) [ ] - location: 9 (remaining gas: 1039994.922 units remaining) - [ "NetXdQprcVkpaWU" ] + [ "NetXynUjJNZm7wi" ] - location: 10 (remaining gas: 1039994.912 units remaining) - [ (Some "NetXdQprcVkpaWU") ] + [ (Some "NetXynUjJNZm7wi") ] - location: 11 (remaining gas: 1039994.902 units remaining) [ {} - (Some "NetXdQprcVkpaWU") ] + (Some "NetXynUjJNZm7wi") ] - location: 13 (remaining gas: 1039994.892 units remaining) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage981066851--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage981066851--input125992234-.out new file mode 100644 index 000000000000..4206d2b31a87 --- /dev/null +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -chain_id_store.tz--storage981066851--input125992234-.out @@ -0,0 +1,23 @@ + +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/chain_id_store.tz on storage '(Some "NetXynUjJNZm7wi")' and input Unit --level 1 --trace-stack +storage + (Some "NetXynUjJNZm7wi") +emitted operations + +big_map diff + +trace + - location: 8 (remaining gas: 1039993.247 units remaining) + [ (Pair Unit (Some "NetXynUjJNZm7wi")) ] + - location: 8 (remaining gas: 1039993.237 units remaining) + [ ] + - location: 9 (remaining gas: 1039993.222 units remaining) + [ "NetXynUjJNZm7wi" ] + - location: 10 (remaining gas: 1039993.212 units remaining) + [ (Some "NetXynUjJNZm7wi") ] + - location: 11 (remaining gas: 1039993.202 units remaining) + [ {} + (Some "NetXynUjJNZm7wi") ] + - location: 13 (remaining gas: 1039993.192 units remaining) + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] + diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-get.tz--storage125992234--input186507116-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-get.tz--storage125992234--input186507116-.out index 2f009067858e..a364c386bcb6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-get.tz--storage125992234--input186507116-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/comb-get.tz on storage Unit and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-set-2.tz--storage921624073--input186507116-.out similarity index 82% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-set-2.tz--storage921624073--input186507116-.out index ad3d5dd6ff94..b944aaa42cdf 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-set-2.tz--storage921624073--input186507116-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 "toto" 0x01))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/comb-set-2.tz on storage None and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack storage (Some (Pair 2 4 "toto" 0x01)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-set.tz--storage186507116--input125992234-.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-set.tz--storage186507116--input125992234-.out index d8ad217672ea..db34f856fc89 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb-set.tz--storage186507116--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/comb-set.tz on storage '(Pair 1 4 2 Unit)' and input Unit --level 1 --trace-stack storage (Pair 2 12 8 Unit) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb.tz--storage950292965--input125992234-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb.tz--storage950292965--input125992234-.out index 38b34c941427..d40f42895742 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comb.tz--storage950292965--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/comb.tz on storage '(Pair 0 0 0)' and input Unit --level 1 --trace-stack storage (Pair 1 2 3) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -compare.tz--storage125992234--input125992234-.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -compare.tz--storage125992234--input125992234-.out index f672886a0b3e..e5deab052dd1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -compare.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/compare.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comparisons.tz--storage457300675--input281780712-.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comparisons.tz--storage457300675--input281780712-.out index b141bc5c5426..6c888c716da1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -comparisons.tz--storage457300675--input281780712-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ { False ; False ; False ; True ; True } ;\n { False ; False ; True ; True ; True } ;\n { True ; True ; False ; False ; False } ;\n { True ; True ; True ; False ; False } ;\n { True ; True ; False ; True ; True } ;\n { False ; False ; True ; False ; False } }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/comparisons.tz on storage '{}' and input '{ -9999999; -1 ; 0 ; 1 ; 9999999 }' --level 1 --trace-stack storage { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input392583650-.out similarity index 81% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input392583650-.out index 1a16e62858dd..52dd0758035a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input392583650-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ "test1" ; "test2" }-{ "Hello test1" ; "Hello test2" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_hello.tz on storage '{}' and input '{ "test1" ; "test2" }' --level 1 --trace-stack storage { "Hello test1" ; "Hello test2" } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input457300675-.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input457300675-.out index 5341acd40282..33fc4866701f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_hello.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input640104625-.out similarity index 76% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input640104625-.out index 48ddb18f3d4d..fe4fd4300ff9 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello.tz--storage457300675--input640104625-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ "World!" }-{ "Hello World!" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_hello.tz on storage '{}' and input '{ "World!" }' --level 1 --trace-stack storage { "Hello World!" } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out index 752b2b7b9858..ba8938fafd04 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xab ; 0xcd }' --level 1 --trace-stack storage { 0xffab ; 0xffcd } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out index 1db9f9b5db03..64647bccded2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xcd }' --level 1 --trace-stack storage { 0xffcd } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out index f9f0e4223993..c3c145e7e59b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_hello_bytes.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input264787654-.out similarity index 92% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input264787654-.out index 7b6aaf9f1fed..53fbd833be83 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input264787654-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{ "a" ; "b" ; "c" }-"abc"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_list.tz on storage '""' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage "abc" emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input316676251-.out similarity index 93% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input316676251-.out index 096c3ea27b19..eabdc95eba7a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input316676251-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{ "Hello" ; " " ; "World" ; "!" }-"Hello World!"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_list.tz on storage '""' and input '{ "Hello" ; " " ; "World" ; "!" }' --level 1 --trace-stack storage "Hello World!" emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input457300675-.out similarity index 72% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input457300675-.out index 015539395fed..251c73a75bef 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -concat_list.tz--storage79230375--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{}-""] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/concat_list.tz on storage '""' and input '{}' --level 1 --trace-stack storage "" emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage457300675--input798141440-.out similarity index 67% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage457300675--input798141440-.out index 2c37aff2e154..e669fa58ab8e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/cons.tz on storage '{}' and input 10 --level 1 --trace-stack storage { 10 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage581876226--input166122047-.out similarity index 68% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage581876226--input166122047-.out index aca66dbd7683..62ac9fad60ff 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage581876226--input166122047-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/cons.tz on storage '{ 10 }' and input -5 --level 1 --trace-stack storage { -5 ; 10 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage793461282--input781487591-.out similarity index 69% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage793461282--input781487591-.out index 020e9c9fcb45..3e66fa9aa8f0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -cons.tz--storage793461282--input781487591-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/cons.tz on storage '{ -5 ; 10 }' and input 99 --level 1 --trace-stack storage { 99 ; -5 ; 10 } emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input315650912-.out similarity index 95% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input315650912-.out index b5d1516787fc..61b60e370b6e 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input315650912-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" } { "B" })-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/contains_all.tz on storage None and input '(Pair { "B" } { "B" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input51111414-.out similarity index 98% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input51111414-.out index baace959c559..4356ab19c042 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input51111414-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input545734274-.out similarity index 95% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input545734274-.out index b165256073ba..cf8216515083 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input545734274-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "A" } { "B" })-(Some False)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/contains_all.tz on storage None and input '(Pair { "A" } { "B" })' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input772794967-.out similarity index 87% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input772794967-.out index 292ca9fc16a9..27ea3220cb8c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input772794967-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/contains_all.tz on storage None and input '(Pair {} {})' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input917967660-.out similarity index 98% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input917967660-.out index df447ec7a3e2..b5f6312dcb8a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input917967660-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input964818218-.out similarity index 95% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input964818218-.out index 46febe58cb0e..b2b594c71966 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contains_all.tz--storage921624073--input964818218-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "c" } { "B" })-(Some False)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/contains_all.tz on storage None and input '(Pair { "c" } { "B" })' --level 1 --trace-stack storage (Some False) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contract.tz--storage125992234--input117475800-.out similarity index 77% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contract.tz--storage125992234--input117475800-.out index c67cc70a8247..077a5fc57c15 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -contract.tz--storage125992234--input117475800-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contract.tz-Unit-"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/contract.tz on storage Unit and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -create_contract.tz--storage921624073--input125992234-.out similarity index 90% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -create_contract.tz--storage921624073--input125992234-.out index d859a15e25d7..3bc41152cfdc 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -create_contract.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/create_contract.tz on storage None and input Unit --level 1 --trace-stack storage (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out index 66e21bafdcb7..a236efc6474a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out index 6d33ce04c8a8..ddf72453da5a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 1)' --level 1 --trace-stack storage -1 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out similarity index 81% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out index c395836893df..c28f3a2fa3f3 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")-200] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/diff_timestamps.tz on storage 111 and input '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")' --level 1 --trace-stack storage 200 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out index 6b99d7f56ee8..54262e74684e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 1 0)' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dig_eq.tz--storage125992234--input246866101-.out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dig_eq.tz--storage125992234--input246866101-.out index b536e356d5a5..aa0d63a4f800 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dig_eq.tz--storage125992234--input246866101-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dig_eq.tz on storage Unit and input '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dig_eq.tz--storage125992234--input26856104-.out similarity index 99% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dig_eq.tz--storage125992234--input26856104-.out index 521ae15cc1cb..f3abcb7aa7d9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dig_eq.tz--storage125992234--input26856104-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dig_eq.tz on storage Unit and input '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dign.tz--storage680650890--input529388602-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dign.tz--storage680650890--input529388602-.out index cefa42235f2c..6a18a8cd445c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dign.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dign.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 5 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dip.tz--storage1011138251--input590117173-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dip.tz--storage1011138251--input590117173-.out index e188541e9262..1b7491b56f0c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dip.tz--storage1011138251--input590117173-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 1 1)' --level 1 --trace-stack storage (Pair 1 2) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dip.tz--storage1011138251--input850887554-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dip.tz--storage1011138251--input850887554-.out index 9060a3c90e8d..730d030a1c63 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dip.tz--storage1011138251--input850887554-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 15 9)' --level 1 --trace-stack storage (Pair 15 24) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dipn.tz--storage680650890--input529388602-.out similarity index 88% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dipn.tz--storage680650890--input529388602-.out index 7639eeac7561..9b8c316d907f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dipn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dipn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dropn.tz--storage680650890--input529388602-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dropn.tz--storage680650890--input529388602-.out index eaed0723e05c..a41a780db094 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dropn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dropn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 5 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dugn.tz--storage680650890--input529388602-.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dugn.tz--storage680650890--input529388602-.out index 704096208c01..2230a4814172 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dugn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dugn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dup-n.tz--storage125992234--input125992234-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dup-n.tz--storage125992234--input125992234-.out index d4825ce80bf9..5116cc789ae4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -dup-n.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/dup-n.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input247451205-.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input247451205-.out index 0e24a24cdaed..e60a0140f22e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input247451205-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair None None None None)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 0)' --level 1 --trace-stack storage (Pair None None None None) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input250545589-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input250545589-.out index d8157b731685..b0d247005cc0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input250545589-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair -8 2)' --level 1 --trace-stack storage (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input79625541-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input79625541-.out index a8e60af0e38c..41320698ddeb 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv.tz--storage994417987--input79625541-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 -3)' --level 1 --trace-stack storage (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out index 30f3cbb027c2..bfb319777717 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 0))' --level 1 --trace-stack storage (Right None) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out index 284a908e4eb6..f7b969ffb5b4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (Some (Pair 3 1)))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 3))' --level 1 --trace-stack storage (Right (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out index 8660dc55b5b6..00281ffc98d8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (Some (Pair 1 0)))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 10))' --level 1 --trace-stack storage (Left (Some (Pair 1 0))) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out index 8167973cdafa..b3c2ccba9448 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 0))' --level 1 --trace-stack storage (Left None) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out index 47d3175a5165..4d86e4335ca5 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Some (Pair 3 1)))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 3))' --level 1 --trace-stack storage (Left (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out index 1ccc3e539edc..501bb8d1a634 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (Some (Pair 1 0)))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 10))' --level 1 --trace-stack storage (Right (Some (Pair 1 0))) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out similarity index 81% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out index c99ab982ddc6..3082dd1e1941 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (Some (Pair 0 5)))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 5 (Right 10))' --level 1 --trace-stack storage (Right (Some (Pair 0 5))) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -emit.tz--storage125992234--input125992234-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -emit.tz--storage125992234--input125992234-.out index 430879142022..c0be897bb281 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -emit.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/emit.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -empty_map.tz--storage457300675--input125992234-.out similarity index 79% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -empty_map.tz--storage457300675--input125992234-.out index 4285bf786a51..81ba62929b96 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -empty_map.tz--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt "hello" "world" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/empty_map.tz on storage '{}' and input Unit --level 1 --trace-stack storage { Elt "hello" "world" } emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -exec_concat.tz--storage398998998--input246262487-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -exec_concat.tz--storage398998998--input246262487-.out index 7e64ae213b97..540d2192b23a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -exec_concat.tz--storage398998998--input246262487-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[exec_concat.tz-"?"-"test"-"test_abc"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/exec_concat.tz on storage '"?"' and input '"test"' --level 1 --trace-stack storage "test_abc" emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -exec_concat.tz--storage398998998--input79230375-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -exec_concat.tz--storage398998998--input79230375-.out index 52943fed9e2c..a9dac1ab72f8 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -exec_concat.tz--storage398998998--input79230375-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[exec_concat.tz-"?"-""-"_abc"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/exec_concat.tz on storage '"?"' and input '""' --level 1 --trace-stack storage "_abc" emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -first.tz--storage492856247--input478406404-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -first.tz--storage492856247--input478406404-.out index 0649e69fd768..1f97708c5958 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -first.tz--storage492856247--input478406404-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/first.tz on storage 111 and input '{ 4 }' --level 1 --trace-stack storage 4 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -first.tz--storage492856247--input962874972-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -first.tz--storage492856247--input962874972-.out index fefdf16288a3..f8f788e46f0d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -first.tz--storage492856247--input962874972-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/first.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out similarity index 78% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out index 748ff0dec57d..385269a14b1b 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "hello" 4 })-"hello"-(Pair (Some 4) {})] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some 4) {}) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out similarity index 78% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out index a86c9bdd4975..8fbc9211013e 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-"hello"-(Pair None { Elt "hello" 4 })] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_and_update_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --level 1 --trace-stack storage (Pair None { Elt "hello" 4 }) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out similarity index 79% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out index 40e68845b85f..7a6bad48f863 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt "hello" 4 })-"hello"-(Pair (Some 4) { Elt "hello" 5 })] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some 4) { Elt "hello" 5 }) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out similarity index 80% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out index cb89d8d4d695..52da32a1bb1f 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt "hello" 4 })-"hi"-(Pair None { Elt "hello" 4 ; Elt "hi" 5 })] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --level 1 --trace-stack storage (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out similarity index 77% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out index bedd30479fe7..e91dfa786526 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-"hello"-(Pair None {})] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_and_update_map.tz on storage '(Pair None {})' and input '"hello"' --level 1 --trace-stack storage (Pair None {}) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out similarity index 79% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out index d29ff9200b0e..e24c4dcfc53a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --level 1 --trace-stack storage (Pair (Some 1) { Elt "2" 2 }) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out similarity index 79% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out index ee8682f9c355..b2afc0556354 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"2"-(Pair (Some 2) { Elt "1" 1 })] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"2"' --level 1 --trace-stack storage (Pair (Some 2) { Elt "1" 1 }) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage139236239--input329240220-.out similarity index 84% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage139236239--input329240220-.out index f6c1124947cd..eebf00c8fc6a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage139236239--input329240220-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "hello" "hi" })-"hello"-(Pair (Some "hi") { Elt "hello" "hi" })] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some "hi") { Elt "hello" "hi" }) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage139236239--input79230375-.out similarity index 84% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage139236239--input79230375-.out index 888110e3516e..6620e5422698 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage139236239--input79230375-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "hello" "hi" })-""-(Pair None { Elt "hello" "hi" })] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '""' --level 1 --trace-stack storage (Pair None { Elt "hello" "hi" }) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage329396864--input156280093-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage329396864--input156280093-.out index 5d802b2bd56d..144e18199f74 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -get_map_value.tz--storage329396864--input156280093-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "1" "one" ; Elt "2" "two" })-"1"-(Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" })] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/get_map_value.tz on storage '(Pair None { Elt "1" "one" ; Elt "2" "two" })' and input '"1"' --level 1 --trace-stack storage (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_key.tz--storage921624073--input1040351577-.out similarity index 74% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_key.tz--storage921624073--input1040351577-.out index b9a05fc2cc69..60208d89ac92 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_key.tz--storage921624073--input1040351577-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_key.tz-None-"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"-(Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/hash_key.tz on storage None and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack storage (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_key.tz--storage921624073--input153350004-.out similarity index 74% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_key.tz--storage921624073--input153350004-.out index 1c9987641d38..8970bafd8751 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_key.tz--storage921624073--input153350004-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_key.tz-None-"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"-(Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/hash_key.tz on storage None and input '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"' --level 1 --trace-stack storage (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_string.tz--storage151303925--input3431716-.out similarity index 77% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_string.tz--storage151303925--input3431716-.out index df41d6e1d245..c7901980207f 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_string.tz--storage151303925--input3431716-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-"abcdefg"-0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/hash_string.tz on storage 0x00 and input '"abcdefg"' --level 1 --trace-stack storage 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_string.tz--storage151303925--input535018041-.out similarity index 77% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_string.tz--storage151303925--input535018041-.out index 6a698e59f185..a74c71b6fec5 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -hash_string.tz--storage151303925--input535018041-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-"12345"-0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/hash_string.tz on storage 0x00 and input '"12345"' --level 1 --trace-stack storage 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if.tz--storage921624073--input570553153-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if.tz--storage921624073--input570553153-.out index d7ba5f8a464e..420e1d7590cb 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if.tz--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/if.tz on storage None and input False --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if.tz--storage921624073--input954397288-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if.tz--storage921624073--input954397288-.out index a83153b4aaf5..a25b430b5f47 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if.tz--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/if.tz on storage None and input True --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if_some.tz--storage398998998--input288201633-.out similarity index 70% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if_some.tz--storage398998998--input288201633-.out index 618e70372f89..7354aa3260a4 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if_some.tz--storage398998998--input288201633-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if_some.tz-"?"-(Some "hello")-"hello"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/if_some.tz on storage '"?"' and input '(Some "hello")' --level 1 --trace-stack storage "hello" emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if_some.tz--storage398998998--input921624073-.out similarity index 72% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if_some.tz--storage398998998--input921624073-.out index 2198f4802e4d..8fbd176bd73b 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -if_some.tz--storage398998998--input921624073-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if_some.tz-"?"-None-""] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/if_some.tz on storage '"?"' and input None --level 1 --trace-stack storage "" emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input453441034-.out similarity index 71% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input453441034-.out index fbd218f894b8..4394b6d9f25b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/int.tz on storage None and input 1 --level 1 --trace-stack storage (Some 1) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input535454136-.out similarity index 71% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input535454136-.out index ef87e104df97..70b4cd3a4d9b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input535454136-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/int.tz on storage None and input 9999 --level 1 --trace-stack storage (Some 9999) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input680650890-.out similarity index 71% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input680650890-.out index 7edbbbf54410..4ce1d2d45fab 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -int.tz--storage921624073--input680650890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/int.tz on storage None and input 0 --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -keccak.tz--storage921624073--input1008262038-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -keccak.tz--storage921624073--input1008262038-.out index da01637b1ca6..77219065e222 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -keccak.tz--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/keccak.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack storage (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -left_right.tz--storage4177631--input202098045-.out similarity index 73% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -left_right.tz--storage4177631--input202098045-.out index 1419810fd946..3ff9cd323ca1 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -left_right.tz--storage4177631--input202098045-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[left_right.tz-(Left "X")-(Left True)-(Right True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/left_right.tz on storage '(Left "X")' and input '(Left True)' --level 1 --trace-stack storage (Right True) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -left_right.tz--storage4177631--input44576556-.out similarity index 72% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -left_right.tz--storage4177631--input44576556-.out index b6b0ee25ab3e..8824ce9276e6 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -left_right.tz--storage4177631--input44576556-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[left_right.tz-(Left "X")-(Right "a")-(Left "a")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/left_right.tz on storage '(Left "X")' and input '(Right "a")' --level 1 --trace-stack storage (Left "a") emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -level.tz--storage492856247--input125992234-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -level.tz--storage492856247--input125992234-.out index f96fb009d516..c1faf8a9eeba 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -level.tz--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/level.tz on storage 111 and input Unit --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat.tz--storage717096222--input457300675-.out similarity index 73% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat.tz--storage717096222--input457300675-.out index fe469baf458d..edb4ec90bc30 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat.tz--storage717096222--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat.tz-"abc"-{}-"abc"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_concat.tz on storage '"abc"' and input '{}' --level 1 --trace-stack storage "abc" emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat.tz--storage717096222--input546523343-.out similarity index 74% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat.tz--storage717096222--input546523343-.out index 1af5ed66dc9e..7eb5d14a73a9 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat.tz--storage717096222--input546523343-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat.tz-"abc"-{ "d" ; "e" ; "f" }-"abcdef"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_concat.tz on storage '"abc"' and input '{ "d" ; "e" ; "f" }' --level 1 --trace-stack storage "abcdef" emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out index 486b2d47d8d4..5cf44701cec4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_concat_bytes.tz on storage 0x and input '{ 0x00 ; 0x11 ; 0x00 }' --level 1 --trace-stack storage 0x001100 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out index 78470bc1ca30..903d4ea3d0e6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_concat_bytes.tz on storage 0x and input '{}' --level 1 --trace-stack storage 0x emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out index 622bb5d89970..b697e1f363a2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_concat_bytes.tz on storage 0xabcd and input '{}' --level 1 --trace-stack storage 0xabcd emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out index 6ca0ab9f6721..e11d60267d7c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_concat_bytes.tz on storage 0x00ab and input '{ 0xcd ; 0xef ; 0x00 }' --level 1 --trace-stack storage 0x00abcdef00 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input264787654-.out similarity index 65% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input264787654-.out index 5c5bc350a9c6..6c5600636207 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_id.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input457300675-.out similarity index 62% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input457300675-.out index 63538fc4d2a7..82bbb1f1961a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_id.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input656499821-.out similarity index 65% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input656499821-.out index a3eaad37d7fc..a8b539c9e646 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id.tz--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{ "1" ; "2" ; "3" }-{ "1" ; "2" ; "3" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_id.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack storage { "1" ; "2" ; "3" } emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input264787654-.out similarity index 75% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input264787654-.out index 6acb027fd6b5..9a6a807793f9 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_id_map.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input457300675-.out similarity index 65% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input457300675-.out index 5a81ea603f94..44d7325f39da 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_id_map.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input656499821-.out similarity index 75% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input656499821-.out index 4aa5ce3d7db3..06928c8e4af1 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_id_map.tz--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{ "1" ; "2" ; "3" }-{ "1" ; "2" ; "3" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_id_map.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack storage { "1" ; "2" ; "3" } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_iter.tz--storage680650890--input568817463-.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_iter.tz--storage680650890--input568817463-.out index 69c4eb231944..d8880ec2b9ac 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_iter.tz--storage680650890--input568817463-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_iter.tz on storage 0 and input '{ 10 ; 2 ; 1 }' --level 1 --trace-stack storage 20 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_iter.tz--storage680650890--input737923774-.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_iter.tz--storage680650890--input737923774-.out index 3abc72e9c753..e7511bc4caae 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_iter.tz--storage680650890--input737923774-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_iter.tz on storage 0 and input '{ 3 ; 6 ; 9 }' --level 1 --trace-stack storage 162 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input457300675-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input457300675-.out index cd7196c42655..745296d03bf1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_map_block.tz on storage '{0}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input648737279-.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input648737279-.out index 5225b0b23308..df8fb500f810 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input648737279-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 2 ; 3 ; 0 }' --level 1 --trace-stack storage { 1 ; 3 ; 5 ; 3 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input908379154-.out similarity index 93% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input908379154-.out index adb1d96cf19d..2470da08ed91 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_map_block.tz--storage907453363--input908379154-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 1 ; 1 ; 1 }' --level 1 --trace-stack storage { 1 ; 2 ; 3 ; 4 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input403499055-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input403499055-.out index bdbfd8d5f641..7273885e76f3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input457300675-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input457300675-.out index 8ae87a620f90..c8a1e737bbcd 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input469078912-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input469078912-.out index dc4e4fdfec4f..0280fc2125ab 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input802622031-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input802622031-.out index da609022c3f9..4a5e46f30dd3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -list_size.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/list_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -loop_left.tz--storage528921618--input457300675-.out similarity index 86% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -loop_left.tz--storage528921618--input457300675-.out index 36d1b5268d6f..5ac815cd7ad2 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -loop_left.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[loop_left.tz-{""}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/loop_left.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -loop_left.tz--storage528921618--input851203613-.out similarity index 96% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -loop_left.tz--storage528921618--input851203613-.out index b938e29e9fa7..9930489f0880 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -loop_left.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[loop_left.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/loop_left.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input1027566226-.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input1027566226-.out index 3b162ebef21c..b04346d98f35 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input1027566226-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 }' --level 1 --trace-stack storage { Elt 0 0 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input276660554-.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input276660554-.out index 0dd37db38a01..67e4cde73493 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input276660554-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 ; Elt 3 4 }' --level 1 --trace-stack storage { Elt 0 0 ; Elt 3 4 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input599923743-.out similarity index 64% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input599923743-.out index 9f552c6a03a1..f528ec990014 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_id.tz--storage457300675--input599923743-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 1 }' --level 1 --trace-stack storage { Elt 0 1 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_iter.tz--storage1011138251--input403579222-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_iter.tz--storage1011138251--input403579222-.out index 1b8dcda9b5b3..78ce63781c7b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_iter.tz--storage1011138251--input403579222-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 1 1 ; Elt 2 100 }' --level 1 --trace-stack storage (Pair 3 101) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_iter.tz--storage1011138251--input532072758-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_iter.tz--storage1011138251--input532072758-.out index ed156ad61267..4f8fa0f40151 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_iter.tz--storage1011138251--input532072758-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 0 100 ; Elt 2 100 }' --level 1 --trace-stack storage (Pair 2 200) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage457300675--input798141440-.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage457300675--input798141440-.out index 110c9780252c..cd6bede24ba0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_map.tz on storage '{}' and input 10 --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage794999348--input152441147-.out similarity index 88% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage794999348--input152441147-.out index 5377cca738d3..207a3cefae53 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage794999348--input152441147-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt "bar" 5 ; Elt "foo" 1 }-15-{ Elt "bar" 20 ; Elt "foo" 16 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_map.tz on storage '{ Elt "bar" 5 ; Elt "foo" 1 }' and input 15 --level 1 --trace-stack storage { Elt "bar" 20 ; Elt "foo" 16 } emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage88008216--input798141440-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage88008216--input798141440-.out index 457efcbddd87..b509587f6ad9 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_map.tz--storage88008216--input798141440-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt "foo" 1 }-10-{ Elt "foo" 11 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_map.tz on storage '{ Elt "foo" 1 }' and input 10 --level 1 --trace-stack storage { Elt "foo" 11 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out index 00b6916134f9..80d923dedf37 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out index 8f7bb995ab23..722a309e6d86 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair { Elt 1 4 ; Elt 2 11 } (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out index bc1e956976e6..cdafba47b76f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair { Elt 1 4 ; Elt 2 11 } (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out index 7e7e54a2b17f..e50b4549b038 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair { Elt 1 4 ; Elt 2 11 } (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out index 3742c8aae48f..bd7defbe30f6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 0 } (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 1 0 } (Some True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out similarity index 83% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out index 9f9596c45a4f..4f259a058a9a 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 1 } (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 0 1 } (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out index c22297045533..2ecc7e9bfd30 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"baz"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input700475845-.out similarity index 84% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input700475845-.out index a79fcbbcba07..220bfcfb195d 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"bar"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input905318451-.out similarity index 84% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input905318451-.out index 304f2d86f61f..9a0cb1dbd1fd 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"foo"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage495706788--input700475845-.out similarity index 82% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage495706788--input700475845-.out index 61f20c220df5..b7a4190b3f50 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-"bar"-(Pair {} (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage915708427--input700475845-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage915708427--input700475845-.out index f2c55799c421..985536e559eb 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "foo" 1 } None)-"bar"-(Pair { Elt "foo" 1 } (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair { Elt "foo" 1 } (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage936682951--input905318451-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage936682951--input905318451-.out index aa378512e4b1..40db59f9e8e7 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_mem_string.tz--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "foo" 0 } None)-"foo"-(Pair { Elt "foo" 0 } (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair { Elt "foo" 0 } (Some True)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input15265129-.out similarity index 66% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input15265129-.out index 6281a651cc0a..066c50a8ec1c 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input15265129-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 }-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input158311065-.out similarity index 66% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input158311065-.out index b88fcc66fa8e..3629e9ed5459 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input158311065-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }-3] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input456982702-.out similarity index 66% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input456982702-.out index b8bcb762401a..3adee21cb1d0 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input456982702-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }-6] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input457300675-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input457300675-.out index 341500f4f806..bfda59725a14 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -map_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/map_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mul.tz--storage125992234--input125992234-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mul.tz--storage125992234--input125992234-.out index 5063726aa67d..e21ddf3de5d8 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mul.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/mul.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out index e47949e209f8..f453ab0eda20 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/mutez_to_bls12_381_fr.tz on storage 0x00 and input 257 --level 1 --trace-stack storage 0x0101000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out index 6b40b7af7ce8..b13a8c51ef70 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x1000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/mutez_to_bls12_381_fr.tz on storage 0x02 and input 16 --level 1 --trace-stack storage 0x1000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input1067298059-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input1067298059-.out index c1b5644ec5ae..9b2bcc71ea8d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input1067298059-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/neg.tz on storage 0 and input '(Left -2)' --level 1 --trace-stack storage 2 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input380029349-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input380029349-.out index d603f095b4c0..309337b381ed 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input380029349-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/neg.tz on storage 0 and input '(Right 2)' --level 1 --trace-stack storage -2 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input563503226-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input563503226-.out index 18f15ad6733e..718a40e257f2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input563503226-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/neg.tz on storage 0 and input '(Left 2)' --level 1 --trace-stack storage -2 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input788662499-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input788662499-.out index 5e6019eb3075..89eb69142a26 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input788662499-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/neg.tz on storage 0 and input '(Right 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input972832189-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input972832189-.out index b1dad000df66..f3c6be5e92f1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -neg.tz--storage680650890--input972832189-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/neg.tz on storage 0 and input '(Left 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -none.tz--storage11179311--input125992234-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -none.tz--storage11179311--input125992234-.out index 2a6d879b168f..90e8e20c99f2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -none.tz--storage11179311--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/none.tz on storage 'Some 10' and input Unit --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not.tz--storage921624073--input570553153-.out similarity index 71% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not.tz--storage921624073--input570553153-.out index c7a6ae43a3a6..742df8a2ad90 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not.tz--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not.tz on storage None and input False --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not.tz--storage921624073--input954397288-.out similarity index 71% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not.tz--storage921624073--input954397288-.out index 7decc8181b2a..d2715e36e469 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not.tz--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not.tz on storage None and input True --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input1051197453-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input1051197453-.out index 431459b1b151..6ec4bf8b3964 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input1051197453-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not_binary.tz on storage None and input '(Right 8)' --level 1 --trace-stack storage (Some -9) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input123939249-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input123939249-.out index 5d162510c9df..256832d78a2c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input123939249-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not_binary.tz on storage None and input '(Left 7)' --level 1 --trace-stack storage (Some -8) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input24243730-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input24243730-.out index ec2d576ecd34..6babc0203589 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input24243730-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not_binary.tz on storage None and input '(Left -8)' --level 1 --trace-stack storage (Some 7) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input518945720-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input518945720-.out index 26f3c17124d5..a529f275ac2f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input518945720-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not_binary.tz on storage None and input '(Left 8)' --level 1 --trace-stack storage (Some -9) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input788662499-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input788662499-.out index ef0a5f7b6466..a1e644e2557b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input788662499-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not_binary.tz on storage None and input '(Right 0)' --level 1 --trace-stack storage (Some -1) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input906118781-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input906118781-.out index 091bc6708bcb..6bea8c131ba2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input906118781-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not_binary.tz on storage None and input '(Right 7)' --level 1 --trace-stack storage (Some -8) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input921874253-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input921874253-.out index 281156f0b0f1..4e01feb82ec7 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input921874253-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not_binary.tz on storage None and input '(Left -9)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input972832189-.out similarity index 74% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input972832189-.out index 70cd0dafec8d..cd7ca3adf3dd 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -not_binary.tz--storage921624073--input972832189-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/not_binary.tz on storage None and input '(Left 0)' --level 1 --trace-stack storage (Some -1) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input106930123-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input106930123-.out index e6bf88ac0713..f1a91c26f875 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input181204719-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input181204719-.out index 79a777adec88..0290c518bc8f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input223774825-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input223774825-.out index a5c250f183f8..e46c21282822 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input908807505-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input908807505-.out index 91ed7d12fbe9..117aff7365cc 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input1056991424-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input1056991424-.out index 211ce567a709..5bdffb4e101e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input1056991424-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or_binary.tz on storage None and input '(Pair 0 8)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input375993021-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input375993021-.out index 759e2725447d..3ca02ad722c3 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input375993021-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or_binary.tz on storage None and input '(Pair 14 1)' --level 1 --trace-stack storage (Some 15) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input673240563-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input673240563-.out index 570a589a9e21..8edbb7ec4115 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input673240563-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or_binary.tz on storage None and input '(Pair 8 0)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input747448890-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input747448890-.out index 9294a3018c49..c43c470f6b13 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input747448890-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or_binary.tz on storage None and input '(Pair 7 7)' --level 1 --trace-stack storage (Some 7) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input832403787-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input832403787-.out index dafb28461f82..921c792ccf4e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input832403787-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or_binary.tz on storage None and input '(Pair 15 4)' --level 1 --trace-stack storage (Some 15) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input858098961-.out similarity index 73% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input858098961-.out index a09d237f82c5..25c26ce49c91 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -or_binary.tz--storage921624073--input858098961-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/or_binary.tz on storage None and input '(Pair 4 8)' --level 1 --trace-stack storage (Some 12) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out similarity index 98% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out index 23d1ce39a247..2cec817687af 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))-Unit1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out similarity index 98% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out index 553b16162363..39f9241d1f9c 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))-Unit0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out similarity index 98% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out index f5a48d13b62e..79142de16dde 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out similarity index 98% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out index 8c7c668be706..a37f50cc8e97 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input106930123-.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input106930123-.out index 474ca4987040..61f69e19ae14 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/pair_id.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some (Pair False True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input181204719-.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input181204719-.out index 7d072569feef..8e8bdad08742 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/pair_id.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some (Pair True False)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input223774825-.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input223774825-.out index 4b56b280f45c..ae1e4e8e83c2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/pair_id.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some (Pair False False)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input908807505-.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input908807505-.out index cc911a7e7952..527e8983da0c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pair_id.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/pair_id.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some (Pair True True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pexec.tz--storage256947135--input1050356042-.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pexec.tz--storage256947135--input1050356042-.out index 76733b041261..dca9c7187373 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pexec.tz--storage256947135--input1050356042-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/pexec.tz on storage 14 and input 38 --level 1 --trace-stack storage 52 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pexec_2.tz--storage197120858--input179371027-.out similarity index 97% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pexec_2.tz--storage197120858--input179371027-.out index 5747ec5d9341..e7ea4ae78e13 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -pexec_2.tz--storage197120858--input179371027-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/pexec_2.tz on storage '{ 0 ; 1 ; 2 ; 3}' and input 4 --level 1 --trace-stack storage { 0 ; 7 ; 14 ; 21 } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ret_int.tz--storage921624073--input125992234-.out similarity index 70% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ret_int.tz--storage921624073--input125992234-.out index 45453ecbd233..9e2f59766d7e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -ret_int.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/ret_int.tz on storage None and input Unit --level 1 --trace-stack storage (Some 300) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse.tz--storage528921618--input457300675-.out similarity index 72% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse.tz--storage528921618--input457300675-.out index b4ff8c0810e7..551d2eeffe7d 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse.tz-{""}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/reverse.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse.tz--storage528921618--input851203613-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse.tz--storage528921618--input851203613-.out index 89b5150ccc84..8cfa8cdde185 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/reverse.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse_loop.tz--storage528921618--input457300675-.out similarity index 83% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse_loop.tz--storage528921618--input457300675-.out index 2aabbe5128d5..86f6fe10bb3b 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse_loop.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{""}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/reverse_loop.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse_loop.tz--storage528921618--input851203613-.out similarity index 93% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse_loop.tz--storage528921618--input851203613-.out index c02d88b68218..efc3b113b522 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -reverse_loop.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/reverse_loop.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out similarity index 65% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out index 927bcbe858f6..0a07bdd694fa 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/sapling_empty_state.tz on storage '{}' and input Unit --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_address.tz--storage125992234--input125992234-.out similarity index 86% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_address.tz--storage125992234--input125992234-.out index 415e8ded036e..351b7866a0dd 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_address.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/self_address.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_with_default_entrypoint.tz--storage125992234--input1259.out similarity index 87% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_with_default_entrypoint.tz--storage125992234--input1259.out index 0ed2d26bcafb..40bc2eef5e2d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_with_default_entrypoint.tz--storage125992234--input1259.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/self_with_default_entrypoint.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out similarity index 94% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out index ed601cdc7f5b..3d623b57ae58 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/self_with_entrypoint.tz on storage Unit and input 'Left (Left 0)' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input620760059-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input620760059-.out index 7b455a8ef66c..59f66cf80862 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input620760059-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-"world"-(Pair "world" 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"world"' --level 1 --trace-stack storage (Pair "world" 0) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input717096222-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input717096222-.out index 9fc83a6ab531..936f6e1b5929 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input717096222-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-"abc"-(Pair "abc" 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"abc"' --level 1 --trace-stack storage (Pair "abc" 0) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input79230375-.out similarity index 85% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input79230375-.out index 87143eea2557..f245405133bf 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_car.tz--storage224747103--input79230375-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-""-(Pair "" 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '""' --level 1 --trace-stack storage (Pair "" 0) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage205576101--input654274102-.out similarity index 84% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage205576101--input654274102-.out index cc8203e95446..7f4ff772ac5b 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage205576101--input654274102-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 500)-3-(Pair "hello" 3)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_cdr.tz on storage '(Pair "hello" 500)' and input 3 --level 1 --trace-stack storage (Pair "hello" 3) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage224747103--input453441034-.out similarity index 84% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage224747103--input453441034-.out index 205451b1e6bf..296cf6f6b361 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage224747103--input453441034-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 0)-1-(Pair "hello" 1)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_cdr.tz on storage '(Pair "hello" 0)' and input 1 --level 1 --trace-stack storage (Pair "hello" 1) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage611418174--input967284912-.out similarity index 84% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage611418174--input967284912-.out index e559eb97219d..cfb488088b2f 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_cdr.tz--storage611418174--input967284912-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 7)-100-(Pair "hello" 100)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_cdr.tz on storage '(Pair "hello" 7)' and input 100 --level 1 --trace-stack storage (Pair "hello" 100) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input264787654-.out similarity index 65% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input264787654-.out index e61b78de85be..c1be6cc15189 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input264787654-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_id.tz on storage '{}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input457300675-.out similarity index 62% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input457300675-.out index c70826dd54e7..41da2149c4b2 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_id.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input989507347-.out similarity index 65% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input989507347-.out index debe2a304c98..d3ae26159d1e 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_id.tz--storage457300675--input989507347-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ "asdf" ; "bcde" }-{ "asdf" ; "bcde" }] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_id.tz on storage '{}' and input '{ "asdf" ; "bcde" }' --level 1 --trace-stack storage { "asdf" ; "bcde" } emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input457300675-.out similarity index 72% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input457300675-.out index 3dc9219aa863..56368b4a2e09 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_iter.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input701684511-.out similarity index 84% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input701684511-.out index cda329c16ce5..6712a568186e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input701684511-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_iter.tz on storage 111 and input '{ -100 ; 1 ; 2 ; 3 }' --level 1 --trace-stack storage -94 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input802622031-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input802622031-.out index 007e93c9ccac..e764f210557e 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_iter.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_iter.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage495706788--input33757838-.out similarity index 88% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage495706788--input33757838-.out index 2a5daba77b9b..9dac0aa97584 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage495706788--input33757838-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-"Hi"-(Pair {} (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_member.tz on storage '(Pair {} None)' and input '"Hi"' --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage550087893--input79230375-.out similarity index 90% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage550087893--input79230375-.out index 212bb959e080..40a1c43a8fe0 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage550087893--input79230375-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { "Hello" ; "World" } None)-""-(Pair { "Hello" ; "World" } (Some False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_member.tz on storage '(Pair { "Hello" ; "World" } None)' and input '""' --level 1 --trace-stack storage (Pair { "Hello" ; "World" } (Some False)) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage605111220--input33757838-.out similarity index 89% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage605111220--input33757838-.out index 5b03e8e289ac..257935e9ebdc 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_member.tz--storage605111220--input33757838-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { "Hi" } None)-"Hi"-(Pair { "Hi" } (Some True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_member.tz on storage '(Pair { "Hi" } None)' and input '"Hi"' --level 1 --trace-stack storage (Pair { "Hi" } (Some True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input403499055-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input403499055-.out index fd0e045345cf..90ff54b7c90b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input457300675-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input457300675-.out index 4356246a99ce..d0fd0cf8096d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input469078912-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input469078912-.out index 214a757519a8..2dd401ad1b2c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input802622031-.out similarity index 66% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input802622031-.out index 433fdeea9a72..22af6c3b5c86 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -set_size.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/set_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sha3.tz--storage921624073--input1008262038-.out similarity index 78% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sha3.tz--storage921624073--input1008262038-.out index c028e8a19151..7121baba3f84 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sha3.tz--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/sha3.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack storage (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input115382786-.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input115382786-.out index 771f26c2e55f..650a0c3fe5ef 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input115382786-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Left (Pair 15 2))' --level 1 --trace-stack storage (Some 60) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input271566295-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input271566295-.out index 6c329efefa80..de3e4c62fdae 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input271566295-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Right (Pair 0 1))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input340971987-.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input340971987-.out index 462eb9559504..6d797645b00b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input340971987-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Left (Pair 0 0))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input374168553-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input374168553-.out index 065bc173bf74..1b7a351641b4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input374168553-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Right (Pair 15 2))' --level 1 --trace-stack storage (Some 3) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input413621582-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input413621582-.out index c8782b398264..3a0b22f27fa9 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input413621582-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Right (Pair 1 2))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input424849461-.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input424849461-.out index 800900544158..13e40e60d96f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input424849461-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Left (Pair 1 2))' --level 1 --trace-stack storage (Some 4) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input485030042-.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input485030042-.out index ee3030a71408..1c77b51f4df5 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input485030042-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Left (Pair 8 1))' --level 1 --trace-stack storage (Some 16) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input705767726-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input705767726-.out index d1f29fcd2111..97ecde3bff27 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input705767726-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Right (Pair 8 1))' --level 1 --trace-stack storage (Some 4) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input769385932-.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input769385932-.out index bbd3c43b558b..104830ff7861 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input769385932-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Left (Pair 0 1))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input913715337-.out similarity index 76% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input913715337-.out index 42097093458c..726ef564ce8b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -shifts.tz--storage921624073--input913715337-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/shifts.tz on storage None and input '(Right (Pair 0 0))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage351480851--input65907686-.out similarity index 99% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage351480851--input65907686-.out index 799adee17562..587a4876ceda 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage351480851--input65907686-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"-Pair 1 10000-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice.tz on storage 'Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"' and input 'Pair 1 10000' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input198821575-.out similarity index 80% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input198821575-.out index 94d9e40fdb68..33b5e49c9cbb 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input198821575-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 1 1-(Some "o")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 1' --level 1 --trace-stack storage (Some "o") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input359592843-.out similarity index 79% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input359592843-.out index 664b6720e57e..a746bc0082cc 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input359592843-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 10 5-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 10 5' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input551316239-.out similarity index 80% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input551316239-.out index f68dacc4ca78..7c7b0bc63f7c 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input551316239-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 0-(Some "")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 0' --level 1 --trace-stack storage (Some "") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input722749044-.out similarity index 79% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input722749044-.out index 6e94a0418c1e..47f1e9584b32 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input722749044-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 10-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 10' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input839234860-.out similarity index 79% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input839234860-.out index dd92c7846e76..a1b86f54e703 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input839234860-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 1 3-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 3' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input919180079-.out similarity index 80% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input919180079-.out index d3198f55e492..1045793e7e9d 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage364922380--input919180079-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 2-(Some "Fo")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 2' --level 1 --trace-stack storage (Some "Fo") emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage921624073--input551316239-.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage921624073--input551316239-.out index 8df8c45cc3bd..ea85e280a7f0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice.tz--storage921624073--input551316239-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice.tz on storage None and input 'Pair 0 0' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input198821575-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input198821575-.out index 7e4e02433d6d..10d9649be543 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input198821575-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 1' --level 1 --trace-stack storage (Some 0xbb) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input462551352-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input462551352-.out index 58c95a9add1d..2712dea9a723 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input462551352-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 1' --level 1 --trace-stack storage (Some 0xaa) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input489157380-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input489157380-.out index e1b4b2ed38c3..9f94edb0774f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input489157380-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 2' --level 1 --trace-stack storage (Some 0xbbcc) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input551316239-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input551316239-.out index 71f341e9229c..4480f34bdcde 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input551316239-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 0' --level 1 --trace-stack storage (Some 0x) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input669330759-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input669330759-.out index 1eceba18afa9..d0b35682b7a6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input669330759-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 2' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input743596105-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input743596105-.out index 5d3cc94b64c8..8ab9e25d3fe1 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input743596105-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 1' --level 1 --trace-stack storage (Some 0xcc) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input839234860-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input839234860-.out index 6da85583274e..7155a73f808f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage229749865--input839234860-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 3' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage504917929--input65907686-.out similarity index 85% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage504917929--input65907686-.out index a3dcea1cbece..33c593fe42f0 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage504917929--input65907686-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc-Pair 1 10000-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage 'Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc' and input 'Pair 1 10000' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage921624073--input462551352-.out similarity index 77% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage921624073--input462551352-.out index f7a44ca060ad..3dcb07542e7d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -slice_bytes.tz--storage921624073--input462551352-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/slice_bytes.tz on storage None and input 'Pair 0 1' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -str_id.tz--storage921624073--input1016369050-.out similarity index 68% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -str_id.tz--storage921624073--input1016369050-.out index f14eb5758528..9bea9a3b1fc8 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -str_id.tz--storage921624073--input1016369050-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[str_id.tz-None-"abcd"-(Some "abcd")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/str_id.tz on storage None and input '"abcd"' --level 1 --trace-stack storage (Some "abcd") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -str_id.tz--storage921624073--input93477117-.out similarity index 68% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -str_id.tz--storage921624073--input93477117-.out index ae68f36ac492..220edc5a341d 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -str_id.tz--storage921624073--input93477117-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[str_id.tz-None-"Hello"-(Some "Hello")] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/str_id.tz on storage None and input '"Hello"' --level 1 --trace-stack storage (Some "Hello") emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out similarity index 82% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out index cf929fe3b53e..5f377909de98 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-"1970-01-01T00:00:00Z"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 100)' --level 1 --trace-stack storage "1970-01-01T00:00:00Z" emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out similarity index 82% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out index 406d7e68e506..5b3846c40643 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-"1970-01-01T00:03:20Z"] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 -100)' --level 1 --trace-stack storage "1970-01-01T00:03:20Z" emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out index 5e7d7aba5a3d..83dae7bef7f6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 2000000000000000000)--1999999999999999900] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 2000000000000000000)' --level 1 --trace-stack storage -1999999999999999900 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out similarity index 90% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out index 2582c859e33e..fb066c5da38d 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair 3320000 1300000))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/tez_add_sub.tz on storage None and input '(Pair 2310000 1010000)' --level 1 --trace-stack storage (Some (Pair 3320000 1300000)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out similarity index 90% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out index 7fb5382fa443..7649f9ec364f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair 3000000 1000000))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/tez_add_sub.tz on storage None and input '(Pair 2000000 1000000)' --level 1 --trace-stack storage (Some (Pair 3000000 1000000)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -uncomb.tz--storage680650890--input394061083-.out similarity index 82% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -uncomb.tz--storage680650890--input394061083-.out index 039a2f71d5c5..2dd3ac755a19 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -uncomb.tz--storage680650890--input394061083-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/uncomb.tz on storage 0 and input '(Pair 1 4 2)' --level 1 --trace-stack storage 142 emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -unpair.tz--storage125992234--input125992234-.out similarity index 98% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -unpair.tz--storage125992234--input125992234-.out index 046eaf99d722..c9206c37f0c4 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -unpair.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/unpair.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -voting_power.tz--storage1011138251--input1040351577-.out similarity index 79% rename from "tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -voting_power.tz--storage1011138251--input1040351577-.out index 09e6cfd6e040..f623a217a62a 100644 --- "a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -voting_power.tz--storage1011138251--input1040351577-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"-(Pair 4000000000000 20000000000000)] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/voting_power.tz on storage '(Pair 0 0)' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack storage (Pair 4000000000000 20000000000000) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input1058477720-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input1058477720-.out index db25ca57fe5f..4bb5de062707 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input1058477720-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Left (Pair False False)' --level 1 --trace-stack storage (Some (Left False)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input1073176155-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input1073176155-.out index 09ee5e4e9f6f..4a0c8361169b 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input1073176155-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Right (Pair 0 0)' --level 1 --trace-stack storage (Some (Right 0)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input246594902-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input246594902-.out index 00c419ac2d64..0062c4d34816 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input246594902-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Left (Pair True False)' --level 1 --trace-stack storage (Some (Left True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input506603577-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input506603577-.out index 81683cd71474..aa666c4690af 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input506603577-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Right (Pair 1 1)' --level 1 --trace-stack storage (Some (Right 0)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input576248088-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input576248088-.out index dda0a30453ba..fb25b7b8655f 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input576248088-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Right (Pair 0 1)' --level 1 --trace-stack storage (Some (Right 1)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input612012282-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input612012282-.out index 82b9e6f60dff..c253584b4761 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input612012282-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Right (Pair 42 21)' --level 1 --trace-stack storage (Some (Right 63)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input617591686-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input617591686-.out index 578f0134155a..7a8e8563cb6c 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input617591686-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Left (Pair False True)' --level 1 --trace-stack storage (Some (Left True)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input639311176-.out similarity index 80% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input639311176-.out index c7d682118254..990c4ad23b69 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input639311176-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Left (Pair True True)' --level 1 --trace-stack storage (Some (Left False)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input688315180-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input688315180-.out index f5e11121921a..855c8680ba38 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input688315180-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Right (Pair 42 63)' --level 1 --trace-stack storage (Some (Right 21)) emitted operations diff --git a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input967929605-.out similarity index 79% rename from tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out rename to tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input967929605-.out index 72b34f5b1647..9498d387b5d6 100644 --- a/tests_python/tests_014/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Kathmandu- opcodes -xor.tz--storage921624073--input967929605-.out @@ -1,5 +1,5 @@ -tests_014/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))] +./octez-client --protocol PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_014/opcodes/xor.tz on storage None and input 'Right (Pair 1 0)' --level 1 --trace-stack storage (Some (Right 1)) emitted operations -- GitLab From 255cf4140cbb3e3ba850012782f2f8f6bdde9df7 Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Thu, 13 Oct 2022 14:52:14 +0200 Subject: [PATCH 16/17] Tezt/contract_opcodes: replace pytest with tezt traces for Lima --- ...prcVkpaWU\")-Unit-(Some \".8420090f97.out" | 23 ------------------- ....tz--storage125992234--input254251340-.out | 2 +- ....tz--storage125992234--input420401245-.out | 2 +- ....tz--storage125992234--input680650890-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage921624073--input322109491-.out | 2 +- ....tz--storage921624073--input461261325-.out | 2 +- ....tz--storage921624073--input530006774-.out | 2 +- ....tz--storage921624073--input712570300-.out | 2 +- ....tz--storage921624073--input249636002-.out | 2 +- ....tz--storage921624073--input267363182-.out | 2 +- ....tz--storage921624073--input438561129-.out | 2 +- ....tz--storage921624073--input249636002-.out | 2 +- ....tz--storage921624073--input307538219-.out | 2 +- ....tz--storage921624073--input373737581-.out | 2 +- ....tz--storage921624073--input117475800-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage570553153--input106930123-.out | 2 +- ....tz--storage570553153--input181204719-.out | 2 +- ....tz--storage570553153--input223774825-.out | 2 +- ....tz--storage570553153--input908807505-.out | 2 +- ....tz--storage492856247--input125992234-.out | 2 +- ....tz--storage495706788--input453441034-.out | 2 +- ...t.tz--storage56274299--input453441034-.out | 2 +- ...t.tz--storage56274299--input564400327-.out | 2 +- ...t.tz--storage56274299--input654274102-.out | 2 +- ....tz--storage690637660--input453441034-.out | 2 +- ....tz--storage806237530--input453441034-.out | 2 +- ...tz--storage109689253--input1071610051-.out | 2 +- ....tz--storage109689253--input700475845-.out | 2 +- ....tz--storage109689253--input905318451-.out | 2 +- ....tz--storage495706788--input700475845-.out | 2 +- ....tz--storage915708427--input700475845-.out | 2 +- ....tz--storage936682951--input905318451-.out | 2 +- ..._padded.tz--storage921624073--input125.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ...tz--storage680650890--input1043734173-.out | 2 +- ....tz--storage680650890--input151303925-.out | 2 +- ....tz--storage680650890--input520610122-.out | 2 +- ....tz--storage680650890--input558805129-.out | 2 +- ....tz--storage680650890--input229402968-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input585234482-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage994282947--input701858804-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input585234482-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage994282947--input701858804-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage680650890--input783124233-.out | 2 +- ....tz--storage680650890--input783124233-.out | 2 +- ....tz--storage109160754--input125992234-.out | 12 +++++----- ....tz--storage921624073--input125992234-.out | 12 +++++----- ....tz--storage981066851--input125992234-.out | 23 +++++++++++++++++++ ....tz--storage125992234--input186507116-.out | 2 +- ....tz--storage921624073--input186507116-.out | 2 +- ....tz--storage186507116--input125992234-.out | 2 +- ....tz--storage950292965--input125992234-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage457300675--input281780712-.out | 2 +- ....tz--storage457300675--input392583650-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ....tz--storage457300675--input640104625-.out | 2 +- ....tz--storage457300675--input354091714-.out | 2 +- ....tz--storage457300675--input441061063-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ...t.tz--storage79230375--input264787654-.out | 2 +- ...t.tz--storage79230375--input316676251-.out | 2 +- ...t.tz--storage79230375--input457300675-.out | 2 +- ....tz--storage457300675--input798141440-.out | 2 +- ....tz--storage581876226--input166122047-.out | 2 +- ....tz--storage793461282--input781487591-.out | 2 +- ....tz--storage921624073--input315650912-.out | 2 +- ...l.tz--storage921624073--input51111414-.out | 2 +- ....tz--storage921624073--input545734274-.out | 2 +- ....tz--storage921624073--input772794967-.out | 2 +- ....tz--storage921624073--input917967660-.out | 2 +- ....tz--storage921624073--input964818218-.out | 2 +- ....tz--storage125992234--input117475800-.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ...tz--storage492856247--input1011138251-.out | 2 +- ...tz--storage492856247--input1018564342-.out | 2 +- ...tz--storage492856247--input1031049988-.out | 2 +- ....tz--storage492856247--input685590443-.out | 2 +- ....tz--storage125992234--input246866101-.out | 2 +- ...q.tz--storage125992234--input26856104-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ...tz--storage1011138251--input590117173-.out | 2 +- ...tz--storage1011138251--input850887554-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage994417987--input247451205-.out | 2 +- ....tz--storage994417987--input250545589-.out | 2 +- ...v.tz--storage994417987--input79625541-.out | 2 +- ....tz--storage977883604--input147133089-.out | 2 +- ....tz--storage977883604--input215785357-.out | 2 +- ....tz--storage977883604--input389351431-.out | 2 +- ...z.tz--storage977883604--input44513000-.out | 2 +- ....tz--storage977883604--input635398196-.out | 2 +- ....tz--storage977883604--input734264738-.out | 2 +- ....tz--storage977883604--input993071382-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage457300675--input125992234-.out | 2 +- ....tz--storage398998998--input246262487-.out | 2 +- ...t.tz--storage398998998--input79230375-.out | 2 +- ....tz--storage492856247--input478406404-.out | 2 +- ....tz--storage492856247--input962874972-.out | 2 +- ...tz--storage1026405794--input329240220-.out | 2 +- ....tz--storage382368661--input329240220-.out | 2 +- ....tz--storage496578814--input329240220-.out | 2 +- ....tz--storage496578814--input507231566-.out | 2 +- ....tz--storage547821324--input329240220-.out | 2 +- ....tz--storage796012494--input156280093-.out | 2 +- ....tz--storage796012494--input228164856-.out | 2 +- ....tz--storage139236239--input329240220-.out | 2 +- ...e.tz--storage139236239--input79230375-.out | 2 +- ....tz--storage329396864--input156280093-.out | 2 +- ...tz--storage921624073--input1040351577-.out | 2 +- ....tz--storage921624073--input153350004-.out | 2 +- ...ng.tz--storage151303925--input3431716-.out | 2 +- ....tz--storage151303925--input535018041-.out | 2 +- ....tz--storage921624073--input570553153-.out | 2 +- ....tz--storage921624073--input954397288-.out | 2 +- ....tz--storage398998998--input288201633-.out | 2 +- ....tz--storage398998998--input921624073-.out | 2 +- ....tz--storage921624073--input453441034-.out | 2 +- ....tz--storage921624073--input535454136-.out | 2 +- ....tz--storage921624073--input680650890-.out | 2 +- ...tz--storage921624073--input1008262038-.out | 2 +- ...ht.tz--storage4177631--input202098045-.out | 2 +- ...ght.tz--storage4177631--input44576556-.out | 2 +- ....tz--storage492856247--input125992234-.out | 2 +- ....tz--storage717096222--input457300675-.out | 2 +- ....tz--storage717096222--input546523343-.out | 2 +- ....tz--storage149262694--input220724351-.out | 2 +- ....tz--storage149262694--input457300675-.out | 2 +- ...s.tz--storage65410082--input457300675-.out | 2 +- ....tz--storage726220441--input972761363-.out | 2 +- ....tz--storage528921618--input264787654-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input656499821-.out | 2 +- ....tz--storage528921618--input264787654-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input656499821-.out | 2 +- ....tz--storage680650890--input568817463-.out | 2 +- ....tz--storage680650890--input737923774-.out | 2 +- ....tz--storage907453363--input457300675-.out | 2 +- ....tz--storage907453363--input648737279-.out | 2 +- ....tz--storage907453363--input908379154-.out | 2 +- ....tz--storage492856247--input403499055-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input469078912-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ...tz--storage457300675--input1027566226-.out | 2 +- ....tz--storage457300675--input276660554-.out | 2 +- ....tz--storage457300675--input599923743-.out | 2 +- ...tz--storage1011138251--input403579222-.out | 2 +- ...tz--storage1011138251--input532072758-.out | 2 +- ....tz--storage457300675--input798141440-.out | 2 +- ....tz--storage794999348--input152441147-.out | 2 +- ...p.tz--storage88008216--input798141440-.out | 2 +- ....tz--storage495706788--input453441034-.out | 2 +- ...t.tz--storage56274299--input453441034-.out | 2 +- ...t.tz--storage56274299--input564400327-.out | 2 +- ...t.tz--storage56274299--input654274102-.out | 2 +- ....tz--storage690637660--input453441034-.out | 2 +- ....tz--storage806237530--input453441034-.out | 2 +- ...tz--storage109689253--input1071610051-.out | 2 +- ....tz--storage109689253--input700475845-.out | 2 +- ....tz--storage109689253--input905318451-.out | 2 +- ....tz--storage495706788--input700475845-.out | 2 +- ....tz--storage915708427--input700475845-.out | 2 +- ....tz--storage936682951--input905318451-.out | 2 +- ...e.tz--storage492856247--input15265129-.out | 2 +- ....tz--storage492856247--input158311065-.out | 2 +- ....tz--storage492856247--input456982702-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage151303925--input216277421-.out | 2 +- ....tz--storage287799761--input485842614-.out | 2 +- ...tz--storage680650890--input1067298059-.out | 2 +- ....tz--storage680650890--input380029349-.out | 2 +- ....tz--storage680650890--input563503226-.out | 2 +- ....tz--storage680650890--input788662499-.out | 2 +- ....tz--storage680650890--input972832189-.out | 2 +- ...e.tz--storage11179311--input125992234-.out | 2 +- ....tz--storage921624073--input570553153-.out | 2 +- ....tz--storage921624073--input954397288-.out | 2 +- ...tz--storage921624073--input1051197453-.out | 2 +- ....tz--storage921624073--input123939249-.out | 2 +- ...y.tz--storage921624073--input24243730-.out | 2 +- ....tz--storage921624073--input518945720-.out | 2 +- ....tz--storage921624073--input788662499-.out | 2 +- ....tz--storage921624073--input906118781-.out | 2 +- ....tz--storage921624073--input921874253-.out | 2 +- ....tz--storage921624073--input972832189-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ...tz--storage921624073--input1056991424-.out | 2 +- ....tz--storage921624073--input375993021-.out | 2 +- ....tz--storage921624073--input673240563-.out | 2 +- ....tz--storage921624073--input747448890-.out | 2 +- ....tz--storage921624073--input832403787-.out | 2 +- ....tz--storage921624073--input858098961-.out | 2 +- ....tz--storage125992234--input305844558-.out | 2 +- ....tz--storage125992234--input646365167-.out | 2 +- ...tz--storage125992234--input1028781121-.out | 2 +- ....tz--storage125992234--input802670583-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ...tz--storage256947135--input1050356042-.out | 2 +- ....tz--storage197120858--input179371027-.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ....tz--storage457300675--input125992234-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ...t.tz--storage125992234--input125992234.out | 2 +- ....tz--storage125992234--input289072903-.out | 2 +- ....tz--storage224747103--input620760059-.out | 2 +- ....tz--storage224747103--input717096222-.out | 2 +- ...r.tz--storage224747103--input79230375-.out | 2 +- ....tz--storage205576101--input654274102-.out | 2 +- ....tz--storage224747103--input453441034-.out | 2 +- ....tz--storage611418174--input967284912-.out | 2 +- ....tz--storage457300675--input264787654-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ....tz--storage457300675--input989507347-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input701684511-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ...r.tz--storage495706788--input33757838-.out | 2 +- ...r.tz--storage550087893--input79230375-.out | 2 +- ...r.tz--storage605111220--input33757838-.out | 2 +- ....tz--storage492856247--input403499055-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input469078912-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ...tz--storage921624073--input1008262038-.out | 2 +- ....tz--storage921624073--input115382786-.out | 2 +- ....tz--storage921624073--input271566295-.out | 2 +- ....tz--storage921624073--input340971987-.out | 2 +- ....tz--storage921624073--input374168553-.out | 2 +- ....tz--storage921624073--input413621582-.out | 2 +- ....tz--storage921624073--input424849461-.out | 2 +- ....tz--storage921624073--input485030042-.out | 2 +- ....tz--storage921624073--input705767726-.out | 2 +- ....tz--storage921624073--input769385932-.out | 2 +- ....tz--storage921624073--input913715337-.out | 2 +- ...e.tz--storage351480851--input65907686-.out | 2 +- ....tz--storage364922380--input198821575-.out | 2 +- ....tz--storage364922380--input359592843-.out | 2 +- ....tz--storage364922380--input551316239-.out | 2 +- ....tz--storage364922380--input722749044-.out | 2 +- ....tz--storage364922380--input839234860-.out | 2 +- ....tz--storage364922380--input919180079-.out | 2 +- ....tz--storage921624073--input551316239-.out | 2 +- ....tz--storage229749865--input198821575-.out | 2 +- ....tz--storage229749865--input462551352-.out | 2 +- ....tz--storage229749865--input489157380-.out | 2 +- ....tz--storage229749865--input551316239-.out | 2 +- ....tz--storage229749865--input669330759-.out | 2 +- ....tz--storage229749865--input743596105-.out | 2 +- ....tz--storage229749865--input839234860-.out | 2 +- ...s.tz--storage504917929--input65907686-.out | 2 +- ....tz--storage921624073--input462551352-.out | 2 +- ...tz--storage921624073--input1016369050-.out | 2 +- ...d.tz--storage921624073--input93477117-.out | 2 +- ....tz--storage492856247--input249636002-.out | 2 +- ....tz--storage492856247--input307538219-.out | 2 +- ....tz--storage492856247--input831449542-.out | 2 +- ....tz--storage921624073--input706350605-.out | 2 +- ....tz--storage921624073--input856198194-.out | 2 +- ....tz--storage680650890--input394061083-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ...z--storage1011138251--input1040351577-.out | 2 +- ...tz--storage921624073--input1058477720-.out | 2 +- ...tz--storage921624073--input1073176155-.out | 2 +- ....tz--storage921624073--input246594902-.out | 2 +- ....tz--storage921624073--input506603577-.out | 2 +- ....tz--storage921624073--input576248088-.out | 2 +- ....tz--storage921624073--input612012282-.out | 2 +- ....tz--storage921624073--input617591686-.out | 2 +- ....tz--storage921624073--input639311176-.out | 2 +- ....tz--storage921624073--input688315180-.out | 2 +- ....tz--storage921624073--input967929605-.out | 2 +- 328 files changed, 359 insertions(+), 359 deletions(-) delete mode 100644 "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input254251340-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input420401245-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input680650890-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add.tz--storage125992234--input125992234-.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out (84%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out (82%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out (82%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -address.tz--storage921624073--input117475800-.out (75%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input106930123-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input181204719-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input223774825-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input908807505-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_binary.tz--storage125992234--input125992234-.out (92%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input106930123-.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input181204719-.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input223774825-.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input908807505-.out (69%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -balance.tz--storage492856247--input125992234-.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out (82%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--input125.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -car.tz--storage680650890--input783124233-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cdr.tz--storage680650890--input783124233-.out (66%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage109160754--input125992234-.out (54%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage921624073--input125992234-.out (53%) create mode 100644 tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage981066851--input125992234-.out rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-get.tz--storage125992234--input186507116-.out (94%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-set-2.tz--storage921624073--input186507116-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-set.tz--storage186507116--input125992234-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb.tz--storage950292965--input125992234-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -compare.tz--storage125992234--input125992234-.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comparisons.tz--storage457300675--input281780712-.out (97%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input392583650-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input457300675-.out (65%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input640104625-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out (65%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input264787654-.out (92%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input316676251-.out (93%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input457300675-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage457300675--input798141440-.out (67%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage581876226--input166122047-.out (68%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage793461282--input781487591-.out (69%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input315650912-.out (95%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input51111414-.out (98%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input545734274-.out (95%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input772794967-.out (87%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input917967660-.out (98%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input964818218-.out (95%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contract.tz--storage125992234--input117475800-.out (77%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -create_contract.tz--storage921624073--input125992234-.out (90%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dig_eq.tz--storage125992234--input246866101-.out (99%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dig_eq.tz--storage125992234--input26856104-.out (99%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dign.tz--storage680650890--input529388602-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dip.tz--storage1011138251--input590117173-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dip.tz--storage1011138251--input850887554-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dipn.tz--storage680650890--input529388602-.out (88%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dropn.tz--storage680650890--input529388602-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dugn.tz--storage680650890--input529388602-.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dup-n.tz--storage125992234--input125992234-.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input247451205-.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input250545589-.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input79625541-.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out (81%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -emit.tz--storage125992234--input125992234-.out (94%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -empty_map.tz--storage457300675--input125992234-.out (79%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -exec_concat.tz--storage398998998--input246262487-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -exec_concat.tz--storage398998998--input79230375-.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -first.tz--storage492856247--input478406404-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -first.tz--storage492856247--input962874972-.out (76%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out (78%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out (78%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out (79%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out (80%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out (77%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out (79%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out (79%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage139236239--input329240220-.out (84%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage139236239--input79230375-.out (84%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage329396864--input156280093-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_key.tz--storage921624073--input1040351577-.out (74%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_key.tz--storage921624073--input153350004-.out (74%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_string.tz--storage151303925--input3431716-.out (77%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_string.tz--storage151303925--input535018041-.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if.tz--storage921624073--input570553153-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if.tz--storage921624073--input954397288-.out (76%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if_some.tz--storage398998998--input288201633-.out (70%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if_some.tz--storage398998998--input921624073-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input453441034-.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input535454136-.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input680650890-.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -keccak.tz--storage921624073--input1008262038-.out (78%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -left_right.tz--storage4177631--input202098045-.out (73%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -left_right.tz--storage4177631--input44576556-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -level.tz--storage492856247--input125992234-.out (66%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat.tz--storage717096222--input457300675-.out (73%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat.tz--storage717096222--input546523343-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out (74%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input264787654-.out (65%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input457300675-.out (62%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input656499821-.out (65%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input264787654-.out (75%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input457300675-.out (65%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input656499821-.out (75%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_iter.tz--storage680650890--input568817463-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_iter.tz--storage680650890--input737923774-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input457300675-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input648737279-.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input908379154-.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input403499055-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input457300675-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input469078912-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input802622031-.out (66%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -loop_left.tz--storage528921618--input457300675-.out (86%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -loop_left.tz--storage528921618--input851203613-.out (96%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input1027566226-.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input276660554-.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input599923743-.out (64%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_iter.tz--storage1011138251--input403579222-.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_iter.tz--storage1011138251--input532072758-.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage457300675--input798141440-.out (77%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage794999348--input152441147-.out (88%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage88008216--input798141440-.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out (83%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input700475845-.out (84%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input905318451-.out (84%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage495706788--input700475845-.out (82%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage915708427--input700475845-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage936682951--input905318451-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input15265129-.out (66%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input158311065-.out (66%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input456982702-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input457300675-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mul.tz--storage125992234--input125992234-.out (94%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input1067298059-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input380029349-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input563503226-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input788662499-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input972832189-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -none.tz--storage11179311--input125992234-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not.tz--storage921624073--input570553153-.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not.tz--storage921624073--input954397288-.out (71%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input1051197453-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input123939249-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input24243730-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input518945720-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input788662499-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input906118781-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input921874253-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input972832189-.out (74%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input106930123-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input181204719-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input223774825-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input908807505-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input1056991424-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input375993021-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input673240563-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input747448890-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input832403787-.out (73%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input858098961-.out (73%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out (98%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out (98%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out (98%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out (98%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input106930123-.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input181204719-.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input223774825-.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input908807505-.out (70%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pexec.tz--storage256947135--input1050356042-.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pexec_2.tz--storage197120858--input179371027-.out (97%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ret_int.tz--storage921624073--input125992234-.out (70%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse.tz--storage528921618--input457300675-.out (72%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse.tz--storage528921618--input851203613-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse_loop.tz--storage528921618--input457300675-.out (83%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse_loop.tz--storage528921618--input851203613-.out (93%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_address.tz--storage125992234--input125992234-.out (86%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_with_default_entrypoint.tz--storage125992234--input125992234.out (87%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out (94%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input620760059-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input717096222-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input79230375-.out (85%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage205576101--input654274102-.out (84%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage224747103--input453441034-.out (84%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage611418174--input967284912-.out (84%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input264787654-.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input457300675-.out (62%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input989507347-.out (65%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input457300675-.out (72%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input701684511-.out (84%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input802622031-.out (76%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage495706788--input33757838-.out (88%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage550087893--input79230375-.out (90%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage605111220--input33757838-.out (89%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input403499055-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input457300675-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input469078912-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input802622031-.out (66%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sha3.tz--storage921624073--input1008262038-.out (78%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input115382786-.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input271566295-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input340971987-.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input374168553-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input413621582-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input424849461-.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input485030042-.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input705767726-.out (76%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input769385932-.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input913715337-.out (76%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage351480851--input65907686-.out (99%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input198821575-.out (80%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input359592843-.out (79%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input551316239-.out (80%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input722749044-.out (79%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input839234860-.out (79%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input919180079-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage921624073--input551316239-.out (77%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input198821575-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input462551352-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input489157380-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input551316239-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input669330759-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input743596105-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input839234860-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage504917929--input65907686-.out (85%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage921624073--input462551352-.out (77%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -str_id.tz--storage921624073--input1016369050-.out (68%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -str_id.tz--storage921624073--input93477117-.out (68%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out (82%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out (90%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out (90%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -uncomb.tz--storage680650890--input394061083-.out (82%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -unpair.tz--storage125992234--input125992234-.out (98%) rename "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -voting_power.tz--storage1011138251--input1040351577-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input1058477720-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input1073176155-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input246594902-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input506603577-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input576248088-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input612012282-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input617591686-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input639311176-.out (80%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input688315180-.out (79%) rename tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out => tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input967929605-.out (79%) diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" "b/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" deleted file mode 100644 index 31efa2b6c7f6..000000000000 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" +++ /dev/null @@ -1,23 +0,0 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some "NetXdQprcVkpaWU")-Unit-(Some "NetXdQprcVkpaWU")] - -storage - (Some "NetXdQprcVkpaWU") -emitted operations - -big_map diff - -trace - - location: 8 (remaining gas: 1039993.247 units remaining) - [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (remaining gas: 1039993.237 units remaining) - [ ] - - location: 9 (remaining gas: 1039993.222 units remaining) - [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039993.212 units remaining) - [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039993.202 units remaining) - [ {} - (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039993.192 units remaining) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] - diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input254251340-.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input254251340-.out index 80e2d3804d4c..ab60a4d18168 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input254251340-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/abs.tz on storage Unit and input 948 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input420401245-.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input420401245-.out index a8fa18739ac0..a1813b4e6f7a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input420401245-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/abs.tz on storage Unit and input 12039123919239192312931 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input680650890-.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input680650890-.out index 0b29e6df10d3..5c7273b4d2b0 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -abs.tz--storage125992234--input680650890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/abs.tz on storage Unit and input 0 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add.tz--storage125992234--input125992234-.out similarity index 96% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add.tz--storage125992234--input125992234-.out index bd81671f42a5..507f4e4c2e0e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out index 071024a6fa6e..bb1e1640669e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x01 0x00' --level 1 --trace-stack storage (Some 0x0100000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out index d2e2b27b86a5..47aeeaea9c3c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0x0200000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x010000' --level 1 --trace-stack storage (Some 0x0200000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out index cc5cd04a23ee..334d225d24ad 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x0100000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x00' --level 1 --trace-stack storage (Some 0x0100000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out index 1321c238a16f..1b3aecdc21a5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x00 0x00' --level 1 --trace-stack storage (Some 0x0000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out index 322f18615bfe..49516ad69b76 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some "1970-01-01T00:03:20Z")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:03:20Z") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out index f739cb998b0c..f617505c0af2 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_delta_timestamp.tz on storage None and input '(Pair -100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out similarity index 82% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out index b805dc765bc0..418115d905bf 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 "1970-01-01T00:00:00Z")-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 0 "1970-01-01T00:00:00Z")' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out index 6546434d7f51..d1689ab914f2 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some "1970-01-01T00:03:20Z")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:03:20Z") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out index 3c3c281fdeb5..dea90b7683b8 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 -100)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out similarity index 82% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out index cbd228437da3..a7405999a7f9 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair "1970-01-01T00:00:00Z" 0)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/add_timestamp_delta.tz on storage None and input '(Pair "1970-01-01T00:00:00Z" 0)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -address.tz--storage921624073--input117475800-.out similarity index 75% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -address.tz--storage921624073--input117475800-.out index af5b3febe080..486f0cb55a63 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -address.tz--storage921624073--input117475800-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[address.tz-None-"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"-(Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/address.tz on storage None and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack storage (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input106930123-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input106930123-.out index c7510a0290f8..9914a7f0f533 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input181204719-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input181204719-.out index f94825d156b4..8df09f1cab61 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input223774825-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input223774825-.out index 18f3d10a56bd..8ba052087bd0 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input908807505-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input908807505-.out index 812932c24365..846ce2bebea8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_binary.tz--storage125992234--input125992234-.out similarity index 92% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_binary.tz--storage125992234--input125992234-.out index 714d7c3b7630..043c54f0721b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_binary.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and_binary.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input106930123-.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input106930123-.out index 2a984eb4b05d..f51ff601ffb6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input106930123-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and_logical_1.tz on storage False and input '(Pair False True)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input181204719-.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input181204719-.out index fc9e87c2db0b..c0b8dd23b523 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input181204719-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and_logical_1.tz on storage False and input '(Pair True False)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input223774825-.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input223774825-.out index e46c9eb6287a..70bdd97b292d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input223774825-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and_logical_1.tz on storage False and input '(Pair False False)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input908807505-.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input908807505-.out index 4b99ad26518d..d58f3829c16d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -and_logical_1.tz--storage570553153--input908807505-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/and_logical_1.tz on storage False and input '(Pair True True)' --level 1 --trace-stack storage True emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -balance.tz--storage492856247--input125992234-.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -balance.tz--storage492856247--input125992234-.out index 3cb64967d54d..8baceeab87c3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -balance.tz--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/balance.tz on storage 111 and input Unit --level 1 --trace-stack storage 4000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out index 10699a68bf54..3efc19f27ace 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out index dca4e17de0f5..65522018f9a8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out index 5a9895d86488..57fe306763fb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out index dbb47660be72..d24dd0a1e7b4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out index a2b52efd2ec8..88f6447022ea 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out index 63c3e4db1a97..2bbf5d6506f5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out index b54472116b60..81830e77202a 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"baz"-(Pair 4 (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out index 5c97e1e060fc..cc32d5980f53 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"bar"-(Pair 4 (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out index 47b8a67d5cbc..3dbaefc39109 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"foo"-(Pair 4 (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out similarity index 82% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out index 20c3a221730e..163714bc6b3b 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-"bar"-(Pair 4 (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out index cf7bde89e029..f1a4714f373d 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "foo" 1 } None)-"bar"-(Pair 4 (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out index 46085486fcd1..f594e9c2d3b9 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "foo" 0 } None)-"foo"-(Pair 4 (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--input125.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--input125.out index 18f18c8f3ded..d44f2d5af066 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--input125.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0x0000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_push_bytes_not_padded.tz on storage None and input Unit --level 1 --trace-stack storage (Some 0x0000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out index ae291ba10c5c..7187c216ff98 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x1000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_push_nat.tz on storage None and input Unit --level 1 --trace-stack storage (Some 0x1000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out index 07157d1ac52b..a0d7a39be323 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x01 --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out index 564d198065f0..e6e3281b7033 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x00 --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out index 6e92031c6442..aa90213ce125 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719-11320265829256585830781521966149529460476767408210445238902869222031333517497] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 --level 1 --trace-stack storage 11320265829256585830781521966149529460476767408210445238902869222031333517497 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out index 23424ba6db22..b32e1f56d8e0 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27-17832688077013577776524784494464728518213913213412866604053735695200962927400] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 --level 1 --trace-stack storage 17832688077013577776524784494464728518213913213412866604053735695200962927400 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out index 0619a7a99d26..534f54c8d7d9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_to_mutez.tz on storage 0 and input 0x10 --level 1 --trace-stack storage 16 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out index 7af88850fc23..48ca9895ee2e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out index 9be5b6cb0d42..953e6a0b9466 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out index 1100c0b69671..ad68ef62e1b8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out index 4293feb28f32..e5c822f58fb2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out index c4f7c08f21ae..b08d6b414b50 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out index f69b367278b1..f8bd4c1b2939 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out index ba5a03351362..04f80b741834 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out index 6bd2d6aac071..891ef53c2539 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--42-0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack storage 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out index 155f06110efa..e8f7482994b0 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out index bbb63494354c..38c20e8b7445 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--1-0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack storage 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out index f01896dd4194..a2bc3fc9151e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out index 87846f214f19..17466068c9f4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out index e8ddf1028f30..0daef29846c2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out index d38076bb4e03..f317d8f2d481 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out index be237fb9cbcb..6ba1f6cf0378 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out index 9584682682e6..28f784b13a71 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out index bb075b54deca..c59c5b9f399d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out index 95dc83248498..1815868418d5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out index 491b23e5b824..cf214f73428c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out index 4f962ca5e5b4..cb84d85a56c2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out index 80bbcd53eb8f..3f2ae3e7ba1e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out index 2873ed6546bb..c80dd29d266d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out index 629b9c67bb0c..f683d2673693 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out index a8f530abd4a0..1949346ad670 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out index 34a6612eed93..0b39d796cc65 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out index cfbcf0d8d28d..ad71134ce4ad 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--42-0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack storage 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out index fabdaa88e28e..6f823f2c69df 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out index 2c58ecfd86fc..1b544555d5d8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--1-0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack storage 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out index 2a1f6b270722..76172df08982 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out index dc46fb8dc4e7..3d8e703227bb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out index b33795be4512..7d1b96746af9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out index 23e19d4417d9..8ed78f25ca6f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out index 89f3279b46e7..7416067e10f4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out index 4f282f8b057a..49a643a8c7b9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out index fa7cd55f7047..d4ad6061a29d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out index 432311c89395..69e94d570bdc 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -car.tz--storage680650890--input783124233-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -car.tz--storage680650890--input783124233-.out index 94f6960dedb5..3e7bd84516de 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -car.tz--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/car.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack storage 34 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cdr.tz--storage680650890--input783124233-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cdr.tz--storage680650890--input783124233-.out index 01155070845b..f98e40f1a1af 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cdr.tz--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/cdr.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack storage 17 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage109160754--input125992234-.out similarity index 54% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage109160754--input125992234-.out index bbd22a0fde47..3dd189edda26 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage109160754--input125992234-.out @@ -1,7 +1,7 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some "NetXdQprcVkpaWU")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/chain_id_store.tz on storage '(Some 0x7a06a770)' and input Unit --level 1 --trace-stack storage - (Some "NetXdQprcVkpaWU") + (Some "NetXynUjJNZm7wi") emitted operations big_map diff @@ -12,12 +12,12 @@ trace - location: 8 (remaining gas: 1039994.787 units remaining) [ ] - location: 9 (remaining gas: 1039994.772 units remaining) - [ "NetXdQprcVkpaWU" ] + [ "NetXynUjJNZm7wi" ] - location: 10 (remaining gas: 1039994.762 units remaining) - [ (Some "NetXdQprcVkpaWU") ] + [ (Some "NetXynUjJNZm7wi") ] - location: 11 (remaining gas: 1039994.752 units remaining) [ {} - (Some "NetXdQprcVkpaWU") ] + (Some "NetXynUjJNZm7wi") ] - location: 13 (remaining gas: 1039994.742 units remaining) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage921624073--input125992234-.out similarity index 53% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage921624073--input125992234-.out index 908314112cc5..3c4f5c39a229 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage921624073--input125992234-.out @@ -1,7 +1,7 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some "NetXdQprcVkpaWU")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/chain_id_store.tz on storage None and input Unit --level 1 --trace-stack storage - (Some "NetXdQprcVkpaWU") + (Some "NetXynUjJNZm7wi") emitted operations big_map diff @@ -12,12 +12,12 @@ trace - location: 8 (remaining gas: 1039994.937 units remaining) [ ] - location: 9 (remaining gas: 1039994.922 units remaining) - [ "NetXdQprcVkpaWU" ] + [ "NetXynUjJNZm7wi" ] - location: 10 (remaining gas: 1039994.912 units remaining) - [ (Some "NetXdQprcVkpaWU") ] + [ (Some "NetXynUjJNZm7wi") ] - location: 11 (remaining gas: 1039994.902 units remaining) [ {} - (Some "NetXdQprcVkpaWU") ] + (Some "NetXynUjJNZm7wi") ] - location: 13 (remaining gas: 1039994.892 units remaining) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage981066851--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage981066851--input125992234-.out new file mode 100644 index 000000000000..f634da79b21c --- /dev/null +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -chain_id_store.tz--storage981066851--input125992234-.out @@ -0,0 +1,23 @@ + +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/chain_id_store.tz on storage '(Some "NetXynUjJNZm7wi")' and input Unit --level 1 --trace-stack +storage + (Some "NetXynUjJNZm7wi") +emitted operations + +big_map diff + +trace + - location: 8 (remaining gas: 1039993.247 units remaining) + [ (Pair Unit (Some "NetXynUjJNZm7wi")) ] + - location: 8 (remaining gas: 1039993.237 units remaining) + [ ] + - location: 9 (remaining gas: 1039993.222 units remaining) + [ "NetXynUjJNZm7wi" ] + - location: 10 (remaining gas: 1039993.212 units remaining) + [ (Some "NetXynUjJNZm7wi") ] + - location: 11 (remaining gas: 1039993.202 units remaining) + [ {} + (Some "NetXynUjJNZm7wi") ] + - location: 13 (remaining gas: 1039993.192 units remaining) + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] + diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-get.tz--storage125992234--input186507116-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-get.tz--storage125992234--input186507116-.out index 77d6fd12a6e2..0c18d0372435 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-get.tz--storage125992234--input186507116-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/comb-get.tz on storage Unit and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-set-2.tz--storage921624073--input186507116-.out similarity index 82% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-set-2.tz--storage921624073--input186507116-.out index 3a790ec9acb5..9f34ad010054 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-set-2.tz--storage921624073--input186507116-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 "toto" 0x01))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/comb-set-2.tz on storage None and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack storage (Some (Pair 2 4 "toto" 0x01)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-set.tz--storage186507116--input125992234-.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-set.tz--storage186507116--input125992234-.out index d78c47f1e074..39139a6e4c55 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb-set.tz--storage186507116--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/comb-set.tz on storage '(Pair 1 4 2 Unit)' and input Unit --level 1 --trace-stack storage (Pair 2 12 8 Unit) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb.tz--storage950292965--input125992234-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb.tz--storage950292965--input125992234-.out index 7cfb24f798af..ca9186438b20 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comb.tz--storage950292965--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/comb.tz on storage '(Pair 0 0 0)' and input Unit --level 1 --trace-stack storage (Pair 1 2 3) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -compare.tz--storage125992234--input125992234-.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -compare.tz--storage125992234--input125992234-.out index a06d8d388258..da8f169c1890 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -compare.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/compare.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comparisons.tz--storage457300675--input281780712-.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comparisons.tz--storage457300675--input281780712-.out index 25e1cd8af790..3d2edaa4a95d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -comparisons.tz--storage457300675--input281780712-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ { False ; False ; False ; True ; True } ;\n { False ; False ; True ; True ; True } ;\n { True ; True ; False ; False ; False } ;\n { True ; True ; True ; False ; False } ;\n { True ; True ; False ; True ; True } ;\n { False ; False ; True ; False ; False } }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/comparisons.tz on storage '{}' and input '{ -9999999; -1 ; 0 ; 1 ; 9999999 }' --level 1 --trace-stack storage { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input392583650-.out similarity index 81% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input392583650-.out index f4de7704e962..85a09486f52e 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input392583650-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ "test1" ; "test2" }-{ "Hello test1" ; "Hello test2" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_hello.tz on storage '{}' and input '{ "test1" ; "test2" }' --level 1 --trace-stack storage { "Hello test1" ; "Hello test2" } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input457300675-.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input457300675-.out index b98f0bbc818d..893d8d9f817a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_hello.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input640104625-.out similarity index 76% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input640104625-.out index 852722e69240..8a0abbdfc091 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello.tz--storage457300675--input640104625-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ "World!" }-{ "Hello World!" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_hello.tz on storage '{}' and input '{ "World!" }' --level 1 --trace-stack storage { "Hello World!" } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out index 2dc29fec43f8..1e8b7e60eafe 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xab ; 0xcd }' --level 1 --trace-stack storage { 0xffab ; 0xffcd } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out index 40adc5c31aac..9ab541085dd5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xcd }' --level 1 --trace-stack storage { 0xffcd } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out index e4381dd7adf0..ff3e380309ba 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_hello_bytes.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input264787654-.out similarity index 92% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input264787654-.out index e0b33a776cd1..116961e545ed 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input264787654-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{ "a" ; "b" ; "c" }-"abc"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_list.tz on storage '""' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage "abc" emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input316676251-.out similarity index 93% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input316676251-.out index 283e664c992f..b87d19e7ec8d 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input316676251-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{ "Hello" ; " " ; "World" ; "!" }-"Hello World!"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_list.tz on storage '""' and input '{ "Hello" ; " " ; "World" ; "!" }' --level 1 --trace-stack storage "Hello World!" emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input457300675-.out similarity index 72% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input457300675-.out index a355e1751d50..68aa431d9d0c 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -concat_list.tz--storage79230375--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{}-""] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/concat_list.tz on storage '""' and input '{}' --level 1 --trace-stack storage "" emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage457300675--input798141440-.out similarity index 67% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage457300675--input798141440-.out index c6ff1b8662ca..f5cd56f526d2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/cons.tz on storage '{}' and input 10 --level 1 --trace-stack storage { 10 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage581876226--input166122047-.out similarity index 68% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage581876226--input166122047-.out index 8b3bd3b1d4eb..29d3282dc201 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage581876226--input166122047-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/cons.tz on storage '{ 10 }' and input -5 --level 1 --trace-stack storage { -5 ; 10 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage793461282--input781487591-.out similarity index 69% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage793461282--input781487591-.out index 07bcac41f8e7..2c5671f47392 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -cons.tz--storage793461282--input781487591-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/cons.tz on storage '{ -5 ; 10 }' and input 99 --level 1 --trace-stack storage { 99 ; -5 ; 10 } emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input315650912-.out similarity index 95% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input315650912-.out index f33f118ac078..a41724fe9df5 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input315650912-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" } { "B" })-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/contains_all.tz on storage None and input '(Pair { "B" } { "B" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input51111414-.out similarity index 98% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input51111414-.out index 0211a0ae9e72..504902000b56 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input51111414-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input545734274-.out similarity index 95% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input545734274-.out index 9435f0b908d5..a8eee007c321 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input545734274-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "A" } { "B" })-(Some False)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/contains_all.tz on storage None and input '(Pair { "A" } { "B" })' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input772794967-.out similarity index 87% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input772794967-.out index fa9f1d5620d6..15e69789d56b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input772794967-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/contains_all.tz on storage None and input '(Pair {} {})' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input917967660-.out similarity index 98% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input917967660-.out index d5dc0dc46a53..57e082c6a88b 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input917967660-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input964818218-.out similarity index 95% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input964818218-.out index 38bfee353a2d..aa0f920de086 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contains_all.tz--storage921624073--input964818218-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "c" } { "B" })-(Some False)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/contains_all.tz on storage None and input '(Pair { "c" } { "B" })' --level 1 --trace-stack storage (Some False) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contract.tz--storage125992234--input117475800-.out similarity index 77% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contract.tz--storage125992234--input117475800-.out index 416d3faa17e0..10499ca7d59f 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -contract.tz--storage125992234--input117475800-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contract.tz-Unit-"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/contract.tz on storage Unit and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -create_contract.tz--storage921624073--input125992234-.out similarity index 90% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -create_contract.tz--storage921624073--input125992234-.out index 3ac153e89e98..8ecddf39fa06 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -create_contract.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/create_contract.tz on storage None and input Unit --level 1 --trace-stack storage (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out index 48d55ee78f16..bbe471937a31 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out index 2436725f6c6f..268bb92a6a8a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 1)' --level 1 --trace-stack storage -1 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out similarity index 81% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out index cff094e37dc0..11f129ce465f 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")-200] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/diff_timestamps.tz on storage 111 and input '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")' --level 1 --trace-stack storage 200 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out index e7e78a11845a..4b2a5f46c42b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 1 0)' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dig_eq.tz--storage125992234--input246866101-.out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dig_eq.tz--storage125992234--input246866101-.out index 0be2b7cb01d8..52d39435c3c6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dig_eq.tz--storage125992234--input246866101-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dig_eq.tz on storage Unit and input '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dig_eq.tz--storage125992234--input26856104-.out similarity index 99% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dig_eq.tz--storage125992234--input26856104-.out index 067dc8eb7e3c..f4d891ad7697 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dig_eq.tz--storage125992234--input26856104-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dig_eq.tz on storage Unit and input '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dign.tz--storage680650890--input529388602-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dign.tz--storage680650890--input529388602-.out index 4a382cfa70a4..cec3111a51db 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dign.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dign.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 5 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dip.tz--storage1011138251--input590117173-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dip.tz--storage1011138251--input590117173-.out index a2b98629c00e..fe73daf1a544 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dip.tz--storage1011138251--input590117173-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 1 1)' --level 1 --trace-stack storage (Pair 1 2) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dip.tz--storage1011138251--input850887554-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dip.tz--storage1011138251--input850887554-.out index 5ef90dbd96fb..e3b6060cb686 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dip.tz--storage1011138251--input850887554-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 15 9)' --level 1 --trace-stack storage (Pair 15 24) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dipn.tz--storage680650890--input529388602-.out similarity index 88% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dipn.tz--storage680650890--input529388602-.out index 9464651f0337..be52b3bee271 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dipn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dipn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dropn.tz--storage680650890--input529388602-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dropn.tz--storage680650890--input529388602-.out index 44bf76f0c1aa..f4f4c6263c16 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dropn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dropn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 5 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dugn.tz--storage680650890--input529388602-.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dugn.tz--storage680650890--input529388602-.out index c33f8a975aa2..692f125303ba 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dugn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dugn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dup-n.tz--storage125992234--input125992234-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dup-n.tz--storage125992234--input125992234-.out index 751e24b01d1b..bd9a3e21570c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -dup-n.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/dup-n.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input247451205-.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input247451205-.out index 566564b66d6f..2cf76653e79a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input247451205-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair None None None None)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 0)' --level 1 --trace-stack storage (Pair None None None None) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input250545589-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input250545589-.out index 8c0c567f8b52..5d630af45cad 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input250545589-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair -8 2)' --level 1 --trace-stack storage (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input79625541-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input79625541-.out index c2264d3c38d5..c432549dbe22 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv.tz--storage994417987--input79625541-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 -3)' --level 1 --trace-stack storage (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out index 1bb53ecb173d..679c6015e01c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 0))' --level 1 --trace-stack storage (Right None) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out index a93fb4ca6565..e9a13da7b840 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (Some (Pair 3 1)))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 3))' --level 1 --trace-stack storage (Right (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out index 364bd9bb6436..da52cb4f9206 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (Some (Pair 1 0)))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 10))' --level 1 --trace-stack storage (Left (Some (Pair 1 0))) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out index 7fefdc617a2a..6d75d6371b17 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 0))' --level 1 --trace-stack storage (Left None) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out index df74d657f0de..1cc3460b5c3e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Some (Pair 3 1)))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 3))' --level 1 --trace-stack storage (Left (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out index 57d1e4f4225c..87f955ca2d75 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (Some (Pair 1 0)))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 10))' --level 1 --trace-stack storage (Right (Some (Pair 1 0))) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out similarity index 81% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out index 3215ce25fb70..b85e3efb6fdb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (Some (Pair 0 5)))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 5 (Right 10))' --level 1 --trace-stack storage (Right (Some (Pair 0 5))) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -emit.tz--storage125992234--input125992234-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -emit.tz--storage125992234--input125992234-.out index 87424cccd6a4..af5e07fb8a00 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -emit.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/emit.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -empty_map.tz--storage457300675--input125992234-.out similarity index 79% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -empty_map.tz--storage457300675--input125992234-.out index eae3b2c7a265..204223e27699 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -empty_map.tz--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt "hello" "world" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/empty_map.tz on storage '{}' and input Unit --level 1 --trace-stack storage { Elt "hello" "world" } emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -exec_concat.tz--storage398998998--input246262487-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -exec_concat.tz--storage398998998--input246262487-.out index da89dcb8f0d8..92d2eb4ca8ee 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -exec_concat.tz--storage398998998--input246262487-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[exec_concat.tz-"?"-"test"-"test_abc"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/exec_concat.tz on storage '"?"' and input '"test"' --level 1 --trace-stack storage "test_abc" emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -exec_concat.tz--storage398998998--input79230375-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -exec_concat.tz--storage398998998--input79230375-.out index bb95b998a1dd..250ec7ad16e4 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -exec_concat.tz--storage398998998--input79230375-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[exec_concat.tz-"?"-""-"_abc"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/exec_concat.tz on storage '"?"' and input '""' --level 1 --trace-stack storage "_abc" emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -first.tz--storage492856247--input478406404-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -first.tz--storage492856247--input478406404-.out index 7b636b6f3b1f..8e3ce1291670 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -first.tz--storage492856247--input478406404-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/first.tz on storage 111 and input '{ 4 }' --level 1 --trace-stack storage 4 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -first.tz--storage492856247--input962874972-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -first.tz--storage492856247--input962874972-.out index 3c9175092efa..8611d0b14886 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -first.tz--storage492856247--input962874972-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/first.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out similarity index 78% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out index cfd0fc836e0a..f97b9df4ee16 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "hello" 4 })-"hello"-(Pair (Some 4) {})] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some 4) {}) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out similarity index 78% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out index f0a9b722884b..ceedff272803 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-"hello"-(Pair None { Elt "hello" 4 })] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_and_update_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --level 1 --trace-stack storage (Pair None { Elt "hello" 4 }) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out similarity index 79% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out index 0251a2f1cc70..54a6923ed792 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt "hello" 4 })-"hello"-(Pair (Some 4) { Elt "hello" 5 })] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some 4) { Elt "hello" 5 }) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out similarity index 80% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out index 1dfe48d4ca88..45eb4b5a8092 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt "hello" 4 })-"hi"-(Pair None { Elt "hello" 4 ; Elt "hi" 5 })] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --level 1 --trace-stack storage (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out similarity index 77% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out index 940192b61078..4841fe6cff9b 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-"hello"-(Pair None {})] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_and_update_map.tz on storage '(Pair None {})' and input '"hello"' --level 1 --trace-stack storage (Pair None {}) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out similarity index 79% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out index 0379a50e943e..daed9de3bf53 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --level 1 --trace-stack storage (Pair (Some 1) { Elt "2" 2 }) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out similarity index 79% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out index 290f6b14fac9..585699782083 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"2"-(Pair (Some 2) { Elt "1" 1 })] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"2"' --level 1 --trace-stack storage (Pair (Some 2) { Elt "1" 1 }) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage139236239--input329240220-.out similarity index 84% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage139236239--input329240220-.out index db4aafb8476c..da357d2801f4 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage139236239--input329240220-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "hello" "hi" })-"hello"-(Pair (Some "hi") { Elt "hello" "hi" })] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some "hi") { Elt "hello" "hi" }) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage139236239--input79230375-.out similarity index 84% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage139236239--input79230375-.out index 9f108e1e1407..becb43d800e1 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage139236239--input79230375-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "hello" "hi" })-""-(Pair None { Elt "hello" "hi" })] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '""' --level 1 --trace-stack storage (Pair None { Elt "hello" "hi" }) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage329396864--input156280093-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage329396864--input156280093-.out index 547fe173d197..b5aa08bbf1eb 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -get_map_value.tz--storage329396864--input156280093-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "1" "one" ; Elt "2" "two" })-"1"-(Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" })] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/get_map_value.tz on storage '(Pair None { Elt "1" "one" ; Elt "2" "two" })' and input '"1"' --level 1 --trace-stack storage (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_key.tz--storage921624073--input1040351577-.out similarity index 74% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_key.tz--storage921624073--input1040351577-.out index 50654b74191e..253e3f731a04 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_key.tz--storage921624073--input1040351577-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_key.tz-None-"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"-(Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/hash_key.tz on storage None and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack storage (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_key.tz--storage921624073--input153350004-.out similarity index 74% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_key.tz--storage921624073--input153350004-.out index b9ca7b9aafed..c3a0fbe65ade 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_key.tz--storage921624073--input153350004-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_key.tz-None-"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"-(Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/hash_key.tz on storage None and input '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"' --level 1 --trace-stack storage (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_string.tz--storage151303925--input3431716-.out similarity index 77% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_string.tz--storage151303925--input3431716-.out index a3bdd42f8447..196db2332dd9 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_string.tz--storage151303925--input3431716-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-"abcdefg"-0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/hash_string.tz on storage 0x00 and input '"abcdefg"' --level 1 --trace-stack storage 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_string.tz--storage151303925--input535018041-.out similarity index 77% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_string.tz--storage151303925--input535018041-.out index f2bdc069783a..42e83d945326 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -hash_string.tz--storage151303925--input535018041-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-"12345"-0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/hash_string.tz on storage 0x00 and input '"12345"' --level 1 --trace-stack storage 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if.tz--storage921624073--input570553153-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if.tz--storage921624073--input570553153-.out index f543f5aac666..fd230c2009f1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if.tz--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/if.tz on storage None and input False --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if.tz--storage921624073--input954397288-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if.tz--storage921624073--input954397288-.out index 23dd3582bc15..362f6ab674d7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if.tz--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/if.tz on storage None and input True --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if_some.tz--storage398998998--input288201633-.out similarity index 70% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if_some.tz--storage398998998--input288201633-.out index 2f85559f53f6..1963802681c7 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if_some.tz--storage398998998--input288201633-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if_some.tz-"?"-(Some "hello")-"hello"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/if_some.tz on storage '"?"' and input '(Some "hello")' --level 1 --trace-stack storage "hello" emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if_some.tz--storage398998998--input921624073-.out similarity index 72% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if_some.tz--storage398998998--input921624073-.out index 6b6a5af32fd5..d679a3d030a1 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -if_some.tz--storage398998998--input921624073-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if_some.tz-"?"-None-""] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/if_some.tz on storage '"?"' and input None --level 1 --trace-stack storage "" emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input453441034-.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input453441034-.out index 09229e63babb..d18033846128 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/int.tz on storage None and input 1 --level 1 --trace-stack storage (Some 1) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input535454136-.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input535454136-.out index a7bfb20c944e..f5fe2eb8b83d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input535454136-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/int.tz on storage None and input 9999 --level 1 --trace-stack storage (Some 9999) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input680650890-.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input680650890-.out index 8e3acbc21687..54c0163dcb99 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -int.tz--storage921624073--input680650890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/int.tz on storage None and input 0 --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -keccak.tz--storage921624073--input1008262038-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -keccak.tz--storage921624073--input1008262038-.out index 70601d8d2eb2..664a3a183b74 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -keccak.tz--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/keccak.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack storage (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -left_right.tz--storage4177631--input202098045-.out similarity index 73% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -left_right.tz--storage4177631--input202098045-.out index edd8db4ef9be..3abbb60f6343 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -left_right.tz--storage4177631--input202098045-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[left_right.tz-(Left "X")-(Left True)-(Right True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/left_right.tz on storage '(Left "X")' and input '(Left True)' --level 1 --trace-stack storage (Right True) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -left_right.tz--storage4177631--input44576556-.out similarity index 72% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -left_right.tz--storage4177631--input44576556-.out index 96b5b1197baf..b75f6c126ad1 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -left_right.tz--storage4177631--input44576556-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[left_right.tz-(Left "X")-(Right "a")-(Left "a")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/left_right.tz on storage '(Left "X")' and input '(Right "a")' --level 1 --trace-stack storage (Left "a") emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -level.tz--storage492856247--input125992234-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -level.tz--storage492856247--input125992234-.out index a5b7dfd31e1f..5d5202d3d286 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -level.tz--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/level.tz on storage 111 and input Unit --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat.tz--storage717096222--input457300675-.out similarity index 73% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat.tz--storage717096222--input457300675-.out index a1aa2e5212cd..629cf3a661df 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat.tz--storage717096222--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat.tz-"abc"-{}-"abc"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_concat.tz on storage '"abc"' and input '{}' --level 1 --trace-stack storage "abc" emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat.tz--storage717096222--input546523343-.out similarity index 74% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat.tz--storage717096222--input546523343-.out index 4435f98b9c0d..d2c2c8b73428 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat.tz--storage717096222--input546523343-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat.tz-"abc"-{ "d" ; "e" ; "f" }-"abcdef"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_concat.tz on storage '"abc"' and input '{ "d" ; "e" ; "f" }' --level 1 --trace-stack storage "abcdef" emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out index 95ccb72d1ab8..8a1118d4514d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_concat_bytes.tz on storage 0x and input '{ 0x00 ; 0x11 ; 0x00 }' --level 1 --trace-stack storage 0x001100 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out index 3086c0358fff..5f428b9d5023 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_concat_bytes.tz on storage 0x and input '{}' --level 1 --trace-stack storage 0x emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out index ba579f93fc9a..acb19e2e5eac 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_concat_bytes.tz on storage 0xabcd and input '{}' --level 1 --trace-stack storage 0xabcd emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out index f0601d42b1a6..fa7ef5cec6e3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_concat_bytes.tz on storage 0x00ab and input '{ 0xcd ; 0xef ; 0x00 }' --level 1 --trace-stack storage 0x00abcdef00 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input264787654-.out similarity index 65% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input264787654-.out index 5309f8be5bbe..4f7b8a23f3d9 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_id.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input457300675-.out similarity index 62% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input457300675-.out index 63a96e65e07e..7c8214ace558 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_id.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input656499821-.out similarity index 65% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input656499821-.out index 58ce0760815e..07e05afe28c0 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id.tz--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{ "1" ; "2" ; "3" }-{ "1" ; "2" ; "3" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_id.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack storage { "1" ; "2" ; "3" } emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input264787654-.out similarity index 75% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input264787654-.out index ee4b2b0380b1..0006ba33e76d 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_id_map.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input457300675-.out similarity index 65% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input457300675-.out index 46f14f498c93..31f5df7363f9 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_id_map.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input656499821-.out similarity index 75% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input656499821-.out index 0e4131735678..6cff47f88130 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_id_map.tz--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{ "1" ; "2" ; "3" }-{ "1" ; "2" ; "3" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_id_map.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack storage { "1" ; "2" ; "3" } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_iter.tz--storage680650890--input568817463-.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_iter.tz--storage680650890--input568817463-.out index a5cbda193a32..62db9df05870 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_iter.tz--storage680650890--input568817463-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_iter.tz on storage 0 and input '{ 10 ; 2 ; 1 }' --level 1 --trace-stack storage 20 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_iter.tz--storage680650890--input737923774-.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_iter.tz--storage680650890--input737923774-.out index cf423da068e0..a28953f75ba5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_iter.tz--storage680650890--input737923774-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_iter.tz on storage 0 and input '{ 3 ; 6 ; 9 }' --level 1 --trace-stack storage 162 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input457300675-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input457300675-.out index 6a4ab7dbd4a4..c2a3ef094474 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_map_block.tz on storage '{0}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input648737279-.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input648737279-.out index 4436ffae6f3d..cb28d91d2b1c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input648737279-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 2 ; 3 ; 0 }' --level 1 --trace-stack storage { 1 ; 3 ; 5 ; 3 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input908379154-.out similarity index 93% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input908379154-.out index fb4eae4ae3ad..45bc43f35e94 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_map_block.tz--storage907453363--input908379154-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 1 ; 1 ; 1 }' --level 1 --trace-stack storage { 1 ; 2 ; 3 ; 4 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input403499055-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input403499055-.out index 1224fb4375f2..2698e6aa6ef3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input457300675-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input457300675-.out index eba3aeea95d9..56e06f58170e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input469078912-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input469078912-.out index cd46d7410d97..d033be6c8d40 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input802622031-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input802622031-.out index 732683561901..335d49b89e34 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -list_size.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/list_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -loop_left.tz--storage528921618--input457300675-.out similarity index 86% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -loop_left.tz--storage528921618--input457300675-.out index 496d229d68e0..cbc3021ff63f 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -loop_left.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[loop_left.tz-{""}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/loop_left.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -loop_left.tz--storage528921618--input851203613-.out similarity index 96% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -loop_left.tz--storage528921618--input851203613-.out index effd9bd3da57..77faf5ae1f1c 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -loop_left.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[loop_left.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/loop_left.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input1027566226-.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input1027566226-.out index 9980075acdc2..f2060aaf243a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input1027566226-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 }' --level 1 --trace-stack storage { Elt 0 0 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input276660554-.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input276660554-.out index 788789db40db..cf12f5a001a2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input276660554-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 ; Elt 3 4 }' --level 1 --trace-stack storage { Elt 0 0 ; Elt 3 4 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input599923743-.out similarity index 64% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input599923743-.out index 5fcdf552f356..e2953eaf344d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_id.tz--storage457300675--input599923743-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 1 }' --level 1 --trace-stack storage { Elt 0 1 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_iter.tz--storage1011138251--input403579222-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_iter.tz--storage1011138251--input403579222-.out index 71caaed39776..8a9800f5ebb5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_iter.tz--storage1011138251--input403579222-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 1 1 ; Elt 2 100 }' --level 1 --trace-stack storage (Pair 3 101) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_iter.tz--storage1011138251--input532072758-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_iter.tz--storage1011138251--input532072758-.out index 9175d72a5b82..069cc5dced35 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_iter.tz--storage1011138251--input532072758-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 0 100 ; Elt 2 100 }' --level 1 --trace-stack storage (Pair 2 200) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage457300675--input798141440-.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage457300675--input798141440-.out index 4d9549e2c3de..2a9fb7600d55 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_map.tz on storage '{}' and input 10 --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage794999348--input152441147-.out similarity index 88% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage794999348--input152441147-.out index 9ff08875da2b..60a1fb2fce34 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage794999348--input152441147-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt "bar" 5 ; Elt "foo" 1 }-15-{ Elt "bar" 20 ; Elt "foo" 16 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_map.tz on storage '{ Elt "bar" 5 ; Elt "foo" 1 }' and input 15 --level 1 --trace-stack storage { Elt "bar" 20 ; Elt "foo" 16 } emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage88008216--input798141440-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage88008216--input798141440-.out index 84dfacac48bc..21c0d2908a50 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_map.tz--storage88008216--input798141440-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt "foo" 1 }-10-{ Elt "foo" 11 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_map.tz on storage '{ Elt "foo" 1 }' and input 10 --level 1 --trace-stack storage { Elt "foo" 11 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out index 473ced4a61d6..e86ac245f2df 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out index 785fb733d040..8ad293985617 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair { Elt 1 4 ; Elt 2 11 } (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out index 3ed563b0facf..c417e754a29c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair { Elt 1 4 ; Elt 2 11 } (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out index 5f298f06a272..c85150704516 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair { Elt 1 4 ; Elt 2 11 } (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out index 2eb822683761..752a166dd628 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 0 } (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 1 0 } (Some True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out similarity index 83% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out index dbff6f5b7031..9c6002fb90f3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 1 } (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 0 1 } (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out index 1c10b244b04e..1f7adb1cccc3 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"baz"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input700475845-.out similarity index 84% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input700475845-.out index e4b676914352..4bcd4c83cc87 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"bar"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input905318451-.out similarity index 84% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input905318451-.out index 24818c497352..c661b383b337 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"foo"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage495706788--input700475845-.out similarity index 82% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage495706788--input700475845-.out index 019a9ec8b02e..fb5d1a678a7b 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-"bar"-(Pair {} (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage915708427--input700475845-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage915708427--input700475845-.out index ef6ae982725b..768d257e7642 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "foo" 1 } None)-"bar"-(Pair { Elt "foo" 1 } (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair { Elt "foo" 1 } (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage936682951--input905318451-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage936682951--input905318451-.out index 39e1c771b3aa..d72cebeb1459 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_mem_string.tz--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "foo" 0 } None)-"foo"-(Pair { Elt "foo" 0 } (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair { Elt "foo" 0 } (Some True)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input15265129-.out similarity index 66% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input15265129-.out index 82811a27aa95..8d3694916e09 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input15265129-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 }-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input158311065-.out similarity index 66% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input158311065-.out index 5600cb5e6286..7c11e2bb2ec1 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input158311065-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }-3] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input456982702-.out similarity index 66% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input456982702-.out index 323592e35f4e..1c0519d387ef 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input456982702-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }-6] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input457300675-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input457300675-.out index ca69b15f4b43..6ed106418b15 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -map_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/map_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mul.tz--storage125992234--input125992234-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mul.tz--storage125992234--input125992234-.out index edfb27a49be8..e09cdfa3b24b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mul.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/mul.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out index eb0c97a3b06d..c8ac76c85109 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/mutez_to_bls12_381_fr.tz on storage 0x00 and input 257 --level 1 --trace-stack storage 0x0101000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out index 73d701525f04..10690fa32cb7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x1000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/mutez_to_bls12_381_fr.tz on storage 0x02 and input 16 --level 1 --trace-stack storage 0x1000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input1067298059-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input1067298059-.out index b0cb37c70070..62a338086bcd 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input1067298059-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/neg.tz on storage 0 and input '(Left -2)' --level 1 --trace-stack storage 2 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input380029349-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input380029349-.out index b03edd453078..04d2e593da3d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input380029349-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/neg.tz on storage 0 and input '(Right 2)' --level 1 --trace-stack storage -2 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input563503226-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input563503226-.out index a50f21a597ea..38319cac26dd 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input563503226-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/neg.tz on storage 0 and input '(Left 2)' --level 1 --trace-stack storage -2 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input788662499-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input788662499-.out index 51008efebf0f..96a3e51fdede 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input788662499-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/neg.tz on storage 0 and input '(Right 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input972832189-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input972832189-.out index 5f3f04445467..52821ace113a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -neg.tz--storage680650890--input972832189-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/neg.tz on storage 0 and input '(Left 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -none.tz--storage11179311--input125992234-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -none.tz--storage11179311--input125992234-.out index 8491c4ed69a6..39b096b334fe 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -none.tz--storage11179311--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/none.tz on storage 'Some 10' and input Unit --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not.tz--storage921624073--input570553153-.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not.tz--storage921624073--input570553153-.out index d39d34860050..7fa51aac7a67 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not.tz--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not.tz on storage None and input False --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not.tz--storage921624073--input954397288-.out similarity index 71% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not.tz--storage921624073--input954397288-.out index 5f63450124d7..3c372f07a140 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not.tz--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not.tz on storage None and input True --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input1051197453-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input1051197453-.out index 9a04fb8e0822..9fc8e7eac87e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input1051197453-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not_binary.tz on storage None and input '(Right 8)' --level 1 --trace-stack storage (Some -9) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input123939249-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input123939249-.out index 9575f9c0751a..f1a694626c91 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input123939249-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not_binary.tz on storage None and input '(Left 7)' --level 1 --trace-stack storage (Some -8) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input24243730-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input24243730-.out index bb53ce277e33..67d24b3384b5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input24243730-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not_binary.tz on storage None and input '(Left -8)' --level 1 --trace-stack storage (Some 7) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input518945720-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input518945720-.out index 42d79ab6ff9c..d6155480e102 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input518945720-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not_binary.tz on storage None and input '(Left 8)' --level 1 --trace-stack storage (Some -9) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input788662499-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input788662499-.out index 035a2db7be74..22a86e18dbeb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input788662499-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not_binary.tz on storage None and input '(Right 0)' --level 1 --trace-stack storage (Some -1) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input906118781-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input906118781-.out index b0f0bb1c0c8f..86fff601f1f7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input906118781-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not_binary.tz on storage None and input '(Right 7)' --level 1 --trace-stack storage (Some -8) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input921874253-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input921874253-.out index a439b7eb3792..f4100bee95d4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input921874253-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not_binary.tz on storage None and input '(Left -9)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input972832189-.out similarity index 74% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input972832189-.out index af145e4a02f8..8a243375e030 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -not_binary.tz--storage921624073--input972832189-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/not_binary.tz on storage None and input '(Left 0)' --level 1 --trace-stack storage (Some -1) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input106930123-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input106930123-.out index 2d769c3d947b..fa0c70273fd3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input181204719-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input181204719-.out index f8cce45ddb0a..61094b560da4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input223774825-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input223774825-.out index e08b4f685ad8..f23eef4bc0d7 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input908807505-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input908807505-.out index 86fc6e6a44c6..8ba34f8dd221 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input1056991424-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input1056991424-.out index 83ea35c3be06..272ef1686b2e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input1056991424-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or_binary.tz on storage None and input '(Pair 0 8)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input375993021-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input375993021-.out index 169982ce20b6..1608b363bf89 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input375993021-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or_binary.tz on storage None and input '(Pair 14 1)' --level 1 --trace-stack storage (Some 15) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input673240563-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input673240563-.out index 6b7d2dd398c9..a5524dca609c 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input673240563-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or_binary.tz on storage None and input '(Pair 8 0)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input747448890-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input747448890-.out index dab7eae01f77..f2d4d3dfe665 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input747448890-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or_binary.tz on storage None and input '(Pair 7 7)' --level 1 --trace-stack storage (Some 7) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input832403787-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input832403787-.out index 1ab1d38c4b4c..32d7b425520d 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input832403787-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or_binary.tz on storage None and input '(Pair 15 4)' --level 1 --trace-stack storage (Some 15) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input858098961-.out similarity index 73% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input858098961-.out index 1d57422552cc..8d0fbc5a6eed 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -or_binary.tz--storage921624073--input858098961-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/or_binary.tz on storage None and input '(Pair 4 8)' --level 1 --trace-stack storage (Some 12) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out similarity index 98% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out index f2abcfa33842..6b48360d616a 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))-Unit1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out similarity index 98% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out index 3f6daac045c2..10ff67442d0e 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))-Unit0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out similarity index 98% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out index 744efc29856e..86fef8674f72 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out similarity index 98% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out index 15c0e68f1625..0dcf5af6ded9 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input106930123-.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input106930123-.out index c156e0e6719e..f5809e4d15f4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/pair_id.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some (Pair False True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input181204719-.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input181204719-.out index 0789054b251b..8ee590a9e4bf 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/pair_id.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some (Pair True False)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input223774825-.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input223774825-.out index e6215cf54768..7712e8aeba06 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/pair_id.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some (Pair False False)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input908807505-.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input908807505-.out index ba9ee5f8abdb..3d54b315d6ba 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pair_id.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/pair_id.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some (Pair True True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pexec.tz--storage256947135--input1050356042-.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pexec.tz--storage256947135--input1050356042-.out index cfca7c83fc00..dc97f3f99c39 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pexec.tz--storage256947135--input1050356042-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/pexec.tz on storage 14 and input 38 --level 1 --trace-stack storage 52 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pexec_2.tz--storage197120858--input179371027-.out similarity index 97% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pexec_2.tz--storage197120858--input179371027-.out index 79160116e642..ed0877e9410b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -pexec_2.tz--storage197120858--input179371027-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/pexec_2.tz on storage '{ 0 ; 1 ; 2 ; 3}' and input 4 --level 1 --trace-stack storage { 0 ; 7 ; 14 ; 21 } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ret_int.tz--storage921624073--input125992234-.out similarity index 70% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ret_int.tz--storage921624073--input125992234-.out index 01e5d356bedc..6b190f2b9fb1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -ret_int.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/ret_int.tz on storage None and input Unit --level 1 --trace-stack storage (Some 300) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse.tz--storage528921618--input457300675-.out similarity index 72% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse.tz--storage528921618--input457300675-.out index 6b72ce862a90..18435c8cf737 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse.tz-{""}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/reverse.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse.tz--storage528921618--input851203613-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse.tz--storage528921618--input851203613-.out index 09f889c29375..905ed6728ebe 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/reverse.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse_loop.tz--storage528921618--input457300675-.out similarity index 83% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse_loop.tz--storage528921618--input457300675-.out index 669c7913c0ac..4f81e83805f6 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse_loop.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{""}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/reverse_loop.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse_loop.tz--storage528921618--input851203613-.out similarity index 93% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse_loop.tz--storage528921618--input851203613-.out index 8c9cea700e59..807f87fcaf4d 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -reverse_loop.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/reverse_loop.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out similarity index 65% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out index b2edc6a4264e..28affe77b85f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/sapling_empty_state.tz on storage '{}' and input Unit --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_address.tz--storage125992234--input125992234-.out similarity index 86% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_address.tz--storage125992234--input125992234-.out index b8eb92a769ad..a505f8de65e2 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_address.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/self_address.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_with_default_entrypoint.tz--storage125992234--input125992234.out similarity index 87% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_with_default_entrypoint.tz--storage125992234--input125992234.out index 52b527a45751..790a351b3de8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_with_default_entrypoint.tz--storage125992234--input125992234.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/self_with_default_entrypoint.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out similarity index 94% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out index 40757dcec13a..45df91bcab2f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/self_with_entrypoint.tz on storage Unit and input 'Left (Left 0)' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input620760059-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input620760059-.out index 5bb09e020ad7..4c1c1be5561a 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input620760059-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-"world"-(Pair "world" 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"world"' --level 1 --trace-stack storage (Pair "world" 0) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input717096222-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input717096222-.out index 7d2574f1b318..dbadaaabb289 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input717096222-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-"abc"-(Pair "abc" 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"abc"' --level 1 --trace-stack storage (Pair "abc" 0) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input79230375-.out similarity index 85% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input79230375-.out index 2e926324e04e..5ffe2f5b2bfa 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_car.tz--storage224747103--input79230375-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-""-(Pair "" 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '""' --level 1 --trace-stack storage (Pair "" 0) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage205576101--input654274102-.out similarity index 84% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage205576101--input654274102-.out index ee69feb772c8..746a2f46674d 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage205576101--input654274102-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 500)-3-(Pair "hello" 3)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_cdr.tz on storage '(Pair "hello" 500)' and input 3 --level 1 --trace-stack storage (Pair "hello" 3) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage224747103--input453441034-.out similarity index 84% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage224747103--input453441034-.out index f8e088d954c6..45114891206d 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage224747103--input453441034-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 0)-1-(Pair "hello" 1)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_cdr.tz on storage '(Pair "hello" 0)' and input 1 --level 1 --trace-stack storage (Pair "hello" 1) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage611418174--input967284912-.out similarity index 84% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage611418174--input967284912-.out index b560e32b2bd9..91673e612d18 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_cdr.tz--storage611418174--input967284912-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 7)-100-(Pair "hello" 100)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_cdr.tz on storage '(Pair "hello" 7)' and input 100 --level 1 --trace-stack storage (Pair "hello" 100) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input264787654-.out similarity index 65% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input264787654-.out index 697b4e2f2f12..16c6e931fb8d 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input264787654-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_id.tz on storage '{}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input457300675-.out similarity index 62% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input457300675-.out index bd7d1523bef9..61241a723dbb 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_id.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input989507347-.out similarity index 65% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input989507347-.out index d138b7659206..60ac3d880ca6 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_id.tz--storage457300675--input989507347-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ "asdf" ; "bcde" }-{ "asdf" ; "bcde" }] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_id.tz on storage '{}' and input '{ "asdf" ; "bcde" }' --level 1 --trace-stack storage { "asdf" ; "bcde" } emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input457300675-.out similarity index 72% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input457300675-.out index 704ea8d8e8fd..28f18460dbe6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_iter.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input701684511-.out similarity index 84% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input701684511-.out index 56b16dfccf20..6f90c69df2d9 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input701684511-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_iter.tz on storage 111 and input '{ -100 ; 1 ; 2 ; 3 }' --level 1 --trace-stack storage -94 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input802622031-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input802622031-.out index 60b3d0f3d625..5b566c520d29 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_iter.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_iter.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage495706788--input33757838-.out similarity index 88% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage495706788--input33757838-.out index e4c5ea34d1e4..eff88cd00166 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage495706788--input33757838-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-"Hi"-(Pair {} (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_member.tz on storage '(Pair {} None)' and input '"Hi"' --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage550087893--input79230375-.out similarity index 90% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage550087893--input79230375-.out index 3038613c35cf..2a3ef041d769 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage550087893--input79230375-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { "Hello" ; "World" } None)-""-(Pair { "Hello" ; "World" } (Some False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_member.tz on storage '(Pair { "Hello" ; "World" } None)' and input '""' --level 1 --trace-stack storage (Pair { "Hello" ; "World" } (Some False)) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage605111220--input33757838-.out similarity index 89% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage605111220--input33757838-.out index 5325e93a02f5..f0f2be0b90c6 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_member.tz--storage605111220--input33757838-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { "Hi" } None)-"Hi"-(Pair { "Hi" } (Some True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_member.tz on storage '(Pair { "Hi" } None)' and input '"Hi"' --level 1 --trace-stack storage (Pair { "Hi" } (Some True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input403499055-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input403499055-.out index aa938e620efb..832515edf9b1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input457300675-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input457300675-.out index 7935459b311e..5882f2099eb1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input469078912-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input469078912-.out index ce0a37cfe38d..461046c0ec98 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input802622031-.out similarity index 66% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input802622031-.out index b021e0ffbfc9..98aeb9fb4eb3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -set_size.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/set_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sha3.tz--storage921624073--input1008262038-.out similarity index 78% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sha3.tz--storage921624073--input1008262038-.out index 089948f15e68..43532adbe39e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sha3.tz--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/sha3.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack storage (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input115382786-.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input115382786-.out index c41514eedc02..19d890b34704 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input115382786-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Left (Pair 15 2))' --level 1 --trace-stack storage (Some 60) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input271566295-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input271566295-.out index 77c91cd7efc1..6175db2556fc 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input271566295-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Right (Pair 0 1))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input340971987-.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input340971987-.out index 7398b1cff9f8..7e20c8c39cc4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input340971987-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Left (Pair 0 0))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input374168553-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input374168553-.out index cf6cb1e924fe..3022aba9a893 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input374168553-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Right (Pair 15 2))' --level 1 --trace-stack storage (Some 3) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input413621582-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input413621582-.out index 7a3d1ca06f5c..a902ab8ca630 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input413621582-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Right (Pair 1 2))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input424849461-.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input424849461-.out index c5d4c5b2f1d4..1df36cdf4279 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input424849461-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Left (Pair 1 2))' --level 1 --trace-stack storage (Some 4) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input485030042-.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input485030042-.out index e976400585aa..af0dcc2ee48b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input485030042-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Left (Pair 8 1))' --level 1 --trace-stack storage (Some 16) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input705767726-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input705767726-.out index 1e8c6a477c52..016303fbc045 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input705767726-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Right (Pair 8 1))' --level 1 --trace-stack storage (Some 4) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input769385932-.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input769385932-.out index c303adca976b..55151c437022 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input769385932-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Left (Pair 0 1))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input913715337-.out similarity index 76% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input913715337-.out index d967e6047885..40ff03f4b611 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -shifts.tz--storage921624073--input913715337-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/shifts.tz on storage None and input '(Right (Pair 0 0))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage351480851--input65907686-.out similarity index 99% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage351480851--input65907686-.out index 9ea8b3103bc8..970e2e3f4c0a 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage351480851--input65907686-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"-Pair 1 10000-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice.tz on storage 'Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"' and input 'Pair 1 10000' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input198821575-.out similarity index 80% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input198821575-.out index 32158ecfe85c..ad18d3261760 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input198821575-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 1 1-(Some "o")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 1' --level 1 --trace-stack storage (Some "o") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input359592843-.out similarity index 79% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input359592843-.out index ed2a5e3f17a8..49f5b1e2f2e8 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input359592843-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 10 5-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 10 5' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input551316239-.out similarity index 80% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input551316239-.out index bb1e4d9b31a1..53d7898d2b64 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input551316239-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 0-(Some "")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 0' --level 1 --trace-stack storage (Some "") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input722749044-.out similarity index 79% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input722749044-.out index 2a0abcead46a..f1697730a684 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input722749044-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 10-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 10' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input839234860-.out similarity index 79% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input839234860-.out index f54b9ae4ec27..adfee4ca069a 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input839234860-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 1 3-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 3' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input919180079-.out similarity index 80% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input919180079-.out index 915be48e6e40..7af98af2e294 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage364922380--input919180079-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 2-(Some "Fo")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 2' --level 1 --trace-stack storage (Some "Fo") emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage921624073--input551316239-.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage921624073--input551316239-.out index f2747326622a..62e344b30913 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice.tz--storage921624073--input551316239-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice.tz on storage None and input 'Pair 0 0' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input198821575-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input198821575-.out index 84b6f3e66b05..63d797d9f17e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input198821575-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 1' --level 1 --trace-stack storage (Some 0xbb) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input462551352-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input462551352-.out index 1d726aeccde5..c59fa14e4690 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input462551352-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 1' --level 1 --trace-stack storage (Some 0xaa) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input489157380-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input489157380-.out index 24877af2d485..7e0fc94cd3ea 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input489157380-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 2' --level 1 --trace-stack storage (Some 0xbbcc) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input551316239-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input551316239-.out index 5d37634597a2..975de2de2cc6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input551316239-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 0' --level 1 --trace-stack storage (Some 0x) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input669330759-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input669330759-.out index 25963f6a6015..ccc6cc2eb320 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input669330759-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 2' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input743596105-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input743596105-.out index 6c9930d0365b..cb675f846e4e 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input743596105-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 1' --level 1 --trace-stack storage (Some 0xcc) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input839234860-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input839234860-.out index 6a300d378e21..1cd348f68fb1 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage229749865--input839234860-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 3' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage504917929--input65907686-.out similarity index 85% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage504917929--input65907686-.out index aa8dd819adea..17530bac835b 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage504917929--input65907686-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc-Pair 1 10000-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage 'Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc' and input 'Pair 1 10000' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage921624073--input462551352-.out similarity index 77% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage921624073--input462551352-.out index d8a68be48118..45bca3754d13 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -slice_bytes.tz--storage921624073--input462551352-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/slice_bytes.tz on storage None and input 'Pair 0 1' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -str_id.tz--storage921624073--input1016369050-.out similarity index 68% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -str_id.tz--storage921624073--input1016369050-.out index 5f8ace701ea3..51bf3d557bff 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -str_id.tz--storage921624073--input1016369050-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[str_id.tz-None-"abcd"-(Some "abcd")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/str_id.tz on storage None and input '"abcd"' --level 1 --trace-stack storage (Some "abcd") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -str_id.tz--storage921624073--input93477117-.out similarity index 68% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -str_id.tz--storage921624073--input93477117-.out index 0479541a5aa6..1b452a459371 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -str_id.tz--storage921624073--input93477117-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[str_id.tz-None-"Hello"-(Some "Hello")] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/str_id.tz on storage None and input '"Hello"' --level 1 --trace-stack storage (Some "Hello") emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out similarity index 82% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out index 873de2f216a5..687b52ec8087 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-"1970-01-01T00:00:00Z"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 100)' --level 1 --trace-stack storage "1970-01-01T00:00:00Z" emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out similarity index 82% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out index c33de0b0d75e..b6a6cd7ef99f 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-"1970-01-01T00:03:20Z"] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 -100)' --level 1 --trace-stack storage "1970-01-01T00:03:20Z" emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out index 69405e35bcf0..0fc59f1df644 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 2000000000000000000)--1999999999999999900] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 2000000000000000000)' --level 1 --trace-stack storage -1999999999999999900 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out similarity index 90% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out index b3534d952a75..9ebebd6a59c3 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair 3320000 1300000))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/tez_add_sub.tz on storage None and input '(Pair 2310000 1010000)' --level 1 --trace-stack storage (Some (Pair 3320000 1300000)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out similarity index 90% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out index ab6942f3bb42..f10fcce4e4ff 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair 3000000 1000000))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/tez_add_sub.tz on storage None and input '(Pair 2000000 1000000)' --level 1 --trace-stack storage (Some (Pair 3000000 1000000)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -uncomb.tz--storage680650890--input394061083-.out similarity index 82% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -uncomb.tz--storage680650890--input394061083-.out index f926b2506315..9e0194258ff8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -uncomb.tz--storage680650890--input394061083-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/uncomb.tz on storage 0 and input '(Pair 1 4 2)' --level 1 --trace-stack storage 142 emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -unpair.tz--storage125992234--input125992234-.out similarity index 98% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -unpair.tz--storage125992234--input125992234-.out index 3899f5461409..7c371ed86b48 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -unpair.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/unpair.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -voting_power.tz--storage1011138251--input1040351577-.out similarity index 79% rename from "tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -voting_power.tz--storage1011138251--input1040351577-.out index 026300db9f2b..9584b46df581 100644 --- "a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -voting_power.tz--storage1011138251--input1040351577-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"-(Pair 4000000000000 20000000000000)] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/voting_power.tz on storage '(Pair 0 0)' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack storage (Pair 4000000000000 20000000000000) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input1058477720-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input1058477720-.out index 3b6d43eaf57b..4f683080027a 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input1058477720-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Left (Pair False False)' --level 1 --trace-stack storage (Some (Left False)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input1073176155-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input1073176155-.out index f887d7acaaa2..db27bc455946 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input1073176155-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Right (Pair 0 0)' --level 1 --trace-stack storage (Some (Right 0)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input246594902-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input246594902-.out index f27f999b9ebb..21d6582fc4b6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input246594902-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Left (Pair True False)' --level 1 --trace-stack storage (Some (Left True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input506603577-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input506603577-.out index 5dbdd5f1db5d..6a571910db82 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input506603577-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Right (Pair 1 1)' --level 1 --trace-stack storage (Some (Right 0)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input576248088-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input576248088-.out index 3d7bf977db88..8cb14849e4d6 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input576248088-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Right (Pair 0 1)' --level 1 --trace-stack storage (Some (Right 1)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input612012282-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input612012282-.out index 7d04bec41fac..bf91d54c1afc 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input612012282-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Right (Pair 42 21)' --level 1 --trace-stack storage (Some (Right 63)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input617591686-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input617591686-.out index 6a0d6a2d672e..ed3e5f8ba3f5 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input617591686-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Left (Pair False True)' --level 1 --trace-stack storage (Some (Left True)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input639311176-.out similarity index 80% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input639311176-.out index b10adfc61a63..0f16bfac72b8 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input639311176-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Left (Pair True True)' --level 1 --trace-stack storage (Some (Left False)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input688315180-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input688315180-.out index 58df9ffaea42..c3df861d230f 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input688315180-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Right (Pair 42 63)' --level 1 --trace-stack storage (Some (Right 21)) emitted operations diff --git a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input967929605-.out similarity index 79% rename from tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out rename to tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input967929605-.out index 27af081159df..dee7b96fc0b4 100644 --- a/tests_python/tests_015/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Lima- opcodes -xor.tz--storage921624073--input967929605-.out @@ -1,5 +1,5 @@ -tests_015/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))] +./octez-client --protocol PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_015/opcodes/xor.tz on storage None and input 'Right (Pair 1 0)' --level 1 --trace-stack storage (Some (Right 1)) emitted operations -- GitLab From a0fcedc6ab918972cae15851fb50238a87e4471d Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Thu, 13 Oct 2022 14:53:10 +0200 Subject: [PATCH 17/17] Tezt/contract_opcodes: replace pytest with tezt traces for Alpha --- ...prcVkpaWU\")-Unit-(Some \".8420090f97.out" | 23 ------------------- ...770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" | 23 ------------------- ...None-Unit-(Some \"NetXdQprcVkpaWU\")].out" | 23 ------------------- ....tz--storage125992234--input254251340-.out | 2 +- ....tz--storage125992234--input420401245-.out | 2 +- ....tz--storage125992234--input680650890-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage921624073--input322109491-.out | 2 +- ....tz--storage921624073--input461261325-.out | 2 +- ....tz--storage921624073--input530006774-.out | 2 +- ....tz--storage921624073--input712570300-.out | 2 +- ....tz--storage921624073--input249636002-.out | 2 +- ....tz--storage921624073--input267363182-.out | 2 +- ....tz--storage921624073--input438561129-.out | 2 +- ....tz--storage921624073--input249636002-.out | 2 +- ....tz--storage921624073--input307538219-.out | 2 +- ....tz--storage921624073--input373737581-.out | 2 +- ....tz--storage921624073--input117475800-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage570553153--input106930123-.out | 2 +- ....tz--storage570553153--input181204719-.out | 2 +- ....tz--storage570553153--input223774825-.out | 2 +- ....tz--storage570553153--input908807505-.out | 2 +- ....tz--storage492856247--input125992234-.out | 2 +- ....tz--storage495706788--input453441034-.out | 2 +- ...t.tz--storage56274299--input453441034-.out | 2 +- ...t.tz--storage56274299--input564400327-.out | 2 +- ...t.tz--storage56274299--input654274102-.out | 2 +- ....tz--storage690637660--input453441034-.out | 2 +- ....tz--storage806237530--input453441034-.out | 2 +- ...tz--storage109689253--input1071610051-.out | 2 +- ....tz--storage109689253--input700475845-.out | 2 +- ....tz--storage109689253--input905318451-.out | 2 +- ....tz--storage495706788--input700475845-.out | 2 +- ....tz--storage915708427--input700475845-.out | 2 +- ....tz--storage936682951--input905318451-.out | 2 +- ...t_padded.tz--storage921624073--input12.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ...tz--storage680650890--input1043734173-.out | 2 +- ....tz--storage680650890--input151303925-.out | 2 +- ....tz--storage680650890--input520610122-.out | 2 +- ....tz--storage680650890--input558805129-.out | 2 +- ....tz--storage680650890--input229402968-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input585234482-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage994282947--input701858804-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input585234482-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage994282947--input701858804-.out | 2 +- ...tz--storage287336412--input1019409032-.out | 2 +- ....tz--storage698210250--input949526473-.out | 2 +- ....tz--storage739946440--input166435292-.out | 2 +- ....tz--storage739946440--input583291483-.out | 2 +- ...tz--storage994282947--input1055524890-.out | 2 +- ....tz--storage994282947--input453441034-.out | 2 +- ....tz--storage994282947--input564400327-.out | 2 +- ....tz--storage994282947--input680650890-.out | 2 +- ....tz--storage680650890--input783124233-.out | 2 +- ....tz--storage680650890--input783124233-.out | 2 +- ....tz--storage109160754--input125992234-.out | 23 +++++++++++++++++++ ....tz--storage921624073--input125992234-.out | 23 +++++++++++++++++++ ....tz--storage981066851--input125992234-.out | 23 +++++++++++++++++++ ....tz--storage125992234--input186507116-.out | 2 +- ....tz--storage921624073--input186507116-.out | 2 +- ....tz--storage186507116--input125992234-.out | 2 +- ....tz--storage950292965--input125992234-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage457300675--input281780712-.out | 2 +- ....tz--storage457300675--input392583650-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ....tz--storage457300675--input640104625-.out | 2 +- ....tz--storage457300675--input354091714-.out | 2 +- ....tz--storage457300675--input441061063-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ...t.tz--storage79230375--input264787654-.out | 2 +- ...t.tz--storage79230375--input316676251-.out | 2 +- ...t.tz--storage79230375--input457300675-.out | 2 +- ....tz--storage457300675--input798141440-.out | 2 +- ....tz--storage581876226--input166122047-.out | 2 +- ....tz--storage793461282--input781487591-.out | 2 +- ....tz--storage921624073--input315650912-.out | 2 +- ...l.tz--storage921624073--input51111414-.out | 2 +- ....tz--storage921624073--input545734274-.out | 2 +- ....tz--storage921624073--input772794967-.out | 2 +- ....tz--storage921624073--input917967660-.out | 2 +- ....tz--storage921624073--input964818218-.out | 2 +- ....tz--storage125992234--input117475800-.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ...tz--storage492856247--input1011138251-.out | 2 +- ...tz--storage492856247--input1018564342-.out | 2 +- ...tz--storage492856247--input1031049988-.out | 2 +- ....tz--storage492856247--input685590443-.out | 2 +- ....tz--storage125992234--input246866101-.out | 2 +- ...q.tz--storage125992234--input26856104-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ...tz--storage1011138251--input590117173-.out | 2 +- ...tz--storage1011138251--input850887554-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage680650890--input529388602-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage994417987--input247451205-.out | 2 +- ....tz--storage994417987--input250545589-.out | 2 +- ...v.tz--storage994417987--input79625541-.out | 2 +- ....tz--storage977883604--input147133089-.out | 2 +- ....tz--storage977883604--input215785357-.out | 2 +- ....tz--storage977883604--input389351431-.out | 2 +- ...z.tz--storage977883604--input44513000-.out | 2 +- ....tz--storage977883604--input635398196-.out | 2 +- ....tz--storage977883604--input734264738-.out | 2 +- ....tz--storage977883604--input993071382-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage457300675--input125992234-.out | 2 +- ....tz--storage398998998--input246262487-.out | 2 +- ...t.tz--storage398998998--input79230375-.out | 2 +- ....tz--storage492856247--input478406404-.out | 2 +- ....tz--storage492856247--input962874972-.out | 2 +- ...tz--storage1026405794--input329240220-.out | 2 +- ....tz--storage382368661--input329240220-.out | 2 +- ....tz--storage496578814--input329240220-.out | 2 +- ....tz--storage496578814--input507231566-.out | 2 +- ....tz--storage547821324--input329240220-.out | 2 +- ....tz--storage796012494--input156280093-.out | 2 +- ....tz--storage796012494--input228164856-.out | 2 +- ....tz--storage139236239--input329240220-.out | 2 +- ...e.tz--storage139236239--input79230375-.out | 2 +- ....tz--storage329396864--input156280093-.out | 2 +- ...tz--storage921624073--input1040351577-.out | 2 +- ....tz--storage921624073--input153350004-.out | 2 +- ...ng.tz--storage151303925--input3431716-.out | 2 +- ....tz--storage151303925--input535018041-.out | 2 +- ....tz--storage921624073--input570553153-.out | 2 +- ....tz--storage921624073--input954397288-.out | 2 +- ....tz--storage398998998--input288201633-.out | 2 +- ....tz--storage398998998--input921624073-.out | 2 +- ....tz--storage921624073--input453441034-.out | 2 +- ....tz--storage921624073--input535454136-.out | 2 +- ....tz--storage921624073--input680650890-.out | 2 +- ...tz--storage921624073--input1008262038-.out | 2 +- ...ht.tz--storage4177631--input202098045-.out | 2 +- ...ght.tz--storage4177631--input44576556-.out | 2 +- ....tz--storage492856247--input125992234-.out | 2 +- ....tz--storage717096222--input457300675-.out | 2 +- ....tz--storage717096222--input546523343-.out | 2 +- ....tz--storage149262694--input220724351-.out | 2 +- ....tz--storage149262694--input457300675-.out | 2 +- ...s.tz--storage65410082--input457300675-.out | 2 +- ....tz--storage726220441--input972761363-.out | 2 +- ....tz--storage528921618--input264787654-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input656499821-.out | 2 +- ....tz--storage528921618--input264787654-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input656499821-.out | 2 +- ....tz--storage680650890--input568817463-.out | 2 +- ....tz--storage680650890--input737923774-.out | 2 +- ....tz--storage907453363--input457300675-.out | 2 +- ....tz--storage907453363--input648737279-.out | 2 +- ....tz--storage907453363--input908379154-.out | 2 +- ....tz--storage492856247--input403499055-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input469078912-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ...tz--storage457300675--input1027566226-.out | 2 +- ....tz--storage457300675--input276660554-.out | 2 +- ....tz--storage457300675--input599923743-.out | 2 +- ...tz--storage1011138251--input403579222-.out | 2 +- ...tz--storage1011138251--input532072758-.out | 2 +- ....tz--storage457300675--input798141440-.out | 2 +- ....tz--storage794999348--input152441147-.out | 2 +- ...p.tz--storage88008216--input798141440-.out | 2 +- ....tz--storage495706788--input453441034-.out | 2 +- ...t.tz--storage56274299--input453441034-.out | 2 +- ...t.tz--storage56274299--input564400327-.out | 2 +- ...t.tz--storage56274299--input654274102-.out | 2 +- ....tz--storage690637660--input453441034-.out | 2 +- ....tz--storage806237530--input453441034-.out | 2 +- ...tz--storage109689253--input1071610051-.out | 2 +- ....tz--storage109689253--input700475845-.out | 2 +- ....tz--storage109689253--input905318451-.out | 2 +- ....tz--storage495706788--input700475845-.out | 2 +- ....tz--storage915708427--input700475845-.out | 2 +- ....tz--storage936682951--input905318451-.out | 2 +- ...e.tz--storage492856247--input15265129-.out | 2 +- ....tz--storage492856247--input158311065-.out | 2 +- ....tz--storage492856247--input456982702-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ....tz--storage151303925--input216277421-.out | 2 +- ....tz--storage287799761--input485842614-.out | 2 +- ...tz--storage680650890--input1067298059-.out | 2 +- ....tz--storage680650890--input380029349-.out | 2 +- ....tz--storage680650890--input563503226-.out | 2 +- ....tz--storage680650890--input788662499-.out | 2 +- ....tz--storage680650890--input972832189-.out | 2 +- ...e.tz--storage11179311--input125992234-.out | 2 +- ....tz--storage921624073--input570553153-.out | 2 +- ....tz--storage921624073--input954397288-.out | 2 +- ...tz--storage921624073--input1051197453-.out | 2 +- ....tz--storage921624073--input123939249-.out | 2 +- ...y.tz--storage921624073--input24243730-.out | 2 +- ....tz--storage921624073--input518945720-.out | 2 +- ....tz--storage921624073--input788662499-.out | 2 +- ....tz--storage921624073--input906118781-.out | 2 +- ....tz--storage921624073--input921874253-.out | 2 +- ....tz--storage921624073--input972832189-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ...tz--storage921624073--input1056991424-.out | 2 +- ....tz--storage921624073--input375993021-.out | 2 +- ....tz--storage921624073--input673240563-.out | 2 +- ....tz--storage921624073--input747448890-.out | 2 +- ....tz--storage921624073--input832403787-.out | 2 +- ....tz--storage921624073--input858098961-.out | 2 +- ....tz--storage125992234--input305844558-.out | 2 +- ....tz--storage125992234--input646365167-.out | 2 +- ...tz--storage125992234--input1028781121-.out | 2 +- ....tz--storage125992234--input802670583-.out | 2 +- ....tz--storage921624073--input106930123-.out | 2 +- ....tz--storage921624073--input181204719-.out | 2 +- ....tz--storage921624073--input223774825-.out | 2 +- ....tz--storage921624073--input908807505-.out | 2 +- ...tz--storage256947135--input1050356042-.out | 2 +- ....tz--storage197120858--input179371027-.out | 2 +- ....tz--storage921624073--input125992234-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ....tz--storage528921618--input457300675-.out | 2 +- ....tz--storage528921618--input851203613-.out | 2 +- ....tz--storage457300675--input125992234-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ...nt.tz--storage125992234--input12599223.out | 2 +- ....tz--storage125992234--input289072903-.out | 2 +- ....tz--storage224747103--input620760059-.out | 2 +- ....tz--storage224747103--input717096222-.out | 2 +- ...r.tz--storage224747103--input79230375-.out | 2 +- ....tz--storage205576101--input654274102-.out | 2 +- ....tz--storage224747103--input453441034-.out | 2 +- ....tz--storage611418174--input967284912-.out | 2 +- ....tz--storage457300675--input264787654-.out | 2 +- ....tz--storage457300675--input457300675-.out | 2 +- ....tz--storage457300675--input989507347-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input701684511-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ...r.tz--storage495706788--input33757838-.out | 2 +- ...r.tz--storage550087893--input79230375-.out | 2 +- ...r.tz--storage605111220--input33757838-.out | 2 +- ....tz--storage492856247--input403499055-.out | 2 +- ....tz--storage492856247--input457300675-.out | 2 +- ....tz--storage492856247--input469078912-.out | 2 +- ....tz--storage492856247--input802622031-.out | 2 +- ...tz--storage921624073--input1008262038-.out | 2 +- ....tz--storage921624073--input115382786-.out | 2 +- ....tz--storage921624073--input271566295-.out | 2 +- ....tz--storage921624073--input340971987-.out | 2 +- ....tz--storage921624073--input374168553-.out | 2 +- ....tz--storage921624073--input413621582-.out | 2 +- ....tz--storage921624073--input424849461-.out | 2 +- ....tz--storage921624073--input485030042-.out | 2 +- ....tz--storage921624073--input705767726-.out | 2 +- ....tz--storage921624073--input769385932-.out | 2 +- ....tz--storage921624073--input913715337-.out | 2 +- ...e.tz--storage351480851--input65907686-.out | 2 +- ....tz--storage364922380--input198821575-.out | 2 +- ....tz--storage364922380--input359592843-.out | 2 +- ....tz--storage364922380--input551316239-.out | 2 +- ....tz--storage364922380--input722749044-.out | 2 +- ....tz--storage364922380--input839234860-.out | 2 +- ....tz--storage364922380--input919180079-.out | 2 +- ....tz--storage921624073--input551316239-.out | 2 +- ....tz--storage229749865--input198821575-.out | 2 +- ....tz--storage229749865--input462551352-.out | 2 +- ....tz--storage229749865--input489157380-.out | 2 +- ....tz--storage229749865--input551316239-.out | 2 +- ....tz--storage229749865--input669330759-.out | 2 +- ....tz--storage229749865--input743596105-.out | 2 +- ....tz--storage229749865--input839234860-.out | 2 +- ...s.tz--storage504917929--input65907686-.out | 2 +- ....tz--storage921624073--input462551352-.out | 2 +- ...tz--storage921624073--input1016369050-.out | 2 +- ...d.tz--storage921624073--input93477117-.out | 2 +- ....tz--storage492856247--input249636002-.out | 2 +- ....tz--storage492856247--input307538219-.out | 2 +- ....tz--storage492856247--input831449542-.out | 2 +- ....tz--storage921624073--input706350605-.out | 2 +- ....tz--storage921624073--input856198194-.out | 2 +- ....tz--storage680650890--input394061083-.out | 2 +- ....tz--storage125992234--input125992234-.out | 2 +- ...z--storage1011138251--input1040351577-.out | 2 +- ...tz--storage921624073--input1058477720-.out | 2 +- ...tz--storage921624073--input1073176155-.out | 2 +- ....tz--storage921624073--input246594902-.out | 2 +- ....tz--storage921624073--input506603577-.out | 2 +- ....tz--storage921624073--input576248088-.out | 2 +- ....tz--storage921624073--input612012282-.out | 2 +- ....tz--storage921624073--input617591686-.out | 2 +- ....tz--storage921624073--input639311176-.out | 2 +- ....tz--storage921624073--input688315180-.out | 2 +- ....tz--storage921624073--input967929605-.out | 2 +- 330 files changed, 393 insertions(+), 393 deletions(-) delete mode 100644 "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" delete mode 100644 "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" delete mode 100644 "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input254251340-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input420401245-.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input680650890-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add.tz--storage125992234--input125992234-.out (95%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out (83%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out (79%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out (79%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -address.tz--storage921624073--input117475800-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input106930123-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input181204719-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input223774825-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input908807505-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_binary.tz--storage125992234--input125992234-.out (90%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input106930123-.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input181204719-.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input223774825-.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input908807505-.out (65%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -balance.tz--storage492856247--input125992234-.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out (81%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out (83%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out (83%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out (83%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out (79%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out (81%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--input12.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -car.tz--storage680650890--input783124233-.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cdr.tz--storage680650890--input783124233-.out (61%) create mode 100644 tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage109160754--input125992234-.out create mode 100644 tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage921624073--input125992234-.out create mode 100644 tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage981066851--input125992234-.out rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-get.tz--storage125992234--input186507116-.out (92%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set-2.tz--storage921624073--input186507116-.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set.tz--storage186507116--input125992234-.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb.tz--storage950292965--input125992234-.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -compare.tz--storage125992234--input125992234-.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comparisons.tz--storage457300675--input281780712-.out (96%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input392583650-.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input457300675-.out (60%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input640104625-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out (59%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input264787654-.out (89%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input316676251-.out (92%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input457300675-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage457300675--input798141440-.out (63%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage581876226--input166122047-.out (64%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage793461282--input781487591-.out (65%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input315650912-.out (94%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input51111414-.out (97%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input545734274-.out (94%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input772794967-.out (84%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input917967660-.out (98%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input964818218-.out (94%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contract.tz--storage125992234--input117475800-.out (74%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -create_contract.tz--storage921624073--input125992234-.out (89%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq.tz--storage125992234--input246866101-.out (99%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq.tz--storage125992234--input26856104-.out (99%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dign.tz--storage680650890--input529388602-.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dip.tz--storage1011138251--input590117173-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dip.tz--storage1011138251--input850887554-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dipn.tz--storage680650890--input529388602-.out (86%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dropn.tz--storage680650890--input529388602-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dugn.tz--storage680650890--input529388602-.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dup-n.tz--storage125992234--input125992234-.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input247451205-.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input250545589-.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input79625541-.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -emit.tz--storage125992234--input125992234-.out (93%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -empty_map.tz--storage457300675--input125992234-.out (75%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -exec_concat.tz--storage398998998--input246262487-.out (83%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -exec_concat.tz--storage398998998--input79230375-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first.tz--storage492856247--input478406404-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first.tz--storage492856247--input962874972-.out (72%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out (74%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out (75%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out (77%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out (73%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage139236239--input329240220-.out (82%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage139236239--input79230375-.out (81%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage329396864--input156280093-.out (83%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_key.tz--storage921624073--input1040351577-.out (71%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_key.tz--storage921624073--input153350004-.out (71%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_string.tz--storage151303925--input3431716-.out (74%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_string.tz--storage151303925--input535018041-.out (74%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if.tz--storage921624073--input570553153-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if.tz--storage921624073--input954397288-.out (71%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if_some.tz--storage398998998--input288201633-.out (65%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if_some.tz--storage398998998--input921624073-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input453441034-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input535454136-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input680650890-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -keccak.tz--storage921624073--input1008262038-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -left_right.tz--storage4177631--input202098045-.out (68%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -left_right.tz--storage4177631--input44576556-.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -level.tz--storage492856247--input125992234-.out (60%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat.tz--storage717096222--input457300675-.out (68%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat.tz--storage717096222--input546523343-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out (73%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input264787654-.out (61%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input457300675-.out (57%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input656499821-.out (61%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input264787654-.out (71%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input457300675-.out (60%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input656499821-.out (71%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_iter.tz--storage680650890--input568817463-.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_iter.tz--storage680650890--input737923774-.out (78%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input457300675-.out (73%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input648737279-.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input908379154-.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input403499055-.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input457300675-.out (60%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input469078912-.out (60%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input802622031-.out (60%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -loop_left.tz--storage528921618--input457300675-.out (83%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -loop_left.tz--storage528921618--input851203613-.out (95%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input1027566226-.out (59%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input276660554-.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input599923743-.out (59%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_iter.tz--storage1011138251--input403579222-.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_iter.tz--storage1011138251--input532072758-.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage457300675--input798141440-.out (72%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage794999348--input152441147-.out (86%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage88008216--input798141440-.out (81%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out (82%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input700475845-.out (82%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input905318451-.out (82%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage495706788--input700475845-.out (78%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage915708427--input700475845-.out (81%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage936682951--input905318451-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input15265129-.out (61%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input158311065-.out (61%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input456982702-.out (62%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input457300675-.out (60%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mul.tz--storage125992234--input125992234-.out (93%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out (83%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input1067298059-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input380029349-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input563503226-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input788662499-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input972832189-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -none.tz--storage11179311--input125992234-.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not.tz--storage921624073--input570553153-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not.tz--storage921624073--input954397288-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input1051197453-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input123939249-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input24243730-.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input518945720-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input788662499-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input906118781-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input921874253-.out (69%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input972832189-.out (70%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input106930123-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input181204719-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input223774825-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input908807505-.out (77%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input1056991424-.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input375993021-.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input673240563-.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input747448890-.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input832403787-.out (68%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input858098961-.out (68%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out (98%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out (98%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out (98%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out (98%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input106930123-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input181204719-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input223774825-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input908807505-.out (66%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pexec.tz--storage256947135--input1050356042-.out (82%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pexec_2.tz--storage197120858--input179371027-.out (97%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ret_int.tz--storage921624073--input125992234-.out (66%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse.tz--storage528921618--input457300675-.out (67%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse.tz--storage528921618--input851203613-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse_loop.tz--storage528921618--input457300675-.out (80%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse_loop.tz--storage528921618--input851203613-.out (92%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out (59%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_address.tz--storage125992234--input125992234-.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_default_entrypoint.tz--storage125992234--input12599223.out (84%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out (93%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input620760059-.out (82%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input717096222-.out (82%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input79230375-.out (82%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage205576101--input654274102-.out (81%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage224747103--input453441034-.out (81%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage611418174--input967284912-.out (81%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input264787654-.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input457300675-.out (57%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input989507347-.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input457300675-.out (67%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input701684511-.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input802622031-.out (72%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage495706788--input33757838-.out (86%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage550087893--input79230375-.out (88%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage605111220--input33757838-.out (87%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input403499055-.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input457300675-.out (60%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input469078912-.out (61%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input802622031-.out (60%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sha3.tz--storage921624073--input1008262038-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input115382786-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input271566295-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input340971987-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input374168553-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input413621582-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input424849461-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input485030042-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input705767726-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input769385932-.out (72%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input913715337-.out (72%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage351480851--input65907686-.out (99%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input198821575-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input359592843-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input551316239-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input722749044-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input839234860-.out (76%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input919180079-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage921624073--input551316239-.out (73%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input198821575-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input462551352-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input489157380-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input551316239-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input669330759-.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input743596105-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input839234860-.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage504917929--input65907686-.out (85%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage921624073--input462551352-.out (72%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -str_id.tz--storage921624073--input1016369050-.out (63%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -str_id.tz--storage921624073--input93477117-.out (64%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out (79%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out (80%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out (88%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out (88%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -uncomb.tz--storage680650890--input394061083-.out (79%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -unpair.tz--storage125992234--input125992234-.out (98%) rename "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -voting_power.tz--storage1011138251--input1040351577-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input1058477720-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input1073176155-.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input246594902-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input506603577-.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input576248088-.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input612012282-.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input617591686-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input639311176-.out (76%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input688315180-.out (75%) rename tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out => tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input967929605-.out (75%) diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" deleted file mode 100644 index 92f1ab7e29b3..000000000000 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" +++ /dev/null @@ -1,23 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some "NetXdQprcVkpaWU")-Unit-(Some "NetXdQprcVkpaWU")] - -storage - (Some "NetXdQprcVkpaWU") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 6.753) - [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.015) - [ "NetXdQprcVkpaWU" ] - - location: 10 (just consumed gas: 0.010) - [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some "NetXdQprcVkpaWU") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] - diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" deleted file mode 100644 index 2b800175f19e..000000000000 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ /dev/null @@ -1,23 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some "NetXdQprcVkpaWU")] - -storage - (Some "NetXdQprcVkpaWU") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.203) - [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.015) - [ "NetXdQprcVkpaWU" ] - - location: 10 (just consumed gas: 0.010) - [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some "NetXdQprcVkpaWU") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] - diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" deleted file mode 100644 index 1cf1feb7d2d5..000000000000 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ /dev/null @@ -1,23 +0,0 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some "NetXdQprcVkpaWU")] - -storage - (Some "NetXdQprcVkpaWU") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.015) - [ "NetXdQprcVkpaWU" ] - - location: 10 (just consumed gas: 0.010) - [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some "NetXdQprcVkpaWU") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some "NetXdQprcVkpaWU")) ] - diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input254251340-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input254251340-.out index ac2db4d4e4df..41d6dce45908 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input254251340-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/abs.tz on storage Unit and input 948 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input420401245-.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input420401245-.out index 62ee61f538fd..9d7e38906a2b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input420401245-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/abs.tz on storage Unit and input 12039123919239192312931 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input680650890-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input680650890-.out index 95238718affd..cdb68cc0882e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs.tz--storage125992234--input680650890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/abs.tz on storage Unit and input 0 --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add.tz--storage125992234--input125992234-.out similarity index 95% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add.tz--storage125992234--input125992234-.out index a21a88f70d68..99dfd3056c0b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out index 4675a4e119f8..95debd2fe98f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input322109491-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x01 0x00' --level 1 --trace-stack storage (Some 0x0100000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out index 9bd6a5ada09a..d62af6af8b42 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input461261325-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0x0200000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x010000' --level 1 --trace-stack storage (Some 0x0200000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out index 0afb2615edfa..8fc1ac5f30e4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input530006774-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x0100000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x00' --level 1 --trace-stack storage (Some 0x0100000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out index 8954a5b7287d..dea42c804575 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_bls12_381_fr.tz--storage921624073--input712570300-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x00 0x00' --level 1 --trace-stack storage (Some 0x0000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out similarity index 80% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out index 1af6f59929d8..116776b2ccc6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some "1970-01-01T00:03:20Z")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:03:20Z") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out similarity index 80% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out index 21c1fc5b214a..b6ed141fb8d6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input267363182-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_delta_timestamp.tz on storage None and input '(Pair -100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out similarity index 79% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out index 742a94ce6552..683f0540af4d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_delta_timestamp.tz--storage921624073--input438561129-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 "1970-01-01T00:00:00Z")-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 0 "1970-01-01T00:00:00Z")' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out similarity index 80% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out index 1ee2dabba484..283bf4688557 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some "1970-01-01T00:03:20Z")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack storage (Some "1970-01-01T00:03:20Z") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out similarity index 80% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out index 8b98f73afed8..64b7fae8994e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input307538219-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 -100)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out similarity index 79% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out index 41d3b0068a97..4be97dad5bb3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add_timestamp_delta.tz--storage921624073--input373737581-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair "1970-01-01T00:00:00Z" 0)-(Some "1970-01-01T00:00:00Z")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/add_timestamp_delta.tz on storage None and input '(Pair "1970-01-01T00:00:00Z" 0)' --level 1 --trace-stack storage (Some "1970-01-01T00:00:00Z") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -address.tz--storage921624073--input117475800-.out similarity index 72% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -address.tz--storage921624073--input117475800-.out index d78696c7a080..6f73a4332e95 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -address.tz--storage921624073--input117475800-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[address.tz-None-"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"-(Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/address.tz on storage None and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack storage (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input106930123-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input106930123-.out index 46db7c3ad300..73aa8e59fa1d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input181204719-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input181204719-.out index d70c055468e8..27b1f425181f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input223774825-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input223774825-.out index f405a01164b4..82ee2ec84047 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input908807505-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input908807505-.out index 7a48277dce3b..892b826f9ac9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_binary.tz--storage125992234--input125992234-.out similarity index 90% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_binary.tz--storage125992234--input125992234-.out index 032abe0ace5f..2093629ddd8f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_binary.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and_binary.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input106930123-.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input106930123-.out index 07c9978de81a..d533dfe398a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input106930123-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and_logical_1.tz on storage False and input '(Pair False True)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input181204719-.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input181204719-.out index 518c11a1f058..2fa44f5d7d8f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input181204719-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and_logical_1.tz on storage False and input '(Pair True False)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input223774825-.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input223774825-.out index bacede7152f6..233bc0b60f0a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input223774825-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and_logical_1.tz on storage False and input '(Pair False False)' --level 1 --trace-stack storage False emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input908807505-.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input908807505-.out index 792ba132f61f..07914917f399 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_logical_1.tz--storage570553153--input908807505-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/and_logical_1.tz on storage False and input '(Pair True True)' --level 1 --trace-stack storage True emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -balance.tz--storage492856247--input125992234-.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -balance.tz--storage492856247--input125992234-.out index 5ae671691235..6905b0114bb4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -balance.tz--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/balance.tz on storage 111 and input Unit --level 1 --trace-stack storage 4000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out index 57b486ee054c..3d07691fff9d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out index e370756fd05c..6774479c6938 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.8b81e182c3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair 4 (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out index a02e6f0afe27..90636c48d728 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.95dbecf95f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair 4 (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out index f3b1f3b51616..3fa3904fc206 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.c6e5f3ae35.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair 4 (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out index b11b6a5859b6..277ee1ee08be 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out index a5a1afb3d435..38df5c5e1f6c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.04e57ae079.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_nat.tz--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out similarity index 83% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out index 3b07868ba2af..bd1192d9411a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"baz"-(Pair 4 (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out similarity index 83% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out index c20f651b0db7..5bf3f4f7cf81 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"bar"-(Pair 4 (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out similarity index 83% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out index 997b2a2b55ef..2f3524154a63 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"foo"-(Pair 4 (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out similarity index 79% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out index 4c2cef2f5ece..d966d51098ae 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-"bar"-(Pair 4 (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out similarity index 81% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out index f20922674a0e..c4a5f53439fc 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "foo" 1 } None)-"bar"-(Pair 4 (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair 4 (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out similarity index 81% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out index 3023287a1522..580298378774 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -big_map_mem_string.tz--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt "foo" 0 } None)-"foo"-(Pair 4 (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair 4 (Some True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--input12.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--input12.out index 86879c7d6275..cf8e00884432 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_push_bytes_not_padded.tz--storage921624073--input12.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0x0000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_push_bytes_not_padded.tz on storage None and input Unit --level 1 --trace-stack storage (Some 0x0000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out index 0c65df761a63..ca06e808bb92 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_push_nat.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x1000000000000000000000000000000000000000000000000000000000000000)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_push_nat.tz on storage None and input Unit --level 1 --trace-stack storage (Some 0x1000000000000000000000000000000000000000000000000000000000000000) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out index 4e5e6d4b71f6..4612355252db 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input1043734173-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x01 --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out index 9e3ca24d98ef..468e42d87313 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input151303925-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x00 --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out index 2ab059933415..2bcf1c424a65 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input520610122-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719-11320265829256585830781521966149529460476767408210445238902869222031333517497] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 --level 1 --trace-stack storage 11320265829256585830781521966149529460476767408210445238902869222031333517497 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out index 9bcf9eb13bf8..d2ba474e7777 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_int.tz--storage680650890--input558805129-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27-17832688077013577776524784494464728518213913213412866604053735695200962927400] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 --level 1 --trace-stack storage 17832688077013577776524784494464728518213913213412866604053735695200962927400 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out index 9f72f388396d..05c1726d612d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_mutez.tz--storage680650890--input229402968-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_to_mutez.tz on storage 0 and input 0x10 --level 1 --trace-stack storage 16 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out index 9d54a1e1090b..493738391b70 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out index 31ae8bd3cf0f..4d233b1dd5eb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out index a19ba2ed05d1..9938f9dfe727 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out index bd3e1605ab1b..01025c639511 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out index 67990b777180..bf3e2dc344f6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out index 91803770756d..2e9f62ae90f5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out index fdd5fb3c1e35..df47858dbdb9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out index 2bd4fc384062..d3f32d0a03bb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--42-0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack storage 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out index a35a4fb56bf7..3b1323912c6d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out index 0ef52aa60e32..95d124735e3c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_int.tz--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--1-0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack storage 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out index 1a4f9b1e117a..ae845044abca 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out index 61203f95b8f2..64562f4f2e4e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out index 4621d967ca25..e92f499abe6d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out index 08a5c05fff49..0d107d0809a6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out index f573677f4d8b..dc7e41ee1a37 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out index 1cddfcc40673..183d333b9a24 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out index 5eeb4e1ec0e2..fa62f0bdd91f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out index 94a8b66bf09d..3d43fe381fe6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_z_nat.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out index 55dd8a46e57c..599170040675 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out index 1229afe72810..a1601e605205 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out index 86a9e398d8da..4bd3b23bd0e0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out index 2e9133e25eb1..6dadd88ab8eb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out index 1d5ffefc397f..ea854d427fa2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out index b0f816e32a01..5e0b7aa4ab6a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out index f69dafc0450e..d86e28fa70a0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out index 87d397137842..061d1677c29d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--42-0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack storage 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out index c0076a725b93..c13f54aeef73 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out index 8bd4a8a3783a..919d5608ebb7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_int.tz--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000--1-0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack storage 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out index c7f9ac7c8b0a..8b13ba0be7ef 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f-22620284817922784902564672469917992996328211127984472897491698543785655336309-0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack storage 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out index 6edb34c0007e..3c4a816de1cb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f-33644916630334844239120348434626468649534186770809802792596996408934105684394-0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack storage 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out index 2e52c1e0df54..660d319a74f0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-69615968247920749285624776342583898043608129789011377475114141186797415307882-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out index ad7781847508..c15803ef384d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d-17180093072794558806177035834397932205917577288483739652510482486858834123369-0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack storage 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out index c7233d23a650..b935bb24a8f0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-52435875175126190479447740508185965837690552500527637822603658699938581184514-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out index c0fc1b05d824..3ed1e23986d9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-1-0x0100000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack storage 0x0100000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out index babd726d2786..75bf69239b45 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000000000000000000000000000000000000-2-0x0200000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack storage 0x0200000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out index 387b38db6591..6679e2ede184 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_z_fr_nat.tz--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000000000000000000000000000000000000-0-0x0000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack storage 0x0000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -car.tz--storage680650890--input783124233-.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -car.tz--storage680650890--input783124233-.out index f658bd43481f..c6491fae8092 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -car.tz--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/car.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack storage 34 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cdr.tz--storage680650890--input783124233-.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cdr.tz--storage680650890--input783124233-.out index dea4dd9def49..0d8ed49ed1ee 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cdr.tz--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/cdr.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack storage 17 emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage109160754--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage109160754--input125992234-.out new file mode 100644 index 000000000000..45129ac3653d --- /dev/null +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage109160754--input125992234-.out @@ -0,0 +1,23 @@ + +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/chain_id_store.tz on storage '(Some 0x7a06a770)' and input Unit --level 1 --trace-stack +storage + (Some "NetXynUjJNZm7wi") +emitted operations + +big_map diff + +trace + - location: 8 (just consumed gas: 5.203) + [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] + - location: 8 (just consumed gas: 0.010) + [ ] + - location: 9 (just consumed gas: 0.015) + [ "NetXynUjJNZm7wi" ] + - location: 10 (just consumed gas: 0.010) + [ (Some "NetXynUjJNZm7wi") ] + - location: 11 (just consumed gas: 0.010) + [ {} + (Some "NetXynUjJNZm7wi") ] + - location: 13 (just consumed gas: 0.010) + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] + diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage921624073--input125992234-.out new file mode 100644 index 000000000000..eb40995098c4 --- /dev/null +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage921624073--input125992234-.out @@ -0,0 +1,23 @@ + +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/chain_id_store.tz on storage None and input Unit --level 1 --trace-stack +storage + (Some "NetXynUjJNZm7wi") +emitted operations + +big_map diff + +trace + - location: 8 (just consumed gas: 5.053) + [ (Pair Unit None) ] + - location: 8 (just consumed gas: 0.010) + [ ] + - location: 9 (just consumed gas: 0.015) + [ "NetXynUjJNZm7wi" ] + - location: 10 (just consumed gas: 0.010) + [ (Some "NetXynUjJNZm7wi") ] + - location: 11 (just consumed gas: 0.010) + [ {} + (Some "NetXynUjJNZm7wi") ] + - location: 13 (just consumed gas: 0.010) + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] + diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage981066851--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage981066851--input125992234-.out new file mode 100644 index 000000000000..4a8e6f5cc5a8 --- /dev/null +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -chain_id_store.tz--storage981066851--input125992234-.out @@ -0,0 +1,23 @@ + +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/chain_id_store.tz on storage '(Some "NetXynUjJNZm7wi")' and input Unit --level 1 --trace-stack +storage + (Some "NetXynUjJNZm7wi") +emitted operations + +big_map diff + +trace + - location: 8 (just consumed gas: 6.753) + [ (Pair Unit (Some "NetXynUjJNZm7wi")) ] + - location: 8 (just consumed gas: 0.010) + [ ] + - location: 9 (just consumed gas: 0.015) + [ "NetXynUjJNZm7wi" ] + - location: 10 (just consumed gas: 0.010) + [ (Some "NetXynUjJNZm7wi") ] + - location: 11 (just consumed gas: 0.010) + [ {} + (Some "NetXynUjJNZm7wi") ] + - location: 13 (just consumed gas: 0.010) + [ (Pair {} (Some "NetXynUjJNZm7wi")) ] + diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-get.tz--storage125992234--input186507116-.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-get.tz--storage125992234--input186507116-.out index e1fe883c478b..9ef6414623f8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-get.tz--storage125992234--input186507116-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/comb-get.tz on storage Unit and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set-2.tz--storage921624073--input186507116-.out similarity index 79% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set-2.tz--storage921624073--input186507116-.out index 5779d01f47f1..2cc509abd111 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set-2.tz--storage921624073--input186507116-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 "toto" 0x01))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/comb-set-2.tz on storage None and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack storage (Some (Pair 2 4 "toto" 0x01)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set.tz--storage186507116--input125992234-.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set.tz--storage186507116--input125992234-.out index 8d50977139a8..1c5db7ba8863 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set.tz--storage186507116--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/comb-set.tz on storage '(Pair 1 4 2 Unit)' and input Unit --level 1 --trace-stack storage (Pair 2 12 8 Unit) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb.tz--storage950292965--input125992234-.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb.tz--storage950292965--input125992234-.out index 43980b7c18bc..bd64fa6b98fb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb.tz--storage950292965--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/comb.tz on storage '(Pair 0 0 0)' and input Unit --level 1 --trace-stack storage (Pair 1 2 3) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -compare.tz--storage125992234--input125992234-.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -compare.tz--storage125992234--input125992234-.out index 95fc00a5decd..eacda59871a6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -compare.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/compare.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comparisons.tz--storage457300675--input281780712-.out similarity index 96% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comparisons.tz--storage457300675--input281780712-.out index 3445f9d423cb..f56c781fdbe5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comparisons.tz--storage457300675--input281780712-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ { False ; False ; False ; True ; True } ;\n { False ; False ; True ; True ; True } ;\n { True ; True ; False ; False ; False } ;\n { True ; True ; True ; False ; False } ;\n { True ; True ; False ; True ; True } ;\n { False ; False ; True ; False ; False } }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/comparisons.tz on storage '{}' and input '{ -9999999; -1 ; 0 ; 1 ; 9999999 }' --level 1 --trace-stack storage { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input392583650-.out similarity index 78% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input392583650-.out index ee43f43d076f..295fa7ffa92e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input392583650-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ "test1" ; "test2" }-{ "Hello test1" ; "Hello test2" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_hello.tz on storage '{}' and input '{ "test1" ; "test2" }' --level 1 --trace-stack storage { "Hello test1" ; "Hello test2" } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input457300675-.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input457300675-.out index bc60b8bd203a..70af73284547 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_hello.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input640104625-.out similarity index 72% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input640104625-.out index 1eba9a39c8f7..19ee54a89655 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello.tz--storage457300675--input640104625-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ "World!" }-{ "Hello World!" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_hello.tz on storage '{}' and input '{ "World!" }' --level 1 --trace-stack storage { "Hello World!" } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out index 147bd1ee5569..6ee53722f8f9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input354091714-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xab ; 0xcd }' --level 1 --trace-stack storage { 0xffab ; 0xffcd } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out index d89a534f3583..63abecf0042e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input441061063-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xcd }' --level 1 --trace-stack storage { 0xffcd } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out similarity index 59% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out index 321b2a968804..40d8bfa47893 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_hello_bytes.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_hello_bytes.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input264787654-.out similarity index 89% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input264787654-.out index 560f54049518..6a74c3d04330 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input264787654-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{ "a" ; "b" ; "c" }-"abc"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_list.tz on storage '""' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage "abc" emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input316676251-.out similarity index 92% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input316676251-.out index 856b6ea73af6..b04bf257107f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input316676251-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{ "Hello" ; " " ; "World" ; "!" }-"Hello World!"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_list.tz on storage '""' and input '{ "Hello" ; " " ; "World" ; "!" }' --level 1 --trace-stack storage "Hello World!" emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input457300675-.out similarity index 67% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input457300675-.out index 3b021c432236..477ba9e6f1c5 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -concat_list.tz--storage79230375--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[concat_list.tz-""-{}-""] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/concat_list.tz on storage '""' and input '{}' --level 1 --trace-stack storage "" emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage457300675--input798141440-.out similarity index 63% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage457300675--input798141440-.out index a18c521fe67e..2c72da012c8d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/cons.tz on storage '{}' and input 10 --level 1 --trace-stack storage { 10 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage581876226--input166122047-.out similarity index 64% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage581876226--input166122047-.out index c7bb49bdee3b..e63c696f4ed9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage581876226--input166122047-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/cons.tz on storage '{ 10 }' and input -5 --level 1 --trace-stack storage { -5 ; 10 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage793461282--input781487591-.out similarity index 65% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage793461282--input781487591-.out index 873fb9e7520f..4c7c0db16d07 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -cons.tz--storage793461282--input781487591-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/cons.tz on storage '{ -5 ; 10 }' and input 99 --level 1 --trace-stack storage { 99 ; -5 ; 10 } emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input315650912-.out similarity index 94% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input315650912-.out index afb518dc7ac1..f9a444708166 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input315650912-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" } { "B" })-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/contains_all.tz on storage None and input '(Pair { "B" } { "B" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input51111414-.out similarity index 97% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input51111414-.out index 9e0bcb533598..1da5c9821927 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input51111414-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input545734274-.out similarity index 94% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input545734274-.out index c90b4914660a..80ce99721fbd 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input545734274-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "A" } { "B" })-(Some False)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/contains_all.tz on storage None and input '(Pair { "A" } { "B" })' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input772794967-.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input772794967-.out index 0a84518226e4..a08f999d8b84 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input772794967-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/contains_all.tz on storage None and input '(Pair {} {})' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input917967660-.out similarity index 98% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input917967660-.out index 3af7c97ea44a..79b87687787e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input917967660-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })' --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input964818218-.out similarity index 94% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input964818218-.out index 049510311551..9e719653b30c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contains_all.tz--storage921624073--input964818218-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { "c" } { "B" })-(Some False)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/contains_all.tz on storage None and input '(Pair { "c" } { "B" })' --level 1 --trace-stack storage (Some False) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contract.tz--storage125992234--input117475800-.out similarity index 74% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contract.tz--storage125992234--input117475800-.out index 0233483176af..90314909dc43 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contract.tz--storage125992234--input117475800-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[contract.tz-Unit-"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/contract.tz on storage Unit and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -create_contract.tz--storage921624073--input125992234-.out similarity index 89% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -create_contract.tz--storage921624073--input125992234-.out index cb95652845ac..21d36a6fe40a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -create_contract.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/create_contract.tz on storage None and input Unit --level 1 --trace-stack storage (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out index 13140c3e6466..e9b75c50a291 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1011138251-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out index 991b152904ed..256e2acffcca 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1018564342-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 1)' --level 1 --trace-stack storage -1 emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out similarity index 78% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out index 20941144017d..d58e6f740728 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input1031049988-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")-200] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/diff_timestamps.tz on storage 111 and input '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")' --level 1 --trace-stack storage 200 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out index 124d28783f04..4da17e601532 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -diff_timestamps.tz--storage492856247--input685590443-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 1 0)' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq.tz--storage125992234--input246866101-.out similarity index 99% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq.tz--storage125992234--input246866101-.out index 38ce9b0e9aec..5065065c7c2f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq.tz--storage125992234--input246866101-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dig_eq.tz on storage Unit and input '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq.tz--storage125992234--input26856104-.out similarity index 99% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq.tz--storage125992234--input26856104-.out index 85094931fbb8..d7270c479f9f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq.tz--storage125992234--input26856104-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dig_eq.tz on storage Unit and input '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dign.tz--storage680650890--input529388602-.out similarity index 81% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dign.tz--storage680650890--input529388602-.out index 3b69fbc80661..1079bdbf78fa 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dign.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dign.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 5 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dip.tz--storage1011138251--input590117173-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dip.tz--storage1011138251--input590117173-.out index 78e35addeab5..57490e4b90c4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dip.tz--storage1011138251--input590117173-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 1 1)' --level 1 --trace-stack storage (Pair 1 2) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dip.tz--storage1011138251--input850887554-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dip.tz--storage1011138251--input850887554-.out index 477d061bdab9..a393b5dcaa57 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dip.tz--storage1011138251--input850887554-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 15 9)' --level 1 --trace-stack storage (Pair 15 24) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dipn.tz--storage680650890--input529388602-.out similarity index 86% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dipn.tz--storage680650890--input529388602-.out index c95f1d0dd826..e5bf9b2edb7b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dipn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dipn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dropn.tz--storage680650890--input529388602-.out similarity index 74% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dropn.tz--storage680650890--input529388602-.out index d6cb92093e2e..31847f75aca5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dropn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dropn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 5 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dugn.tz--storage680650890--input529388602-.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dugn.tz--storage680650890--input529388602-.out index acd75fc14a3b..81dd5c0e97d1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dugn.tz--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dugn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dup-n.tz--storage125992234--input125992234-.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dup-n.tz--storage125992234--input125992234-.out index 222be2bb6de1..970e159cb152 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dup-n.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/dup-n.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input247451205-.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input247451205-.out index 0dba3f010c83..ee1fe5e7bc4e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input247451205-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair None None None None)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 0)' --level 1 --trace-stack storage (Pair None None None None) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input250545589-.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input250545589-.out index 2ce9956d65cd..0cef9d39a03a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input250545589-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair -8 2)' --level 1 --trace-stack storage (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input79625541-.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input79625541-.out index 4c948c2402f2..f96312eeb475 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv.tz--storage994417987--input79625541-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 -3)' --level 1 --trace-stack storage (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out index ba4baa1e7a72..3c0ee5bdcbfb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input147133089-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 0))' --level 1 --trace-stack storage (Right None) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out index fa05fecca258..9ff7f8679971 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input215785357-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (Some (Pair 3 1)))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 3))' --level 1 --trace-stack storage (Right (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out index 2fa957bfce53..7a240f5b94f7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input389351431-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (Some (Pair 1 0)))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 10))' --level 1 --trace-stack storage (Left (Some (Pair 1 0))) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out index 452227cb2b72..bd8fca186096 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input44513000-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 0))' --level 1 --trace-stack storage (Left None) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out index 13a77fc639d2..17621e56cf54 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input635398196-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Some (Pair 3 1)))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 3))' --level 1 --trace-stack storage (Left (Some (Pair 3 1))) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out index c2d300890aca..173967b3d902 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input734264738-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (Some (Pair 1 0)))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 10))' --level 1 --trace-stack storage (Right (Some (Pair 1 0))) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out index fe75ab5685b1..87ea14508ff1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ediv_mutez.tz--storage977883604--input993071382-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (Some (Pair 0 5)))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 5 (Right 10))' --level 1 --trace-stack storage (Right (Some (Pair 0 5))) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -emit.tz--storage125992234--input125992234-.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -emit.tz--storage125992234--input125992234-.out index acf5babae6da..71f8d7edd3a8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -emit.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/emit.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -empty_map.tz--storage457300675--input125992234-.out similarity index 75% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -empty_map.tz--storage457300675--input125992234-.out index 0d8ca1e99fdc..d96849b40b36 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -empty_map.tz--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt "hello" "world" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/empty_map.tz on storage '{}' and input Unit --level 1 --trace-stack storage { Elt "hello" "world" } emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -exec_concat.tz--storage398998998--input246262487-.out similarity index 83% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -exec_concat.tz--storage398998998--input246262487-.out index 9a3203566787..38d8638410ac 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -exec_concat.tz--storage398998998--input246262487-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[exec_concat.tz-"?"-"test"-"test_abc"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/exec_concat.tz on storage '"?"' and input '"test"' --level 1 --trace-stack storage "test_abc" emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -exec_concat.tz--storage398998998--input79230375-.out similarity index 82% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -exec_concat.tz--storage398998998--input79230375-.out index cfbf228d2e36..a54908c856fe 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -exec_concat.tz--storage398998998--input79230375-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[exec_concat.tz-"?"-""-"_abc"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/exec_concat.tz on storage '"?"' and input '""' --level 1 --trace-stack storage "_abc" emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first.tz--storage492856247--input478406404-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first.tz--storage492856247--input478406404-.out index d31b2ce2019a..8997f0f77b42 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first.tz--storage492856247--input478406404-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/first.tz on storage 111 and input '{ 4 }' --level 1 --trace-stack storage 4 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first.tz--storage492856247--input962874972-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first.tz--storage492856247--input962874972-.out index 2ad44203cbc4..1dbe6fd29f48 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first.tz--storage492856247--input962874972-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/first.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out similarity index 74% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out index 9a07f3eecbee..f95be05d18b9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage1026405794--input329240220-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "hello" 4 })-"hello"-(Pair (Some 4) {})] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some 4) {}) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out similarity index 75% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out index 2db900d6ec5c..facbb240c587 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage382368661--input329240220-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-"hello"-(Pair None { Elt "hello" 4 })] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_and_update_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --level 1 --trace-stack storage (Pair None { Elt "hello" 4 }) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out index dee8f1025d7c..41385f8e0c3e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage496578814--input329240220-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt "hello" 4 })-"hello"-(Pair (Some 4) { Elt "hello" 5 })] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some 4) { Elt "hello" 5 }) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out similarity index 77% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out index 14e03047a214..ef51fa950f43 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage496578814--input507231566-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt "hello" 4 })-"hi"-(Pair None { Elt "hello" 4 ; Elt "hi" 5 })] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --level 1 --trace-stack storage (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out similarity index 73% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out index c2f9be951e0c..82cdb6883ee0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage547821324--input329240220-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-"hello"-(Pair None {})] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_and_update_map.tz on storage '(Pair None {})' and input '"hello"' --level 1 --trace-stack storage (Pair None {}) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out index c78ea234a5cd..9501fc578f92 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .dea86c763f.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage796012494--input156280093-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"1"-(Pair (Some 1) { Elt "2" 2 })] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --level 1 --trace-stack storage (Pair (Some 1) { Elt "2" 2 }) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out index c09965f320c4..2760d1a22ff7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .d8b5ad10cc.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_and_update_map.tz--storage796012494--input228164856-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt "1" 1 ; Elt "2" 2 })-"2"-(Pair (Some 2) { Elt "1" 1 })] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"2"' --level 1 --trace-stack storage (Pair (Some 2) { Elt "1" 1 }) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage139236239--input329240220-.out similarity index 82% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage139236239--input329240220-.out index f085941c3e80..d67843a18305 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage139236239--input329240220-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "hello" "hi" })-"hello"-(Pair (Some "hi") { Elt "hello" "hi" })] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '"hello"' --level 1 --trace-stack storage (Pair (Some "hi") { Elt "hello" "hi" }) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage139236239--input79230375-.out similarity index 81% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage139236239--input79230375-.out index 181c9bad636b..394b669b6d32 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage139236239--input79230375-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "hello" "hi" })-""-(Pair None { Elt "hello" "hi" })] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '""' --level 1 --trace-stack storage (Pair None { Elt "hello" "hi" }) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage329396864--input156280093-.out similarity index 83% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage329396864--input156280093-.out index d5414f778bb5..cf2a973b5570 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -get_map_value.tz--storage329396864--input156280093-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt "1" "one" ; Elt "2" "two" })-"1"-(Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" })] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/get_map_value.tz on storage '(Pair None { Elt "1" "one" ; Elt "2" "two" })' and input '"1"' --level 1 --trace-stack storage (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_key.tz--storage921624073--input1040351577-.out similarity index 71% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_key.tz--storage921624073--input1040351577-.out index 8281de4b77a3..cca68c26df84 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_key.tz--storage921624073--input1040351577-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_key.tz-None-"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"-(Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/hash_key.tz on storage None and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack storage (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_key.tz--storage921624073--input153350004-.out similarity index 71% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_key.tz--storage921624073--input153350004-.out index 4463ec2b7680..dff3a80735d8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_key.tz--storage921624073--input153350004-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_key.tz-None-"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"-(Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/hash_key.tz on storage None and input '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"' --level 1 --trace-stack storage (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_string.tz--storage151303925--input3431716-.out similarity index 74% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_string.tz--storage151303925--input3431716-.out index 4b693dc0b658..fbc2cc1a033e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_string.tz--storage151303925--input3431716-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-"abcdefg"-0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/hash_string.tz on storage 0x00 and input '"abcdefg"' --level 1 --trace-stack storage 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_string.tz--storage151303925--input535018041-.out similarity index 74% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_string.tz--storage151303925--input535018041-.out index aaeee48e17cc..ddfea74d7a4a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -hash_string.tz--storage151303925--input535018041-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-"12345"-0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/hash_string.tz on storage 0x00 and input '"12345"' --level 1 --trace-stack storage 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if.tz--storage921624073--input570553153-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if.tz--storage921624073--input570553153-.out index 8b1e209944d6..60028c7fb3b8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if.tz--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/if.tz on storage None and input False --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if.tz--storage921624073--input954397288-.out similarity index 71% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if.tz--storage921624073--input954397288-.out index 0b5e0ae39f4a..60359077e84c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if.tz--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/if.tz on storage None and input True --level 1 --trace-stack storage (Some True) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if_some.tz--storage398998998--input288201633-.out similarity index 65% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if_some.tz--storage398998998--input288201633-.out index 9a86f38a57a1..1eb34b7f7d44 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if_some.tz--storage398998998--input288201633-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if_some.tz-"?"-(Some "hello")-"hello"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/if_some.tz on storage '"?"' and input '(Some "hello")' --level 1 --trace-stack storage "hello" emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if_some.tz--storage398998998--input921624073-.out similarity index 66% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if_some.tz--storage398998998--input921624073-.out index f162bb1dd7b8..ccb404bb202f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -if_some.tz--storage398998998--input921624073-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[if_some.tz-"?"-None-""] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/if_some.tz on storage '"?"' and input None --level 1 --trace-stack storage "" emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input453441034-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input453441034-.out index 5b5b34a16f5d..afd74177a1df 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/int.tz on storage None and input 1 --level 1 --trace-stack storage (Some 1) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input535454136-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input535454136-.out index 9c29db7e61b9..6a2f81f3bf56 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input535454136-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/int.tz on storage None and input 9999 --level 1 --trace-stack storage (Some 9999) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input680650890-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input680650890-.out index 9fcdc0d2ab45..d78f87109a07 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -int.tz--storage921624073--input680650890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/int.tz on storage None and input 0 --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -keccak.tz--storage921624073--input1008262038-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -keccak.tz--storage921624073--input1008262038-.out index 3179bd136585..65d3f5db6161 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -keccak.tz--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/keccak.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack storage (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -left_right.tz--storage4177631--input202098045-.out similarity index 68% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -left_right.tz--storage4177631--input202098045-.out index 88d13d37ddb9..c5a5bc8fb0e3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -left_right.tz--storage4177631--input202098045-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[left_right.tz-(Left "X")-(Left True)-(Right True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/left_right.tz on storage '(Left "X")' and input '(Left True)' --level 1 --trace-stack storage (Right True) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -left_right.tz--storage4177631--input44576556-.out similarity index 68% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -left_right.tz--storage4177631--input44576556-.out index 0c89399b653a..4656178e47a7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -left_right.tz--storage4177631--input44576556-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[left_right.tz-(Left "X")-(Right "a")-(Left "a")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/left_right.tz on storage '(Left "X")' and input '(Right "a")' --level 1 --trace-stack storage (Left "a") emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -level.tz--storage492856247--input125992234-.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -level.tz--storage492856247--input125992234-.out index a1a6c4e96bfc..d0fa4b8e4826 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -level.tz--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/level.tz on storage 111 and input Unit --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat.tz--storage717096222--input457300675-.out similarity index 68% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat.tz--storage717096222--input457300675-.out index 3a055e635ef0..f8db6799fc5d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat.tz--storage717096222--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat.tz-"abc"-{}-"abc"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_concat.tz on storage '"abc"' and input '{}' --level 1 --trace-stack storage "abc" emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat.tz--storage717096222--input546523343-.out similarity index 70% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat.tz--storage717096222--input546523343-.out index 38d080a90950..a2b900388f4b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat.tz--storage717096222--input546523343-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat.tz-"abc"-{ "d" ; "e" ; "f" }-"abcdef"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_concat.tz on storage '"abc"' and input '{ "d" ; "e" ; "f" }' --level 1 --trace-stack storage "abcdef" emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out index 30cee6651bd3..6ce7bdc12566 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage149262694--input220724351-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_concat_bytes.tz on storage 0x and input '{ 0x00 ; 0x11 ; 0x00 }' --level 1 --trace-stack storage 0x001100 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out index 8bb6fc88f180..5e9316114a15 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage149262694--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_concat_bytes.tz on storage 0x and input '{}' --level 1 --trace-stack storage 0x emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out index 0db79c4aa39a..3cec0fc7b124 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage65410082--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_concat_bytes.tz on storage 0xabcd and input '{}' --level 1 --trace-stack storage 0xabcd emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out similarity index 73% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out index 88d16ace0fc9..4fb36d2d2f5e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_concat_bytes.tz--storage726220441--input972761363-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_concat_bytes.tz on storage 0x00ab and input '{ 0xcd ; 0xef ; 0x00 }' --level 1 --trace-stack storage 0x00abcdef00 emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input264787654-.out similarity index 61% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input264787654-.out index 43409809a187..42a3f8e747ff 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_id.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input457300675-.out similarity index 57% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input457300675-.out index 843552e53286..9b9c7e00af86 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_id.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input656499821-.out similarity index 61% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input656499821-.out index 141e0e3156b3..3fd5d0bd0f71 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id.tz--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id.tz-{""}-{ "1" ; "2" ; "3" }-{ "1" ; "2" ; "3" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_id.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack storage { "1" ; "2" ; "3" } emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input264787654-.out similarity index 71% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input264787654-.out index 00e84f873593..6625c5b3ca36 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_id_map.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input457300675-.out similarity index 60% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input457300675-.out index ecaa7068eaa0..9493b0570652 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_id_map.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input656499821-.out similarity index 71% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input656499821-.out index bdb3bd311cfe..2d3f99010cc0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_id_map.tz--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_id_map.tz-{""}-{ "1" ; "2" ; "3" }-{ "1" ; "2" ; "3" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_id_map.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack storage { "1" ; "2" ; "3" } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_iter.tz--storage680650890--input568817463-.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_iter.tz--storage680650890--input568817463-.out index cdc39e590acc..079ecdcf9206 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_iter.tz--storage680650890--input568817463-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_iter.tz on storage 0 and input '{ 10 ; 2 ; 1 }' --level 1 --trace-stack storage 20 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_iter.tz--storage680650890--input737923774-.out similarity index 78% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_iter.tz--storage680650890--input737923774-.out index 8daf72c03eee..e55bc32b0807 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_iter.tz--storage680650890--input737923774-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_iter.tz on storage 0 and input '{ 3 ; 6 ; 9 }' --level 1 --trace-stack storage 162 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input457300675-.out similarity index 73% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input457300675-.out index adeb6050727f..3d726d0c6d5d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_map_block.tz on storage '{0}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input648737279-.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input648737279-.out index fe21998b56bd..61fa6120589b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input648737279-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 2 ; 3 ; 0 }' --level 1 --trace-stack storage { 1 ; 3 ; 5 ; 3 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input908379154-.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input908379154-.out index 74d7e06f9c73..62affb506dab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_map_block.tz--storage907453363--input908379154-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 1 ; 1 ; 1 }' --level 1 --trace-stack storage { 1 ; 2 ; 3 ; 4 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input403499055-.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input403499055-.out index 04d1e99a4735..f3bce3dd4399 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input457300675-.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input457300675-.out index 8f4129eec2c4..6092e994a7e6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input469078912-.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input469078912-.out index addd24cd9df8..68ca4711533b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input802622031-.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input802622031-.out index a38efff17cda..b8da414a18e5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -list_size.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/list_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -loop_left.tz--storage528921618--input457300675-.out similarity index 83% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -loop_left.tz--storage528921618--input457300675-.out index b900e4f848e8..607d7747f6e4 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -loop_left.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[loop_left.tz-{""}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/loop_left.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -loop_left.tz--storage528921618--input851203613-.out similarity index 95% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -loop_left.tz--storage528921618--input851203613-.out index f15eab118523..8592dabce693 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -loop_left.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[loop_left.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/loop_left.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input1027566226-.out similarity index 59% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input1027566226-.out index 05c642fed8de..10ff5e84afff 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input1027566226-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 }' --level 1 --trace-stack storage { Elt 0 0 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input276660554-.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input276660554-.out index 6ce68c403e6b..2925f78c7804 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input276660554-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 ; Elt 3 4 }' --level 1 --trace-stack storage { Elt 0 0 ; Elt 3 4 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input599923743-.out similarity index 59% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input599923743-.out index 8930bc2ad076..afe400833690 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_id.tz--storage457300675--input599923743-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 1 }' --level 1 --trace-stack storage { Elt 0 1 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_iter.tz--storage1011138251--input403579222-.out similarity index 92% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_iter.tz--storage1011138251--input403579222-.out index 07b2a5143565..09bc5c7882d2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_iter.tz--storage1011138251--input403579222-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 1 1 ; Elt 2 100 }' --level 1 --trace-stack storage (Pair 3 101) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_iter.tz--storage1011138251--input532072758-.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_iter.tz--storage1011138251--input532072758-.out index 6df2c978b2ba..fb306d9fcfe5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_iter.tz--storage1011138251--input532072758-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 0 100 ; Elt 2 100 }' --level 1 --trace-stack storage (Pair 2 200) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage457300675--input798141440-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage457300675--input798141440-.out index 265232d7c5bc..18961b1c13b8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_map.tz on storage '{}' and input 10 --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage794999348--input152441147-.out similarity index 86% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage794999348--input152441147-.out index 2e8217e9e97a..a22cf68b3d21 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage794999348--input152441147-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt "bar" 5 ; Elt "foo" 1 }-15-{ Elt "bar" 20 ; Elt "foo" 16 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_map.tz on storage '{ Elt "bar" 5 ; Elt "foo" 1 }' and input 15 --level 1 --trace-stack storage { Elt "bar" 20 ; Elt "foo" 16 } emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage88008216--input798141440-.out similarity index 81% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage88008216--input798141440-.out index 5899f4b30dd9..4345c56df609 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_map.tz--storage88008216--input798141440-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt "foo" 1 }-10-{ Elt "foo" 11 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_map.tz on storage '{ Elt "foo" 1 }' and input 10 --level 1 --trace-stack storage { Elt "foo" 11 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out index 96f37ba0d7cf..086cb95024b0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out index d9e2e8766bc6..a624e13e5968 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pair { Elt 1 4 ; Elt 2 11 } (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out index 686746e554b9..f3c7ebcb902b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pair { Elt 1 4 ; Elt 2 11 } (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out index 005bbe85dd9b..98480d2e7114 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pair { Elt 1 4 ; Elt 2 11 } (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack storage (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out index 1a6354f7140a..5ced15990aa1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 0 } (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 1 0 } (Some True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out index 6239da283a3f..0321c306314a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_nat.tz--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 1 } (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack storage (Pair { Elt 0 1 } (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out similarity index 82% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out index 43f04e7ade81..347c9d30a80f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"baz"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input700475845-.out similarity index 82% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input700475845-.out index dbb89ff2cd38..bdfb83221221 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"bar"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input905318451-.out similarity index 82% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input905318451-.out index d0837258e5c7..7e1163be321f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)-"foo"-(Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage495706788--input700475845-.out similarity index 78% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage495706788--input700475845-.out index 7c2b0dcecf90..58369141f2ce 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-"bar"-(Pair {} (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage915708427--input700475845-.out similarity index 81% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage915708427--input700475845-.out index 659ce0963565..4ea18f9b84c7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "foo" 1 } None)-"bar"-(Pair { Elt "foo" 1 } (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack storage (Pair { Elt "foo" 1 } (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage936682951--input905318451-.out similarity index 80% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage936682951--input905318451-.out index b3b12c320cf1..c550b808dacb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_mem_string.tz--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt "foo" 0 } None)-"foo"-(Pair { Elt "foo" 0 } (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack storage (Pair { Elt "foo" 0 } (Some True)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input15265129-.out similarity index 61% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input15265129-.out index 24da2cbeb85a..a07288678fb7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input15265129-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 }-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input158311065-.out similarity index 61% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input158311065-.out index 506422a23325..b8bf5f5b0f25 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input158311065-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }-3] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input456982702-.out similarity index 62% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input456982702-.out index 191d3907ba84..0949a1f9c384 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input456982702-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }-6] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input457300675-.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input457300675-.out index fbfe9a0febd3..a401b0c56ee3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -map_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/map_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mul.tz--storage125992234--input125992234-.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mul.tz--storage125992234--input125992234-.out index c728313a8223..cb1e08406f77 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mul.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/mul.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out similarity index 83% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out index b1c9df3080a3..17cef28b1af6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr.tz--storage151303925--input216277421-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/mutez_to_bls12_381_fr.tz on storage 0x00 and input 257 --level 1 --trace-stack storage 0x0101000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out index 99325d4f9816..e15e07386e03 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr.tz--storage287799761--input485842614-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x1000000000000000000000000000000000000000000000000000000000000000] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/mutez_to_bls12_381_fr.tz on storage 0x02 and input 16 --level 1 --trace-stack storage 0x1000000000000000000000000000000000000000000000000000000000000000 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input1067298059-.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input1067298059-.out index b3f33a6bef9f..ba0748d55231 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input1067298059-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/neg.tz on storage 0 and input '(Left -2)' --level 1 --trace-stack storage 2 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input380029349-.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input380029349-.out index 62f3d61d8ffe..a60257e89871 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input380029349-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/neg.tz on storage 0 and input '(Right 2)' --level 1 --trace-stack storage -2 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input563503226-.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input563503226-.out index 1bb90f76cc92..03ca87b48551 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input563503226-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/neg.tz on storage 0 and input '(Left 2)' --level 1 --trace-stack storage -2 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input788662499-.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input788662499-.out index ab11281df88f..7aeb06f97719 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input788662499-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/neg.tz on storage 0 and input '(Right 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input972832189-.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input972832189-.out index 80e65466029d..24fa593e441d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -neg.tz--storage680650890--input972832189-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/neg.tz on storage 0 and input '(Left 0)' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -none.tz--storage11179311--input125992234-.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -none.tz--storage11179311--input125992234-.out index d96b3c23254f..8fd87c547649 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -none.tz--storage11179311--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/none.tz on storage 'Some 10' and input Unit --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not.tz--storage921624073--input570553153-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not.tz--storage921624073--input570553153-.out index 44bdbef04f21..a349dedd5fd6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not.tz--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not.tz on storage None and input False --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not.tz--storage921624073--input954397288-.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not.tz--storage921624073--input954397288-.out index 3f1d2714d6f8..970d52ff70cc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not.tz--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not.tz on storage None and input True --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input1051197453-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input1051197453-.out index 0831fccb72af..41b694d0ee5c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input1051197453-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not_binary.tz on storage None and input '(Right 8)' --level 1 --trace-stack storage (Some -9) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input123939249-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input123939249-.out index 5b8249cf7701..1d109242e93b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input123939249-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not_binary.tz on storage None and input '(Left 7)' --level 1 --trace-stack storage (Some -8) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input24243730-.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input24243730-.out index ffb1daf73b3c..be0330afdd27 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input24243730-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not_binary.tz on storage None and input '(Left -8)' --level 1 --trace-stack storage (Some 7) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input518945720-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input518945720-.out index 0059a5afc9cb..42142abae121 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input518945720-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not_binary.tz on storage None and input '(Left 8)' --level 1 --trace-stack storage (Some -9) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input788662499-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input788662499-.out index 1a9b9a71b1af..9ba5baa21521 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input788662499-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not_binary.tz on storage None and input '(Right 0)' --level 1 --trace-stack storage (Some -1) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input906118781-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input906118781-.out index 12a05c406eff..35aecd99d8c7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input906118781-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not_binary.tz on storage None and input '(Right 7)' --level 1 --trace-stack storage (Some -8) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input921874253-.out similarity index 69% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input921874253-.out index 669ae3212815..c2a069d2a534 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input921874253-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not_binary.tz on storage None and input '(Left -9)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input972832189-.out similarity index 70% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input972832189-.out index 3a15b67170b5..5c2c611b3239 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_binary.tz--storage921624073--input972832189-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/not_binary.tz on storage None and input '(Left 0)' --level 1 --trace-stack storage (Some -1) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input106930123-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input106930123-.out index 0ad8a53c9208..3ce0318ad9e4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input181204719-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input181204719-.out index 72aacca7555f..b50ba7460edb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input223774825-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input223774825-.out index c6c15f968949..8ded3811dd88 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some False) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input908807505-.out similarity index 77% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input908807505-.out index d06ca90ea6d2..6a8d6cc535e0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some True) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input1056991424-.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input1056991424-.out index 13f20f87b0c0..67c0b26d6b19 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input1056991424-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or_binary.tz on storage None and input '(Pair 0 8)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input375993021-.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input375993021-.out index ee65d43e28d8..48746723a39a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input375993021-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or_binary.tz on storage None and input '(Pair 14 1)' --level 1 --trace-stack storage (Some 15) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input673240563-.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input673240563-.out index b67908e4e212..2210bc58b488 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input673240563-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or_binary.tz on storage None and input '(Pair 8 0)' --level 1 --trace-stack storage (Some 8) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input747448890-.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input747448890-.out index e45c4409cd81..78f7105f6295 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input747448890-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or_binary.tz on storage None and input '(Pair 7 7)' --level 1 --trace-stack storage (Some 7) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input832403787-.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input832403787-.out index 9b82d80f3e3f..2b48097dc290 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input832403787-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or_binary.tz on storage None and input '(Pair 15 4)' --level 1 --trace-stack storage (Some 15) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input858098961-.out similarity index 68% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input858098961-.out index 6365697764f7..f759713e1791 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_binary.tz--storage921624073--input858098961-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/or_binary.tz on storage None and input '(Pair 4 8)' --level 1 --trace-stack storage (Some 12) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out similarity index 98% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out index 60d731031ca6..80bedb3c474d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev.tz--storage125992234--input305844558-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))-Unit1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out similarity index 98% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out index 169386e41e5e..dcce5f6098ae 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev.tz--storage125992234--input646365167-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))-Unit0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out similarity index 98% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out index 9de14737686a..523e1da3a2cc 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty.tz--storage125992234--input1028781121-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out similarity index 98% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out index 4dc27c311a95..2ad99fee4b56 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty.tz--storage125992234--input802670583-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))' --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input106930123-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input106930123-.out index b301011f6fe6..2293218b35fe 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/pair_id.tz on storage None and input '(Pair False True)' --level 1 --trace-stack storage (Some (Pair False True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input181204719-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input181204719-.out index d2ff13849396..31b7e4794f69 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/pair_id.tz on storage None and input '(Pair True False)' --level 1 --trace-stack storage (Some (Pair True False)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input223774825-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input223774825-.out index 1fe958ce9ae3..1e8509fce043 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/pair_id.tz on storage None and input '(Pair False False)' --level 1 --trace-stack storage (Some (Pair False False)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input908807505-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input908807505-.out index 34c53ca806aa..2c0e41b0fb28 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pair_id.tz--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/pair_id.tz on storage None and input '(Pair True True)' --level 1 --trace-stack storage (Some (Pair True True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pexec.tz--storage256947135--input1050356042-.out similarity index 82% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pexec.tz--storage256947135--input1050356042-.out index 45596fcbca6a..a10b9b7c8aab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pexec.tz--storage256947135--input1050356042-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/pexec.tz on storage 14 and input 38 --level 1 --trace-stack storage 52 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pexec_2.tz--storage197120858--input179371027-.out similarity index 97% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pexec_2.tz--storage197120858--input179371027-.out index a52a140a58f7..cfb07c0d5a00 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -pexec_2.tz--storage197120858--input179371027-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/pexec_2.tz on storage '{ 0 ; 1 ; 2 ; 3}' and input 4 --level 1 --trace-stack storage { 0 ; 7 ; 14 ; 21 } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ret_int.tz--storage921624073--input125992234-.out similarity index 66% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ret_int.tz--storage921624073--input125992234-.out index aaf8d46c147a..e0ab140f345b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -ret_int.tz--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/ret_int.tz on storage None and input Unit --level 1 --trace-stack storage (Some 300) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse.tz--storage528921618--input457300675-.out similarity index 67% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse.tz--storage528921618--input457300675-.out index 0736ff8f582c..bbcec53ae958 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse.tz-{""}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/reverse.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse.tz--storage528921618--input851203613-.out similarity index 80% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse.tz--storage528921618--input851203613-.out index 994f5d084083..6a749c92b834 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/reverse.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse_loop.tz--storage528921618--input457300675-.out similarity index 80% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse_loop.tz--storage528921618--input457300675-.out index d1d70016e2a1..ce0314b158dd 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse_loop.tz--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{""}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/reverse_loop.tz on storage '{""}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse_loop.tz--storage528921618--input851203613-.out similarity index 92% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse_loop.tz--storage528921618--input851203613-.out index 6ad1adfa673c..7783e4409627 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -reverse_loop.tz--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{""}-{ "c" ; "b" ; "a" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/reverse_loop.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out similarity index 59% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out index e1e33226b477..81a6bb1e64a8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sapling_empty_state.tz--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/sapling_empty_state.tz on storage '{}' and input Unit --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_address.tz--storage125992234--input125992234-.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_address.tz--storage125992234--input125992234-.out index e89a4750e655..ca2a44f87bdf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_address.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/self_address.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_default_entrypoint.tz--storage125992234--input12599223.out similarity index 84% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_default_entrypoint.tz--storage125992234--input12599223.out index 3252a4f1a97d..4053baaf3872 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_default_entrypoint.tz--storage125992234--input12599223.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/self_with_default_entrypoint.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out similarity index 93% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out index fcd26e2aea6d..870ff5c32119 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_entrypoint.tz--storage125992234--input289072903-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/self_with_entrypoint.tz on storage Unit and input 'Left (Left 0)' --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input620760059-.out similarity index 82% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input620760059-.out index 79f70412b189..673b272bf046 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input620760059-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-"world"-(Pair "world" 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"world"' --level 1 --trace-stack storage (Pair "world" 0) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input717096222-.out similarity index 82% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input717096222-.out index a993a26f1c2b..f963ec9f09ed 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input717096222-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-"abc"-(Pair "abc" 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"abc"' --level 1 --trace-stack storage (Pair "abc" 0) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input79230375-.out similarity index 82% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input79230375-.out index b6a723c0ddf4..9e9821f155d3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_car.tz--storage224747103--input79230375-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair "hello" 0)-""-(Pair "" 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '""' --level 1 --trace-stack storage (Pair "" 0) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage205576101--input654274102-.out similarity index 81% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage205576101--input654274102-.out index bc7c24e4b009..b93f7cebe2ca 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage205576101--input654274102-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 500)-3-(Pair "hello" 3)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_cdr.tz on storage '(Pair "hello" 500)' and input 3 --level 1 --trace-stack storage (Pair "hello" 3) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage224747103--input453441034-.out similarity index 81% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage224747103--input453441034-.out index 285453ac4994..15ab3f3539e8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage224747103--input453441034-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 0)-1-(Pair "hello" 1)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_cdr.tz on storage '(Pair "hello" 0)' and input 1 --level 1 --trace-stack storage (Pair "hello" 1) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage611418174--input967284912-.out similarity index 81% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage611418174--input967284912-.out index 6017da5c1116..f84274e0795a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_cdr.tz--storage611418174--input967284912-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair "hello" 7)-100-(Pair "hello" 100)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_cdr.tz on storage '(Pair "hello" 7)' and input 100 --level 1 --trace-stack storage (Pair "hello" 100) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input264787654-.out similarity index 61% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input264787654-.out index eb1f303e08ad..ea3451b5dac4 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input264787654-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ "a" ; "b" ; "c" }-{ "a" ; "b" ; "c" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_id.tz on storage '{}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack storage { "a" ; "b" ; "c" } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input457300675-.out similarity index 57% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input457300675-.out index f335d69ba2f9..96ed5393494d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_id.tz on storage '{}' and input '{}' --level 1 --trace-stack storage {} emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input989507347-.out similarity index 61% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input989507347-.out index 605606d99407..6785a8e20407 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_id.tz--storage457300675--input989507347-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ "asdf" ; "bcde" }-{ "asdf" ; "bcde" }] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_id.tz on storage '{}' and input '{ "asdf" ; "bcde" }' --level 1 --trace-stack storage { "asdf" ; "bcde" } emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input457300675-.out similarity index 67% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input457300675-.out index 95b44922116a..5e37924a4929 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_iter.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input701684511-.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input701684511-.out index c4adffc6630b..e7c66c5f0f53 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input701684511-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_iter.tz on storage 111 and input '{ -100 ; 1 ; 2 ; 3 }' --level 1 --trace-stack storage -94 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input802622031-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input802622031-.out index 7dfba734726c..2de7cdf94a0e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_iter.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_iter.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage495706788--input33757838-.out similarity index 86% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage495706788--input33757838-.out index bd2cf869e9b7..6d823b02a905 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage495706788--input33757838-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-"Hi"-(Pair {} (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_member.tz on storage '(Pair {} None)' and input '"Hi"' --level 1 --trace-stack storage (Pair {} (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage550087893--input79230375-.out similarity index 88% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage550087893--input79230375-.out index 2f4dc29106bb..798db193f6c0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage550087893--input79230375-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { "Hello" ; "World" } None)-""-(Pair { "Hello" ; "World" } (Some False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_member.tz on storage '(Pair { "Hello" ; "World" } None)' and input '""' --level 1 --trace-stack storage (Pair { "Hello" ; "World" } (Some False)) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage605111220--input33757838-.out similarity index 87% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage605111220--input33757838-.out index 526ef95441e9..2945f9ebfec6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_member.tz--storage605111220--input33757838-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { "Hi" } None)-"Hi"-(Pair { "Hi" } (Some True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_member.tz on storage '(Pair { "Hi" } None)' and input '"Hi"' --level 1 --trace-stack storage (Pair { "Hi" } (Some True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input403499055-.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input403499055-.out index bb5ded785b61..06e0ff7b40d6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack storage 6 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input457300675-.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input457300675-.out index 376913217299..7cbcc8c3d797 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_size.tz on storage 111 and input '{}' --level 1 --trace-stack storage 0 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input469078912-.out similarity index 61% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input469078912-.out index 111272c28a07..ceecbaec3602 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack storage 3 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input802622031-.out similarity index 60% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input802622031-.out index 253585f5b5e8..fcb695872575 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -set_size.tz--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/set_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack storage 1 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sha3.tz--storage921624073--input1008262038-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sha3.tz--storage921624073--input1008262038-.out index c9167d5d5125..dae7027b899a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sha3.tz--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/sha3.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack storage (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input115382786-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input115382786-.out index a5ee974c79a2..11bc8121d62b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input115382786-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Left (Pair 15 2))' --level 1 --trace-stack storage (Some 60) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input271566295-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input271566295-.out index 10c5326b3d6e..0e5f84829b0f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input271566295-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Right (Pair 0 1))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input340971987-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input340971987-.out index 6412d83dc2a5..82ab4b676c75 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input340971987-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Left (Pair 0 0))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input374168553-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input374168553-.out index 4838f8b62d89..c1678f641e05 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input374168553-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Right (Pair 15 2))' --level 1 --trace-stack storage (Some 3) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input413621582-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input413621582-.out index d30244a0870c..93c022ec2b94 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input413621582-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Right (Pair 1 2))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input424849461-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input424849461-.out index c187f26c9550..d006678561a1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input424849461-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Left (Pair 1 2))' --level 1 --trace-stack storage (Some 4) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input485030042-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input485030042-.out index c4c684a738af..16b9f0aa89c6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input485030042-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Left (Pair 8 1))' --level 1 --trace-stack storage (Some 16) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input705767726-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input705767726-.out index 3126bd5963bc..c62795625c90 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input705767726-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Right (Pair 8 1))' --level 1 --trace-stack storage (Some 4) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input769385932-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input769385932-.out index b50c4d6e39ea..e7e3ac54fe4c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input769385932-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Left (Pair 0 1))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input913715337-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input913715337-.out index a1858961f175..c1099307516f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -shifts.tz--storage921624073--input913715337-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/shifts.tz on storage None and input '(Right (Pair 0 0))' --level 1 --trace-stack storage (Some 0) emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage351480851--input65907686-.out similarity index 99% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage351480851--input65907686-.out index be51a531fae1..0c9346ab32cf 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage351480851--input65907686-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"-Pair 1 10000-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice.tz on storage 'Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"' and input 'Pair 1 10000' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input198821575-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input198821575-.out index 1b429cd7dcf1..048d4fac464c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input198821575-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 1 1-(Some "o")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 1' --level 1 --trace-stack storage (Some "o") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input359592843-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input359592843-.out index 999fc71166a3..e34d518e3d2e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input359592843-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 10 5-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 10 5' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input551316239-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input551316239-.out index 226d4ef084fa..f670ab5239c9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input551316239-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 0-(Some "")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 0' --level 1 --trace-stack storage (Some "") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input722749044-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input722749044-.out index 68ee260b39af..3614702f342e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input722749044-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 10-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 10' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input839234860-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input839234860-.out index db9a8a59f6c9..ecc3c6f6a6f1 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input839234860-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 1 3-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 3' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input919180079-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input919180079-.out index 34911739723e..f16b7e0a20d0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage364922380--input919180079-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-Some "Foo"-Pair 0 2-(Some "Fo")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 2' --level 1 --trace-stack storage (Some "Fo") emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage921624073--input551316239-.out similarity index 73% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage921624073--input551316239-.out index da01b134c1d7..4ccb33a17488 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice.tz--storage921624073--input551316239-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice.tz on storage None and input 'Pair 0 0' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input198821575-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input198821575-.out index b6f868f8789d..7e44b710ed0e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input198821575-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 1' --level 1 --trace-stack storage (Some 0xbb) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input462551352-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input462551352-.out index e3882c73b6b7..e7f2086ad4c6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input462551352-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 1' --level 1 --trace-stack storage (Some 0xaa) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input489157380-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input489157380-.out index 4e98bf6ecee1..cb914576af77 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input489157380-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 2' --level 1 --trace-stack storage (Some 0xbbcc) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input551316239-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input551316239-.out index 011f1aa4ac57..90a9c972b46b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input551316239-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 0' --level 1 --trace-stack storage (Some 0x) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input669330759-.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input669330759-.out index 6c2294b6250a..8dd0e2c1ed0f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input669330759-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 2-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 2' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input743596105-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input743596105-.out index 68a5a5c48f03..a968e5fb7cac 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input743596105-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 2 1-(Some 0xcc)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 1' --level 1 --trace-stack storage (Some 0xcc) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input839234860-.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input839234860-.out index febf94f38d5e..79bcd4251a12 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage229749865--input839234860-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 3' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage504917929--input65907686-.out similarity index 85% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage504917929--input65907686-.out index efc07cdaaf55..a204c451de8e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage504917929--input65907686-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc-Pair 1 10000-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage 'Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc' and input 'Pair 1 10000' --level 1 --trace-stack storage None emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage921624073--input462551352-.out similarity index 72% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage921624073--input462551352-.out index af940c73bb17..6e10dd7d1798 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -slice_bytes.tz--storage921624073--input462551352-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/slice_bytes.tz on storage None and input 'Pair 0 1' --level 1 --trace-stack storage None emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -str_id.tz--storage921624073--input1016369050-.out similarity index 63% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -str_id.tz--storage921624073--input1016369050-.out index 82a86f861748..44681c6efefd 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -str_id.tz--storage921624073--input1016369050-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[str_id.tz-None-"abcd"-(Some "abcd")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/str_id.tz on storage None and input '"abcd"' --level 1 --trace-stack storage (Some "abcd") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -str_id.tz--storage921624073--input93477117-.out similarity index 64% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -str_id.tz--storage921624073--input93477117-.out index 568a6998e5e2..40df2fe6505e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -str_id.tz--storage921624073--input93477117-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[str_id.tz-None-"Hello"-(Some "Hello")] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/str_id.tz on storage None and input '"Hello"' --level 1 --trace-stack storage (Some "Hello") emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out similarity index 79% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out index d9795b14bf2c..e94d26e02378 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input249636002-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-"1970-01-01T00:00:00Z"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 100)' --level 1 --trace-stack storage "1970-01-01T00:00:00Z" emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out similarity index 79% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out index 8bfb2d93f1b7..57e7079d77dc 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input307538219-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-"1970-01-01T00:03:20Z"] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 -100)' --level 1 --trace-stack storage "1970-01-01T00:03:20Z" emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out similarity index 80% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out index 9a2cc4b69de5..cfaa02cc98b5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -sub_timestamp_delta.tz--storage492856247--input831449542-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 2000000000000000000)--1999999999999999900] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 2000000000000000000)' --level 1 --trace-stack storage -1999999999999999900 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out similarity index 88% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out index 37a20f5b0d68..ccc481921089 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub.tz--storage921624073--input706350605-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair 3320000 1300000))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/tez_add_sub.tz on storage None and input '(Pair 2310000 1010000)' --level 1 --trace-stack storage (Some (Pair 3320000 1300000)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out similarity index 88% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out index 0bb2b37e59c1..e862263fcfb8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub.tz--storage921624073--input856198194-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair 3000000 1000000))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/tez_add_sub.tz on storage None and input '(Pair 2000000 1000000)' --level 1 --trace-stack storage (Some (Pair 3000000 1000000)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -uncomb.tz--storage680650890--input394061083-.out similarity index 79% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -uncomb.tz--storage680650890--input394061083-.out index e39ce71f8445..7258a68c1e5d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -uncomb.tz--storage680650890--input394061083-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/uncomb.tz on storage 0 and input '(Pair 1 4 2)' --level 1 --trace-stack storage 142 emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -unpair.tz--storage125992234--input125992234-.out similarity index 98% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -unpair.tz--storage125992234--input125992234-.out index 699a9ecc79b2..cf09a3a553fd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -unpair.tz--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/unpair.tz on storage Unit and input Unit --level 1 --trace-stack storage Unit emitted operations diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -voting_power.tz--storage1011138251--input1040351577-.out similarity index 76% rename from "tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -voting_power.tz--storage1011138251--input1040351577-.out index 29e30dd912eb..f362ea002b71 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -voting_power.tz--storage1011138251--input1040351577-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"-(Pair 4000000000000 20000000000000)] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/voting_power.tz on storage '(Pair 0 0)' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack storage (Pair 4000000000000 20000000000000) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input1058477720-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input1058477720-.out index 818c46745367..8498ac6c6bf4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input1058477720-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Left (Pair False False)' --level 1 --trace-stack storage (Some (Left False)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input1073176155-.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input1073176155-.out index 504c20123b21..173c0047bdaf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input1073176155-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Right (Pair 0 0)' --level 1 --trace-stack storage (Some (Right 0)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input246594902-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input246594902-.out index 9ca50094190f..86da8e3a9108 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input246594902-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Left (Pair True False)' --level 1 --trace-stack storage (Some (Left True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input506603577-.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input506603577-.out index 8cbddbd8b4c4..1eae6541187f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input506603577-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Right (Pair 1 1)' --level 1 --trace-stack storage (Some (Right 0)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input576248088-.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input576248088-.out index 2e4ab9ac6529..b51a185941fb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input576248088-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Right (Pair 0 1)' --level 1 --trace-stack storage (Some (Right 1)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input612012282-.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input612012282-.out index 4e84f9b145ee..879c02dc0496 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input612012282-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Right (Pair 42 21)' --level 1 --trace-stack storage (Some (Right 63)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input617591686-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input617591686-.out index 5ea3e4fd31d7..f523fcc61787 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input617591686-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Left (Pair False True)' --level 1 --trace-stack storage (Some (Left True)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input639311176-.out similarity index 76% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input639311176-.out index 57daf82638c1..de08b65f3c70 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input639311176-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Left (Pair True True)' --level 1 --trace-stack storage (Some (Left False)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input688315180-.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input688315180-.out index 12da5f927b1e..1b21df92a0d5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input688315180-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Right (Pair 42 63)' --level 1 --trace-stack storage (Some (Right 21)) emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input967929605-.out similarity index 75% rename from tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out rename to tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input967929605-.out index 260258f82599..45316b6f475f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor.tz--storage921624073--input967929605-.out @@ -1,5 +1,5 @@ -tests_alpha/test_contract_opcodes.py::TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))] +./octez-client --protocol ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK --mode mockup --no-base-dir-warnings run script ./tests_python/contracts_alpha/opcodes/xor.tz on storage None and input 'Right (Pair 1 0)' --level 1 --trace-stack storage (Some (Right 1)) emitted operations -- GitLab