From d0cfa983b59f5d25b756f56b3034d3dcc3cac381 Mon Sep 17 00:00:00 2001 From: 0rphon <59403052+0rphon@users.noreply.github.com> Date: Wed, 15 Jun 2022 16:06:26 -0700 Subject: [PATCH 1/3] fixed bug --- .../compiler/compiler/address/branch.leo.out | 4 +- .../compiler/compiler/address/equal.leo.out | 4 +- .../compiler/compiler/address/ternary.leo.out | 4 +- tests/test-framework/src/runner.rs | 74 ++++++++++++++----- 4 files changed, 61 insertions(+), 25 deletions(-) diff --git a/tests/expectations/compiler/compiler/address/branch.leo.out b/tests/expectations/compiler/compiler/address/branch.leo.out index ea8c36af1e..f001315d71 100644 --- a/tests/expectations/compiler/compiler/address/branch.leo.out +++ b/tests/expectations/compiler/compiler/address/branch.leo.out @@ -4,5 +4,5 @@ expectation: Pass outputs: - output: - initial_input_ast: c7315faf1ac3ceeb90260e64e4a411a27a8aa732892a64c15f49e81adf464beb - initial_ast: b80eed2960509f11bce6294687558fb7b907f1d83455287f944dfa981ebe1ec8 - symbol_table: 9d42b1d8f167826635e5169bc3a50c14f722fba8e5ce2480fbde3b8cf2e75237 + initial_ast: 767d8228dd9818cb115e7369cec91352dd406008981487380e863deb06dc11a0 + symbol_table: e8029086f943767e4f98014b3991bff8336cb6472c2d2dc3d51b4b13e5c72ea5 diff --git a/tests/expectations/compiler/compiler/address/equal.leo.out b/tests/expectations/compiler/compiler/address/equal.leo.out index 1502c75a07..17886d8101 100644 --- a/tests/expectations/compiler/compiler/address/equal.leo.out +++ b/tests/expectations/compiler/compiler/address/equal.leo.out @@ -5,5 +5,5 @@ outputs: - output: - initial_input_ast: dc6b4b00185dd6c1f2b83a1bfae619c1d6e3f68ac0f1d3d87ae3bd0ed5caf083 - initial_input_ast: 73a38568160c3d2be402043d04ccdc2290abe27647bc81c4bd50367834c206cf - initial_ast: 6514080a9452d6e193510250dec3b87081e0741d05cc59ca456f2b2f3f36ec72 - symbol_table: 7ec407fabcae0eeef889009b8ba99beac3d18b2d79cc49e7760261d80bd59728 + initial_ast: 31f3fdca173acafc69b0975e91e891bbb27bf6d63bdc986c86b4d22c70d928cc + symbol_table: 25f09247dfa86534ff321b8e1b2ca1666c92751d37a611d62e56b8cfac96261d diff --git a/tests/expectations/compiler/compiler/address/ternary.leo.out b/tests/expectations/compiler/compiler/address/ternary.leo.out index 9c8eff1233..249c936725 100644 --- a/tests/expectations/compiler/compiler/address/ternary.leo.out +++ b/tests/expectations/compiler/compiler/address/ternary.leo.out @@ -5,5 +5,5 @@ outputs: - output: - initial_input_ast: b6371958e735320861c84ed514f258ae8a9858b34615364b2f9ebbaa2aaadd8c - initial_input_ast: d384cfea1a36220e9ea4e246ece89d8fffa320f90aeeb85660bc445ab62a0829 - initial_ast: 7085f8bf0a01a4fd7b73b5e3fc1c2c812d0cd459a5b6ea85791fc3c01118c7a0 - symbol_table: 5a12f141aef86a7a00b86650e23cfd9af657d6f418df7b1ee9eab06714305d31 + initial_ast: d3a4a7e3effdc165649d9e1239ee983eb2385c4b93646472395a05f4df982ca2 + symbol_table: 5fddde57167344769d00e423fb56692291d57ac8c953c512b82a4626bbdcb6c9 diff --git a/tests/test-framework/src/runner.rs b/tests/test-framework/src/runner.rs index 48388e7f58..4f206301ef 100644 --- a/tests/test-framework/src/runner.rs +++ b/tests/test-framework/src/runner.rs @@ -113,21 +113,19 @@ impl TestCases { let mut configs = Vec::new(); self.tests = find_tests(&self.path_prefix.clone()) - .filter(|(path, content)| { - let config = match extract_test_config(content) { - None => { - self.fail_categories.push(TestFailure { - path: path.to_str().unwrap_or("").to_string(), - errors: vec![TestError::MissingTestConfig], - }); - return true; - } - Some(cfg) => cfg, - }; - - let res = additional_check(&config); - configs.push(config); - res + .filter(|(path, content)| match extract_test_config(content) { + None => { + self.fail_categories.push(TestFailure { + path: path.to_str().unwrap_or("").to_string(), + errors: vec![TestError::MissingTestConfig], + }); + true + } + Some(cfg) => { + let res = additional_check(&cfg); + configs.push(cfg); + res + } }) .collect(); @@ -155,12 +153,11 @@ impl TestCases { output.push(process(self, (path, content, &test_name, config))); - std::env::remove_var("LEO_TESTFRAMEWORK"); } output } - fn clear_expectations(&self, path: &Path, expectation_category: &str) -> (PathBuf, Option) { + fn load_expectations(&self, path: &Path, expectation_category: &str) -> (PathBuf, Option) { let test_dir = [env!("CARGO_MANIFEST_DIR"), "../../tests/"].iter().collect::(); let relative_path = path.strip_prefix(&test_dir).expect("path error for test"); let expectation_path = test_dir @@ -168,7 +165,7 @@ impl TestCases { .join(expectation_category) .join(relative_path.parent().expect("no parent dir for test")) .join(relative_path.file_name().expect("no file name for test")) - .with_extension("out"); + .with_extension("leo.out"); if expectation_path.exists() { if !is_env_var_set("CLEAR_LEO_TEST_EXPECTATIONS") { @@ -200,7 +197,7 @@ pub fn run_tests(runner: &T, expectation_category: &str) { None => return, }; - let (expectation_path, expectations) = cases.clear_expectations(path, expectation_category); + let (expectation_path, expectations) = cases.load_expectations(path, expectation_category); let tests = match namespace.parse_type() { ParseType::Line => crate::fetch::split_tests_one_line(content) @@ -267,6 +264,45 @@ pub fn run_tests(runner: &T, expectation_category: &str) { }) } }); + + if !cases.fail_categories.is_empty() { + for (i, fail) in cases.fail_categories.iter().enumerate() { + println!( + "\n\n-----------------TEST #{} FAILED (and shouldn't have)-----------------", + i + 1 + ); + println!("File: {}", fail.path); + for error in &fail.errors { + println!("{}", error); + } + } + panic!( + "failed {}/{} tests in {}/{} categories", + pass_tests, + fail_tests + pass_tests, + cases.fail_categories.len(), + cases.fail_categories.len() + pass_categories + ); + } else { + for (path, new_expectation) in outputs { + std::fs::create_dir_all(path.parent().unwrap()).expect("failed to make test expectation parent directory"); + std::fs::write( + &path, + serde_yaml::to_string(&new_expectation).expect("failed to serialize expectation yaml"), + ) + .expect("failed to write expectation file"); + } + println!( + "passed {}/{} tests in {}/{} categories", + pass_tests, + fail_tests + pass_tests, + pass_categories, + pass_categories + ); + } + + std::env::remove_var("LEO_TESTFRAMEWORK"); + } /// returns (name, content) for all benchmark samples From 4d07cd4722bdbddfac66fb5772120705937c3458 Mon Sep 17 00:00:00 2001 From: 0rphon <59403052+0rphon@users.noreply.github.com> Date: Wed, 15 Jun 2022 16:10:49 -0700 Subject: [PATCH 2/3] clippy --- tests/test-framework/src/runner.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test-framework/src/runner.rs b/tests/test-framework/src/runner.rs index 4f206301ef..de72df0886 100644 --- a/tests/test-framework/src/runner.rs +++ b/tests/test-framework/src/runner.rs @@ -152,7 +152,6 @@ impl TestCases { let content = &content[end_of_header + 2..]; output.push(process(self, (path, content, &test_name, config))); - } output } @@ -302,7 +301,6 @@ pub fn run_tests(runner: &T, expectation_category: &str) { } std::env::remove_var("LEO_TESTFRAMEWORK"); - } /// returns (name, content) for all benchmark samples From 0daffb267bf42c5a07395cce5b76cd14111659e6 Mon Sep 17 00:00:00 2001 From: 0rphon <59403052+0rphon@users.noreply.github.com> Date: Wed, 15 Jun 2022 16:19:20 -0700 Subject: [PATCH 3/3] reverted filename path --- .../compiler/compiler/address/{branch.leo.out => branch.out} | 0 .../compiler/compiler/address/{equal.leo.out => equal.out} | 0 .../compiler/compiler/address/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/boolean/{and.leo.out => and.out} | 0 .../compiler/boolean/{conditional.leo.out => conditional.out} | 0 .../compiler/compiler/boolean/{equal.leo.out => equal.out} | 0 .../compiler/boolean/{not_equal.leo.out => not_equal.out} | 0 .../compiler/compiler/boolean/{or.leo.out => or.out} | 0 .../compiler/char/{invalid_char.leo.out => invalid_char.out} | 0 .../compiler/compiler/char/{neq.leo.out => neq.out} | 0 .../compiler/compiler/char/{out.leo.out => out.out} | 0 .../compiler/compiler/char/{string.leo.out => string.out} | 0 .../compiler/compiler/console/{assert.leo.out => assert.out} | 0 .../{conditional_assert.leo.out => conditional_assert.out} | 0 .../compiler/compiler/console/{error.leo.out => error.out} | 0 .../compiler/compiler/console/{log.leo.out => log.out} | 0 .../console/{log_conditional.leo.out => log_conditional.out} | 0 .../compiler/console/{log_fail.leo.out => log_fail.out} | 0 .../compiler/console/{log_input.leo.out => log_input.out} | 0 .../console/{log_parameter.leo.out => log_parameter.out} | 0 .../{log_parameter_many.leo.out => log_parameter_many.out} | 0 ...ameter_unkown_fail.leo.out => log_parameter_unkown_fail.out} | 0 .../compiler/console/{log_string.leo.out => log_string.out} | 0 .../core/account/{compute_key.leo.out => compute_key.out} | 0 .../core/account/{private_key.leo.out => private_key.out} | 0 .../compiler/core/account/{record.leo.out => record.out} | 0 .../compiler/core/account/{signature.leo.out => signature.out} | 0 .../compiler/core/account/{view_key.leo.out => view_key.out} | 0 .../compiler/core/algorithms/{poseidon.leo.out => poseidon.out} | 0 ...id_input_ident_fail.leo.out => invalid_input_ident_fail.out} | 0 .../definition/{out_of_order.leo.out => out_of_order.out} | 0 ...assign_fail.leo.out => use_decl_variable_as_assign_fail.out} | 0 .../compiler/compiler/field/{add.leo.out => add.out} | 0 .../compiler/compiler/field/{div.leo.out => div.out} | 0 .../expectations/compiler/compiler/field/{eq.leo.out => eq.out} | 0 .../compiler/compiler/field/{field.leo.out => field.out} | 0 .../compiler/compiler/field/{mul.leo.out => mul.out} | 0 .../compiler/compiler/field/{negate.leo.out => negate.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/field/{pow_signed.leo.out => pow_signed.out} | 0 .../compiler/field/{pow_unsigned.leo.out => pow_unsigned.out} | 0 .../compiler/compiler/field/{sub.leo.out => sub.out} | 0 .../compiler/compiler/field/{ternary.leo.out => ternary.out} | 0 .../{conditional_return.leo.out => conditional_return.out} | 0 ...te_definition_fail.leo.out => duplicate_definition_fail.out} | 0 ...cate_parameter_fail.leo.out => duplicate_parameter_fail.out} | 0 .../compiler/function/{iteration.leo.out => iteration.out} | 0 .../{iteration_repeated.leo.out => iteration_repeated.out} | 0 .../function/{no_return_fail.leo.out => no_return_fail.out} | 0 .../compiler/function/{repeated.leo.out => repeated.out} | 0 .../compiler/compiler/function/{return.leo.out => return.out} | 0 .../compiler/function/{scope_fail.leo.out => scope_fail.out} | 0 ...h_input_fail.leo.out => shadow_function_with_input_fail.out} | 0 ...{shadow_parameter_fail.leo.out => shadow_parameter_fail.out} | 0 .../function/{undefined_fail.leo.out => undefined_fail.out} | 0 .../compiler/compiler/group/{add.leo.out => add.out} | 0 .../compiler/group/{assert_eq.leo.out => assert_eq.out} | 0 .../group/{both_sign_high.leo.out => both_sign_high.out} | 0 .../{both_sign_inferred.leo.out => both_sign_inferred.out} | 0 .../compiler/group/{both_sign_low.leo.out => both_sign_low.out} | 0 .../expectations/compiler/compiler/group/{eq.leo.out => eq.out} | 0 .../compiler/compiler/group/{input.leo.out => input.out} | 0 .../{mult_by_group_fail.leo.out => mult_by_group_fail.out} | 0 .../group/{mult_by_scalar.leo.out => mult_by_scalar.out} | 0 .../compiler/compiler/group/{negate.leo.out => negate.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/compiler/group/{one.leo.out => one.out} | 0 .../compiler/compiler/group/{point.leo.out => point.out} | 0 .../compiler/group/{point_input.leo.out => point_input.out} | 0 ...{positive_and_negative.leo.out => positive_and_negative.out} | 0 .../compiler/compiler/group/{sub.leo.out => sub.out} | 0 .../compiler/compiler/group/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/group/{x_and_y.leo.out => x_and_y.out} | 0 .../compiler/group/{x_sign_high.leo.out => x_sign_high.out} | 0 .../group/{x_sign_inferred.leo.out => x_sign_inferred.out} | 0 .../compiler/group/{x_sign_low.leo.out => x_sign_low.out} | 0 .../compiler/group/{y_sign_high.leo.out => y_sign_high.out} | 0 .../group/{y_sign_inferred.leo.out => y_sign_inferred.out} | 0 .../compiler/group/{y_sign_low.leo.out => y_sign_low.out} | 0 .../compiler/compiler/group/{zero.leo.out => zero.out} | 0 .../input_files/program_input/{main.leo.out => main.out} | 0 .../program_input/{main_field.leo.out => main_field.out} | 0 .../program_input/{main_group.leo.out => main_group.out} | 0 .../program_input_constants/{main.leo.out => main.out} | 0 .../{main_field.leo.out => main_field.out} | 0 .../{main_group.leo.out => main_group.out} | 0 .../{main_multiple.leo.out => main_multiple.out} | 0 .../compiler/compiler/integers/i128/{add.leo.out => add.out} | 0 .../i128/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/i128/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/i128/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/i128/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/i128/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/i128/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/i128/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/i128/{max.leo.out => max.out} | 0 .../compiler/integers/i128/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/i128/{min.leo.out => min.out} | 0 .../compiler/integers/i128/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/i128/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/i128/{ne.leo.out => ne.out} | 0 .../compiler/integers/i128/{negate.leo.out => negate.out} | 0 .../integers/i128/{negate_min.leo.out => negate_min.out} | 0 .../integers/i128/{negate_zero.leo.out => negate_zero.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/integers/i128/{pow_fail.leo.out => pow_fail.out} | 0 .../compiler/compiler/integers/i128/{sub.leo.out => sub.out} | 0 .../compiler/integers/i128/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/i16/{add.leo.out => add.out} | 0 .../integers/i16/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/i16/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/i16/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/i16/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/i16/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/i16/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/i16/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/i16/{max.leo.out => max.out} | 0 .../compiler/integers/i16/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/i16/{min.leo.out => min.out} | 0 .../compiler/integers/i16/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/i16/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/i16/{ne.leo.out => ne.out} | 0 .../compiler/integers/i16/{negate.leo.out => negate.out} | 0 .../i16/{negate_min_fail.leo.out => negate_min_fail.out} | 0 .../integers/i16/{negate_zero.leo.out => negate_zero.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/integers/i16/{pow_fail.leo.out => pow_fail.out} | 0 .../compiler/compiler/integers/i16/{sub.leo.out => sub.out} | 0 .../compiler/integers/i16/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/i32/{add.leo.out => add.out} | 0 .../integers/i32/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/i32/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/i32/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/i32/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/i32/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/i32/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/i32/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/i32/{max.leo.out => max.out} | 0 .../compiler/integers/i32/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/i32/{min.leo.out => min.out} | 0 .../compiler/integers/i32/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/i32/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/i32/{ne.leo.out => ne.out} | 0 .../compiler/integers/i32/{negate.leo.out => negate.out} | 0 .../integers/i32/{negate_min.leo.out => negate_min.out} | 0 .../integers/i32/{negate_zero.leo.out => negate_zero.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/integers/i32/{pow_fail.leo.out => pow_fail.out} | 0 .../compiler/compiler/integers/i32/{sub.leo.out => sub.out} | 0 .../compiler/integers/i32/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/i64/{add.leo.out => add.out} | 0 .../integers/i64/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/i64/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/i64/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/i64/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/i64/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/i64/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/i64/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/i64/{max.leo.out => max.out} | 0 .../compiler/integers/i64/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/i64/{min.leo.out => min.out} | 0 .../compiler/integers/i64/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/i64/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/i64/{ne.leo.out => ne.out} | 0 .../compiler/integers/i64/{negate.leo.out => negate.out} | 0 .../integers/i64/{negate_min.leo.out => negate_min.out} | 0 .../integers/i64/{negate_zero.leo.out => negate_zero.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/integers/i64/{pow_fail.leo.out => pow_fail.out} | 0 .../compiler/compiler/integers/i64/{sub.leo.out => sub.out} | 0 .../compiler/integers/i64/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/i8/{add.leo.out => add.out} | 0 .../integers/i8/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/i8/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/i8/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/i8/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/i8/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/i8/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/i8/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/i8/{max.leo.out => max.out} | 0 .../compiler/integers/i8/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/i8/{min.leo.out => min.out} | 0 .../compiler/integers/i8/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/i8/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/i8/{ne.leo.out => ne.out} | 0 .../compiler/integers/i8/{negate.leo.out => negate.out} | 0 .../compiler/integers/i8/{negate_min.leo.out => negate_min.out} | 0 .../integers/i8/{negate_zero.leo.out => negate_zero.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/integers/i8/{pow_fail.leo.out => pow_fail.out} | 0 .../compiler/compiler/integers/i8/{sub.leo.out => sub.out} | 0 .../compiler/integers/i8/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/u128/{add.leo.out => add.out} | 0 .../u128/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/u128/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/u128/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/u128/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/u128/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/u128/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/u128/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/u128/{max.leo.out => max.out} | 0 .../compiler/integers/u128/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/u128/{min.leo.out => min.out} | 0 .../compiler/integers/u128/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/u128/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/u128/{ne.leo.out => ne.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/compiler/integers/u128/{pow.leo.out => pow.out} | 0 .../compiler/compiler/integers/u128/{sub.leo.out => sub.out} | 0 .../compiler/integers/u128/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/u16/{add.leo.out => add.out} | 0 .../integers/u16/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/u16/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/u16/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/u16/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/u16/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/u16/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/u16/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/u16/{max.leo.out => max.out} | 0 .../compiler/integers/u16/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/u16/{min.leo.out => min.out} | 0 .../compiler/integers/u16/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/u16/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/u16/{ne.leo.out => ne.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/compiler/integers/u16/{pow.leo.out => pow.out} | 0 .../compiler/compiler/integers/u16/{sub.leo.out => sub.out} | 0 .../compiler/integers/u16/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/u32/{add.leo.out => add.out} | 0 .../integers/u32/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/u32/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/u32/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/u32/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/u32/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/u32/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/u32/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/u32/{max.leo.out => max.out} | 0 .../compiler/integers/u32/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/u32/{min.leo.out => min.out} | 0 .../compiler/integers/u32/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/u32/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/u32/{ne.leo.out => ne.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/compiler/integers/u32/{pow.leo.out => pow.out} | 0 .../compiler/compiler/integers/u32/{sub.leo.out => sub.out} | 0 .../compiler/integers/u32/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/u64/{add.leo.out => add.out} | 0 .../integers/u64/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/u64/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/u64/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/u64/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/u64/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/u64/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/u64/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/u64/{max.leo.out => max.out} | 0 .../compiler/integers/u64/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/u64/{min.leo.out => min.out} | 0 .../compiler/integers/u64/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/u64/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/u64/{ne.leo.out => ne.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/compiler/integers/u64/{pow.leo.out => pow.out} | 0 .../compiler/compiler/integers/u64/{sub.leo.out => sub.out} | 0 .../compiler/integers/u64/{ternary.leo.out => ternary.out} | 0 .../compiler/compiler/integers/u8/{add.leo.out => add.out} | 0 .../integers/u8/{console_assert.leo.out => console_assert.out} | 0 .../compiler/compiler/integers/u8/{div.leo.out => div.out} | 0 .../compiler/compiler/integers/u8/{eq.leo.out => eq.out} | 0 .../compiler/compiler/integers/u8/{ge.leo.out => ge.out} | 0 .../compiler/compiler/integers/u8/{gt.leo.out => gt.out} | 0 .../compiler/compiler/integers/u8/{le.leo.out => le.out} | 0 .../compiler/compiler/integers/u8/{lt.leo.out => lt.out} | 0 .../compiler/compiler/integers/u8/{max.leo.out => max.out} | 0 .../compiler/integers/u8/{max_fail.leo.out => max_fail.out} | 0 .../compiler/compiler/integers/u8/{min.leo.out => min.out} | 0 .../compiler/integers/u8/{min_fail.leo.out => min_fail.out} | 0 .../compiler/compiler/integers/u8/{mul.leo.out => mul.out} | 0 .../compiler/compiler/integers/u8/{ne.leo.out => ne.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/compiler/integers/u8/{pow.leo.out => pow.out} | 0 .../compiler/compiler/integers/u8/{sub.leo.out => sub.out} | 0 .../compiler/integers/u8/{ternary.leo.out => ternary.out} | 0 .../compiler/mutability/{cond_mut.leo.out => cond_mut.out} | 0 .../{function_input_mut.leo.out => function_input_mut.out} | 0 .../mutability/{let_mut_nested.leo.out => let_mut_nested.out} | 0 .../compiler/compiler/scalar/{add.leo.out => add.out} | 0 .../compiler/compiler/scalar/{cmp.leo.out => cmp.out} | 0 .../compiler/compiler/scalar/{div.leo.out => div.out} | 0 .../compiler/compiler/scalar/{eq.leo.out => eq.out} | 0 .../compiler/scalar/{group_mul.leo.out => group_mul.out} | 0 .../compiler/compiler/scalar/{mul.leo.out => mul.out} | 0 ...ace_between_literal.leo.out => no_space_between_literal.out} | 0 .../compiler/compiler/scalar/{scalar.leo.out => scalar.out} | 0 .../compiler/compiler/scalar/{ternary.leo.out => ternary.out} | 0 .../compiler/statements/{all_loops.leo.out => all_loops.out} | 0 .../statements/{all_loops_fail.leo.out => all_loops_fail.out} | 0 .../statements/{assign_ternary.leo.out => assign_ternary.out} | 0 .../compiler/compiler/statements/{block.leo.out => block.out} | 0 .../compiler/compiler/statements/{chain.leo.out => chain.out} | 0 ...pare_diff_types_fail.leo.out => compare_diff_types_fail.out} | 0 ...id_negates_fail.leo.out => compare_invalid_negates_fail.out} | 0 .../{duplicate_variable.leo.out => duplicate_variable.out} | 0 .../compiler/statements/{for_loop.leo.out => for_loop.out} | 0 .../statements/{iteration_basic.leo.out => iteration_basic.out} | 0 .../{iteration_variable.leo.out => iteration_variable.out} | 0 .../{multiple_returns.leo.out => multiple_returns.out} | 0 .../compiler/compiler/statements/{mutate.leo.out => mutate.out} | 0 ...stant_var_exp_fail.leo.out => non_existant_var_exp_fail.out} | 0 ...ant_vars_mul_fail.leo.out => non_existant_vars_mul_fail.out} | 0 ...t_and_implicit.leo.out => ternary_explicit_and_implicit.out} | 0 .../parser/parser/expression/access/{call.leo.out => call.out} | 0 .../expression/{array_init_fail.leo.out => array_init_fail.out} | 0 .../{array_inline_fail.leo.out => array_inline_fail.out} | 0 .../parser/parser/expression/binary/{add.leo.out => add.out} | 0 .../parser/parser/expression/binary/{and.leo.out => and.out} | 0 .../parser/parser/expression/binary/{div.leo.out => div.out} | 0 .../parser/parser/expression/binary/{eq.leo.out => eq.out} | 0 .../parser/expression/binary/{eq_fail.leo.out => eq_fail.out} | 0 .../parser/parser/expression/binary/{exp.leo.out => exp.out} | 0 .../parser/parser/expression/binary/{gt.leo.out => gt.out} | 0 .../parser/expression/binary/{gt_fail.leo.out => gt_fail.out} | 0 .../parser/parser/expression/binary/{gte.leo.out => gte.out} | 0 .../parser/expression/binary/{gte_fail.leo.out => gte_fail.out} | 0 .../parser/parser/expression/binary/{lt.leo.out => lt.out} | 0 .../parser/expression/binary/{lt_fail.leo.out => lt_fail.out} | 0 .../parser/parser/expression/binary/{lte.leo.out => lte.out} | 0 .../parser/expression/binary/{lte_fail.leo.out => lte_fail.out} | 0 .../parser/parser/expression/binary/{mul.leo.out => mul.out} | 0 .../parser/parser/expression/binary/{ne.leo.out => ne.out} | 0 .../parser/expression/binary/{ne_fail.leo.out => ne_fail.out} | 0 .../parser/parser/expression/binary/{or.leo.out => or.out} | 0 .../parser/parser/expression/binary/{sub.leo.out => sub.out} | 0 .../{circuit_init_fail.leo.out => circuit_init_fail.out} | 0 .../parser/parser/expression/{ident.leo.out => ident.out} | 0 .../parser/expression/literal/{address.leo.out => address.out} | 0 .../literal/{address_fail.leo.out => address_fail.out} | 0 .../literal/{address_parse.leo.out => address_parse.out} | 0 .../parser/parser/expression/literal/{bool.leo.out => bool.out} | 0 .../expression/literal/{bool_parse.leo.out => bool_parse.out} | 0 .../parser/parser/expression/literal/{char.leo.out => char.out} | 0 .../expression/literal/{char_fail.leo.out => char_fail.out} | 0 .../expression/literal/{char_parse.leo.out => char_parse.out} | 0 .../parser/expression/literal/{comment.leo.out => comment.out} | 0 .../literal/{comment_fail.leo.out => comment_fail.out} | 0 .../literal/{formatted_string.leo.out => formatted_string.out} | 0 .../parser/expression/literal/{group.leo.out => group.out} | 0 .../expression/literal/{group_fail.leo.out => group_fail.out} | 0 .../parser/parser/expression/literal/{int.leo.out => int.out} | 0 .../expression/literal/{int_fail.leo.out => int_fail.out} | 0 .../expression/literal/int_parse/{field.leo.out => field.out} | 0 .../literal/int_parse/{field_fail.leo.out => field_fail.out} | 0 .../expression/literal/int_parse/{i128.leo.out => i128.out} | 0 .../expression/literal/int_parse/{i16.leo.out => i16.out} | 0 .../expression/literal/int_parse/{i32.leo.out => i32.out} | 0 .../expression/literal/int_parse/{i64.leo.out => i64.out} | 0 .../parser/expression/literal/int_parse/{i8.leo.out => i8.out} | 0 .../literal/int_parse/{implicit.leo.out => implicit.out} | 0 .../literal/int_parse/{mono_group.leo.out => mono_group.out} | 0 .../expression/literal/int_parse/{scalar.leo.out => scalar.out} | 0 .../expression/literal/int_parse/{u128.leo.out => u128.out} | 0 .../expression/literal/int_parse/{u16.leo.out => u16.out} | 0 .../expression/literal/int_parse/{u32.leo.out => u32.out} | 0 .../expression/literal/int_parse/{u64.leo.out => u64.out} | 0 .../parser/expression/literal/int_parse/{u8.leo.out => u8.out} | 0 .../literal/{postfix_types.leo.out => postfix_types.out} | 0 .../parser/expression/literal/{string.leo.out => string.out} | 0 .../expression/literal/{string_fail.leo.out => string_fail.out} | 0 .../parser/parser/expression/{ternary.leo.out => ternary.out} | 0 .../expression/{token_format.leo.out => token_format.out} | 0 .../parser/expression/unary/{negate.leo.out => negate.out} | 0 .../parser/parser/expression/unary/{not.leo.out => not.out} | 0 ...otated_arg_not_ident.leo.out => annotated_arg_not_ident.out} | 0 ...nnotated_context_fail.leo.out => annotated_context_fail.out} | 0 .../{bounded_recursion.leo.out => bounded_recursion.out} | 0 .../parser/functions/{const_input.leo.out => const_input.out} | 0 .../parser/functions/{const_param.leo.out => const_param.out} | 0 ...st_public_param_fail.leo.out => const_public_param_fail.out} | 0 .../parser/parser/functions/{empty2.leo.out => empty2.out} | 0 .../parser/functions/{escape_fail.leo.out => escape_fail.out} | 0 .../{ident_token_fail.leo.out => ident_token_fail.out} | 0 .../{infinite_recursion.leo.out => infinite_recursion.out} | 0 .../functions/{mut_input_fail.leo.out => mut_input_fail.out} | 0 .../parser/parser/functions/{params.leo.out => params.out} | 0 .../functions/{params_return.leo.out => params_return.out} | 0 ...lic_const_param_fail.leo.out => public_const_param_fail.out} | 0 .../parser/functions/{public_param.leo.out => public_param.out} | 0 .../parser/parser/functions/{return.leo.out => return.out} | 0 .../{test_keyword_fail.leo.out => test_keyword_fail.out} | 0 .../parser/inputs/{input_const.leo.out => input_const.out} | 0 .../inputs/{input_constant.leo.out => input_constant.out} | 0 ...stant_public_fail.leo.out => input_constant_public_fail.out} | 0 .../parser/parser/inputs/{input_fail.leo.out => input_fail.out} | 0 .../parser/inputs/{input_public.leo.out => input_public.out} | 0 ...lic_constant_fail.leo.out => input_public_constant_fail.out} | 0 .../parser/program/{backslash_eof.leo.out => backslash_eof.out} | 0 .../{bidi_comment_2_fail.leo.out => bidi_comment_2_fail.out} | 0 .../{bidi_comment_fail.leo.out => bidi_comment_fail.out} | 0 .../parser/program/{dollar_eof.leo.out => dollar_eof.out} | 0 .../parser/program/{escape_u8_eof.leo.out => escape_u8_eof.out} | 0 .../parser/parser/program/{hex_eof.leo.out => hex_eof.out} | 0 .../parser/parser/program/{pipe_eof.leo.out => pipe_eof.out} | 0 .../parser/parser/program/{q_eof.leo.out => q_eof.out} | 0 .../parser/parser/program/{sq_eof.leo.out => sq_eof.out} | 0 .../parser/parser/program/{tilde_eof.leo.out => tilde_eof.out} | 0 ...d_unicode_eof_fail.leo.out => unclosed_unicode_eof_fail.out} | 0 .../parser/serialize/{one_plus_one.leo.out => one_plus_one.out} | 0 .../parser/serialize/{parser_error.leo.out => parser_error.out} | 0 .../parser/parser/statement/{assign.leo.out => assign.out} | 0 .../parser/statement/{assign_fail.leo.out => assign_fail.out} | 0 .../parser/parser/statement/{block.leo.out => block.out} | 0 .../parser/statement/{conditional.leo.out => conditional.out} | 0 .../{conditional_fail.leo.out => conditional_fail.out} | 0 .../parser/parser/statement/{console.leo.out => console.out} | 0 .../parser/statement/{console_fail.leo.out => console_fail.out} | 0 .../parser/statement/{definition.leo.out => definition.out} | 0 .../statement/{definition_fail.leo.out => definition_fail.out} | 0 .../parser/statement/{expression.leo.out => expression.out} | 0 .../statement/{expression_fail.leo.out => expression_fail.out} | 0 .../parser/statement/{hex_int_fail.leo.out => hex_int_fail.out} | 0 .../parser/statement/{iteration.leo.out => iteration.out} | 0 .../statement/{let_mut_recover.leo.out => let_mut_recover.out} | 0 .../parser/parser/statement/{return.leo.out => return.out} | 0 .../parser/statement/{return_fail.leo.out => return_fail.out} | 0 .../parser/parser/unreachable/{define.leo.out => define.out} | 0 .../parser/unreachable/{eat_ident.leo.out => eat_ident.out} | 0 .../parser/parser/unreachable/{eat_int.leo.out => eat_int.out} | 0 ...der_expression.leo.out => equality_and_order_expression.out} | 0 .../unreachable/{expect_ident.leo.out => expect_ident.out} | 0 .../unreachable/{math_op_fail.leo.out => math_op_fail.out} | 0 .../unreachable/{math_op_pass.leo.out => math_op_pass.out} | 0 .../unreachable/{postfix_fail.leo.out => postfix_fail.out} | 0 .../unreachable/{postfix_pass.leo.out => postfix_pass.out} | 0 tests/test-framework/src/runner.rs | 2 +- 433 files changed, 1 insertion(+), 1 deletion(-) rename tests/expectations/compiler/compiler/address/{branch.leo.out => branch.out} (100%) rename tests/expectations/compiler/compiler/address/{equal.leo.out => equal.out} (100%) rename tests/expectations/compiler/compiler/address/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/boolean/{and.leo.out => and.out} (100%) rename tests/expectations/compiler/compiler/boolean/{conditional.leo.out => conditional.out} (100%) rename tests/expectations/compiler/compiler/boolean/{equal.leo.out => equal.out} (100%) rename tests/expectations/compiler/compiler/boolean/{not_equal.leo.out => not_equal.out} (100%) rename tests/expectations/compiler/compiler/boolean/{or.leo.out => or.out} (100%) rename tests/expectations/compiler/compiler/char/{invalid_char.leo.out => invalid_char.out} (100%) rename tests/expectations/compiler/compiler/char/{neq.leo.out => neq.out} (100%) rename tests/expectations/compiler/compiler/char/{out.leo.out => out.out} (100%) rename tests/expectations/compiler/compiler/char/{string.leo.out => string.out} (100%) rename tests/expectations/compiler/compiler/console/{assert.leo.out => assert.out} (100%) rename tests/expectations/compiler/compiler/console/{conditional_assert.leo.out => conditional_assert.out} (100%) rename tests/expectations/compiler/compiler/console/{error.leo.out => error.out} (100%) rename tests/expectations/compiler/compiler/console/{log.leo.out => log.out} (100%) rename tests/expectations/compiler/compiler/console/{log_conditional.leo.out => log_conditional.out} (100%) rename tests/expectations/compiler/compiler/console/{log_fail.leo.out => log_fail.out} (100%) rename tests/expectations/compiler/compiler/console/{log_input.leo.out => log_input.out} (100%) rename tests/expectations/compiler/compiler/console/{log_parameter.leo.out => log_parameter.out} (100%) rename tests/expectations/compiler/compiler/console/{log_parameter_many.leo.out => log_parameter_many.out} (100%) rename tests/expectations/compiler/compiler/console/{log_parameter_unkown_fail.leo.out => log_parameter_unkown_fail.out} (100%) rename tests/expectations/compiler/compiler/console/{log_string.leo.out => log_string.out} (100%) rename tests/expectations/compiler/compiler/core/account/{compute_key.leo.out => compute_key.out} (100%) rename tests/expectations/compiler/compiler/core/account/{private_key.leo.out => private_key.out} (100%) rename tests/expectations/compiler/compiler/core/account/{record.leo.out => record.out} (100%) rename tests/expectations/compiler/compiler/core/account/{signature.leo.out => signature.out} (100%) rename tests/expectations/compiler/compiler/core/account/{view_key.leo.out => view_key.out} (100%) rename tests/expectations/compiler/compiler/core/algorithms/{poseidon.leo.out => poseidon.out} (100%) rename tests/expectations/compiler/compiler/core/{invalid_input_ident_fail.leo.out => invalid_input_ident_fail.out} (100%) rename tests/expectations/compiler/compiler/definition/{out_of_order.leo.out => out_of_order.out} (100%) rename tests/expectations/compiler/compiler/definition/{use_decl_variable_as_assign_fail.leo.out => use_decl_variable_as_assign_fail.out} (100%) rename tests/expectations/compiler/compiler/field/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/field/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/field/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/field/{field.leo.out => field.out} (100%) rename tests/expectations/compiler/compiler/field/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/field/{negate.leo.out => negate.out} (100%) rename tests/expectations/compiler/compiler/field/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/field/{pow_signed.leo.out => pow_signed.out} (100%) rename tests/expectations/compiler/compiler/field/{pow_unsigned.leo.out => pow_unsigned.out} (100%) rename tests/expectations/compiler/compiler/field/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/field/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/function/{conditional_return.leo.out => conditional_return.out} (100%) rename tests/expectations/compiler/compiler/function/{duplicate_definition_fail.leo.out => duplicate_definition_fail.out} (100%) rename tests/expectations/compiler/compiler/function/{duplicate_parameter_fail.leo.out => duplicate_parameter_fail.out} (100%) rename tests/expectations/compiler/compiler/function/{iteration.leo.out => iteration.out} (100%) rename tests/expectations/compiler/compiler/function/{iteration_repeated.leo.out => iteration_repeated.out} (100%) rename tests/expectations/compiler/compiler/function/{no_return_fail.leo.out => no_return_fail.out} (100%) rename tests/expectations/compiler/compiler/function/{repeated.leo.out => repeated.out} (100%) rename tests/expectations/compiler/compiler/function/{return.leo.out => return.out} (100%) rename tests/expectations/compiler/compiler/function/{scope_fail.leo.out => scope_fail.out} (100%) rename tests/expectations/compiler/compiler/function/{shadow_function_with_input_fail.leo.out => shadow_function_with_input_fail.out} (100%) rename tests/expectations/compiler/compiler/function/{shadow_parameter_fail.leo.out => shadow_parameter_fail.out} (100%) rename tests/expectations/compiler/compiler/function/{undefined_fail.leo.out => undefined_fail.out} (100%) rename tests/expectations/compiler/compiler/group/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/group/{assert_eq.leo.out => assert_eq.out} (100%) rename tests/expectations/compiler/compiler/group/{both_sign_high.leo.out => both_sign_high.out} (100%) rename tests/expectations/compiler/compiler/group/{both_sign_inferred.leo.out => both_sign_inferred.out} (100%) rename tests/expectations/compiler/compiler/group/{both_sign_low.leo.out => both_sign_low.out} (100%) rename tests/expectations/compiler/compiler/group/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/group/{input.leo.out => input.out} (100%) rename tests/expectations/compiler/compiler/group/{mult_by_group_fail.leo.out => mult_by_group_fail.out} (100%) rename tests/expectations/compiler/compiler/group/{mult_by_scalar.leo.out => mult_by_scalar.out} (100%) rename tests/expectations/compiler/compiler/group/{negate.leo.out => negate.out} (100%) rename tests/expectations/compiler/compiler/group/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/group/{one.leo.out => one.out} (100%) rename tests/expectations/compiler/compiler/group/{point.leo.out => point.out} (100%) rename tests/expectations/compiler/compiler/group/{point_input.leo.out => point_input.out} (100%) rename tests/expectations/compiler/compiler/group/{positive_and_negative.leo.out => positive_and_negative.out} (100%) rename tests/expectations/compiler/compiler/group/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/group/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/group/{x_and_y.leo.out => x_and_y.out} (100%) rename tests/expectations/compiler/compiler/group/{x_sign_high.leo.out => x_sign_high.out} (100%) rename tests/expectations/compiler/compiler/group/{x_sign_inferred.leo.out => x_sign_inferred.out} (100%) rename tests/expectations/compiler/compiler/group/{x_sign_low.leo.out => x_sign_low.out} (100%) rename tests/expectations/compiler/compiler/group/{y_sign_high.leo.out => y_sign_high.out} (100%) rename tests/expectations/compiler/compiler/group/{y_sign_inferred.leo.out => y_sign_inferred.out} (100%) rename tests/expectations/compiler/compiler/group/{y_sign_low.leo.out => y_sign_low.out} (100%) rename tests/expectations/compiler/compiler/group/{zero.leo.out => zero.out} (100%) rename tests/expectations/compiler/compiler/input_files/program_input/{main.leo.out => main.out} (100%) rename tests/expectations/compiler/compiler/input_files/program_input/{main_field.leo.out => main_field.out} (100%) rename tests/expectations/compiler/compiler/input_files/program_input/{main_group.leo.out => main_group.out} (100%) rename tests/expectations/compiler/compiler/input_files/program_input_constants/{main.leo.out => main.out} (100%) rename tests/expectations/compiler/compiler/input_files/program_input_constants/{main_field.leo.out => main_field.out} (100%) rename tests/expectations/compiler/compiler/input_files/program_input_constants/{main_group.leo.out => main_group.out} (100%) rename tests/expectations/compiler/compiler/input_files/program_input_constants/{main_multiple.leo.out => main_multiple.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{negate.leo.out => negate.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{negate_min.leo.out => negate_min.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{negate_zero.leo.out => negate_zero.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{pow_fail.leo.out => pow_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/i128/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{negate.leo.out => negate.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{negate_min_fail.leo.out => negate_min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{negate_zero.leo.out => negate_zero.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{pow_fail.leo.out => pow_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/i16/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{negate.leo.out => negate.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{negate_min.leo.out => negate_min.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{negate_zero.leo.out => negate_zero.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{pow_fail.leo.out => pow_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/i32/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{negate.leo.out => negate.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{negate_min.leo.out => negate_min.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{negate_zero.leo.out => negate_zero.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{pow_fail.leo.out => pow_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/i64/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{negate.leo.out => negate.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{negate_min.leo.out => negate_min.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{negate_zero.leo.out => negate_zero.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{pow_fail.leo.out => pow_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/i8/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{pow.leo.out => pow.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/u128/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{pow.leo.out => pow.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/u16/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{pow.leo.out => pow.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/u32/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{pow.leo.out => pow.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/u64/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{console_assert.leo.out => console_assert.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{ge.leo.out => ge.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{gt.leo.out => gt.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{le.leo.out => le.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{lt.leo.out => lt.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{max.leo.out => max.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{max_fail.leo.out => max_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{min.leo.out => min.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{min_fail.leo.out => min_fail.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{ne.leo.out => ne.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{pow.leo.out => pow.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{sub.leo.out => sub.out} (100%) rename tests/expectations/compiler/compiler/integers/u8/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/mutability/{cond_mut.leo.out => cond_mut.out} (100%) rename tests/expectations/compiler/compiler/mutability/{function_input_mut.leo.out => function_input_mut.out} (100%) rename tests/expectations/compiler/compiler/mutability/{let_mut_nested.leo.out => let_mut_nested.out} (100%) rename tests/expectations/compiler/compiler/scalar/{add.leo.out => add.out} (100%) rename tests/expectations/compiler/compiler/scalar/{cmp.leo.out => cmp.out} (100%) rename tests/expectations/compiler/compiler/scalar/{div.leo.out => div.out} (100%) rename tests/expectations/compiler/compiler/scalar/{eq.leo.out => eq.out} (100%) rename tests/expectations/compiler/compiler/scalar/{group_mul.leo.out => group_mul.out} (100%) rename tests/expectations/compiler/compiler/scalar/{mul.leo.out => mul.out} (100%) rename tests/expectations/compiler/compiler/scalar/{no_space_between_literal.leo.out => no_space_between_literal.out} (100%) rename tests/expectations/compiler/compiler/scalar/{scalar.leo.out => scalar.out} (100%) rename tests/expectations/compiler/compiler/scalar/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/compiler/compiler/statements/{all_loops.leo.out => all_loops.out} (100%) rename tests/expectations/compiler/compiler/statements/{all_loops_fail.leo.out => all_loops_fail.out} (100%) rename tests/expectations/compiler/compiler/statements/{assign_ternary.leo.out => assign_ternary.out} (100%) rename tests/expectations/compiler/compiler/statements/{block.leo.out => block.out} (100%) rename tests/expectations/compiler/compiler/statements/{chain.leo.out => chain.out} (100%) rename tests/expectations/compiler/compiler/statements/{compare_diff_types_fail.leo.out => compare_diff_types_fail.out} (100%) rename tests/expectations/compiler/compiler/statements/{compare_invalid_negates_fail.leo.out => compare_invalid_negates_fail.out} (100%) rename tests/expectations/compiler/compiler/statements/{duplicate_variable.leo.out => duplicate_variable.out} (100%) rename tests/expectations/compiler/compiler/statements/{for_loop.leo.out => for_loop.out} (100%) rename tests/expectations/compiler/compiler/statements/{iteration_basic.leo.out => iteration_basic.out} (100%) rename tests/expectations/compiler/compiler/statements/{iteration_variable.leo.out => iteration_variable.out} (100%) rename tests/expectations/compiler/compiler/statements/{multiple_returns.leo.out => multiple_returns.out} (100%) rename tests/expectations/compiler/compiler/statements/{mutate.leo.out => mutate.out} (100%) rename tests/expectations/compiler/compiler/statements/{non_existant_var_exp_fail.leo.out => non_existant_var_exp_fail.out} (100%) rename tests/expectations/compiler/compiler/statements/{non_existant_vars_mul_fail.leo.out => non_existant_vars_mul_fail.out} (100%) rename tests/expectations/compiler/compiler/statements/{ternary_explicit_and_implicit.leo.out => ternary_explicit_and_implicit.out} (100%) rename tests/expectations/parser/parser/expression/access/{call.leo.out => call.out} (100%) rename tests/expectations/parser/parser/expression/{array_init_fail.leo.out => array_init_fail.out} (100%) rename tests/expectations/parser/parser/expression/{array_inline_fail.leo.out => array_inline_fail.out} (100%) rename tests/expectations/parser/parser/expression/binary/{add.leo.out => add.out} (100%) rename tests/expectations/parser/parser/expression/binary/{and.leo.out => and.out} (100%) rename tests/expectations/parser/parser/expression/binary/{div.leo.out => div.out} (100%) rename tests/expectations/parser/parser/expression/binary/{eq.leo.out => eq.out} (100%) rename tests/expectations/parser/parser/expression/binary/{eq_fail.leo.out => eq_fail.out} (100%) rename tests/expectations/parser/parser/expression/binary/{exp.leo.out => exp.out} (100%) rename tests/expectations/parser/parser/expression/binary/{gt.leo.out => gt.out} (100%) rename tests/expectations/parser/parser/expression/binary/{gt_fail.leo.out => gt_fail.out} (100%) rename tests/expectations/parser/parser/expression/binary/{gte.leo.out => gte.out} (100%) rename tests/expectations/parser/parser/expression/binary/{gte_fail.leo.out => gte_fail.out} (100%) rename tests/expectations/parser/parser/expression/binary/{lt.leo.out => lt.out} (100%) rename tests/expectations/parser/parser/expression/binary/{lt_fail.leo.out => lt_fail.out} (100%) rename tests/expectations/parser/parser/expression/binary/{lte.leo.out => lte.out} (100%) rename tests/expectations/parser/parser/expression/binary/{lte_fail.leo.out => lte_fail.out} (100%) rename tests/expectations/parser/parser/expression/binary/{mul.leo.out => mul.out} (100%) rename tests/expectations/parser/parser/expression/binary/{ne.leo.out => ne.out} (100%) rename tests/expectations/parser/parser/expression/binary/{ne_fail.leo.out => ne_fail.out} (100%) rename tests/expectations/parser/parser/expression/binary/{or.leo.out => or.out} (100%) rename tests/expectations/parser/parser/expression/binary/{sub.leo.out => sub.out} (100%) rename tests/expectations/parser/parser/expression/{circuit_init_fail.leo.out => circuit_init_fail.out} (100%) rename tests/expectations/parser/parser/expression/{ident.leo.out => ident.out} (100%) rename tests/expectations/parser/parser/expression/literal/{address.leo.out => address.out} (100%) rename tests/expectations/parser/parser/expression/literal/{address_fail.leo.out => address_fail.out} (100%) rename tests/expectations/parser/parser/expression/literal/{address_parse.leo.out => address_parse.out} (100%) rename tests/expectations/parser/parser/expression/literal/{bool.leo.out => bool.out} (100%) rename tests/expectations/parser/parser/expression/literal/{bool_parse.leo.out => bool_parse.out} (100%) rename tests/expectations/parser/parser/expression/literal/{char.leo.out => char.out} (100%) rename tests/expectations/parser/parser/expression/literal/{char_fail.leo.out => char_fail.out} (100%) rename tests/expectations/parser/parser/expression/literal/{char_parse.leo.out => char_parse.out} (100%) rename tests/expectations/parser/parser/expression/literal/{comment.leo.out => comment.out} (100%) rename tests/expectations/parser/parser/expression/literal/{comment_fail.leo.out => comment_fail.out} (100%) rename tests/expectations/parser/parser/expression/literal/{formatted_string.leo.out => formatted_string.out} (100%) rename tests/expectations/parser/parser/expression/literal/{group.leo.out => group.out} (100%) rename tests/expectations/parser/parser/expression/literal/{group_fail.leo.out => group_fail.out} (100%) rename tests/expectations/parser/parser/expression/literal/{int.leo.out => int.out} (100%) rename tests/expectations/parser/parser/expression/literal/{int_fail.leo.out => int_fail.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{field.leo.out => field.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{field_fail.leo.out => field_fail.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{i128.leo.out => i128.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{i16.leo.out => i16.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{i32.leo.out => i32.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{i64.leo.out => i64.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{i8.leo.out => i8.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{implicit.leo.out => implicit.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{mono_group.leo.out => mono_group.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{scalar.leo.out => scalar.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{u128.leo.out => u128.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{u16.leo.out => u16.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{u32.leo.out => u32.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{u64.leo.out => u64.out} (100%) rename tests/expectations/parser/parser/expression/literal/int_parse/{u8.leo.out => u8.out} (100%) rename tests/expectations/parser/parser/expression/literal/{postfix_types.leo.out => postfix_types.out} (100%) rename tests/expectations/parser/parser/expression/literal/{string.leo.out => string.out} (100%) rename tests/expectations/parser/parser/expression/literal/{string_fail.leo.out => string_fail.out} (100%) rename tests/expectations/parser/parser/expression/{ternary.leo.out => ternary.out} (100%) rename tests/expectations/parser/parser/expression/{token_format.leo.out => token_format.out} (100%) rename tests/expectations/parser/parser/expression/unary/{negate.leo.out => negate.out} (100%) rename tests/expectations/parser/parser/expression/unary/{not.leo.out => not.out} (100%) rename tests/expectations/parser/parser/functions/{annotated_arg_not_ident.leo.out => annotated_arg_not_ident.out} (100%) rename tests/expectations/parser/parser/functions/{annotated_context_fail.leo.out => annotated_context_fail.out} (100%) rename tests/expectations/parser/parser/functions/{bounded_recursion.leo.out => bounded_recursion.out} (100%) rename tests/expectations/parser/parser/functions/{const_input.leo.out => const_input.out} (100%) rename tests/expectations/parser/parser/functions/{const_param.leo.out => const_param.out} (100%) rename tests/expectations/parser/parser/functions/{const_public_param_fail.leo.out => const_public_param_fail.out} (100%) rename tests/expectations/parser/parser/functions/{empty2.leo.out => empty2.out} (100%) rename tests/expectations/parser/parser/functions/{escape_fail.leo.out => escape_fail.out} (100%) rename tests/expectations/parser/parser/functions/{ident_token_fail.leo.out => ident_token_fail.out} (100%) rename tests/expectations/parser/parser/functions/{infinite_recursion.leo.out => infinite_recursion.out} (100%) rename tests/expectations/parser/parser/functions/{mut_input_fail.leo.out => mut_input_fail.out} (100%) rename tests/expectations/parser/parser/functions/{params.leo.out => params.out} (100%) rename tests/expectations/parser/parser/functions/{params_return.leo.out => params_return.out} (100%) rename tests/expectations/parser/parser/functions/{public_const_param_fail.leo.out => public_const_param_fail.out} (100%) rename tests/expectations/parser/parser/functions/{public_param.leo.out => public_param.out} (100%) rename tests/expectations/parser/parser/functions/{return.leo.out => return.out} (100%) rename tests/expectations/parser/parser/functions/{test_keyword_fail.leo.out => test_keyword_fail.out} (100%) rename tests/expectations/parser/parser/inputs/{input_const.leo.out => input_const.out} (100%) rename tests/expectations/parser/parser/inputs/{input_constant.leo.out => input_constant.out} (100%) rename tests/expectations/parser/parser/inputs/{input_constant_public_fail.leo.out => input_constant_public_fail.out} (100%) rename tests/expectations/parser/parser/inputs/{input_fail.leo.out => input_fail.out} (100%) rename tests/expectations/parser/parser/inputs/{input_public.leo.out => input_public.out} (100%) rename tests/expectations/parser/parser/inputs/{input_public_constant_fail.leo.out => input_public_constant_fail.out} (100%) rename tests/expectations/parser/parser/program/{backslash_eof.leo.out => backslash_eof.out} (100%) rename tests/expectations/parser/parser/program/{bidi_comment_2_fail.leo.out => bidi_comment_2_fail.out} (100%) rename tests/expectations/parser/parser/program/{bidi_comment_fail.leo.out => bidi_comment_fail.out} (100%) rename tests/expectations/parser/parser/program/{dollar_eof.leo.out => dollar_eof.out} (100%) rename tests/expectations/parser/parser/program/{escape_u8_eof.leo.out => escape_u8_eof.out} (100%) rename tests/expectations/parser/parser/program/{hex_eof.leo.out => hex_eof.out} (100%) rename tests/expectations/parser/parser/program/{pipe_eof.leo.out => pipe_eof.out} (100%) rename tests/expectations/parser/parser/program/{q_eof.leo.out => q_eof.out} (100%) rename tests/expectations/parser/parser/program/{sq_eof.leo.out => sq_eof.out} (100%) rename tests/expectations/parser/parser/program/{tilde_eof.leo.out => tilde_eof.out} (100%) rename tests/expectations/parser/parser/program/{unclosed_unicode_eof_fail.leo.out => unclosed_unicode_eof_fail.out} (100%) rename tests/expectations/parser/parser/serialize/{one_plus_one.leo.out => one_plus_one.out} (100%) rename tests/expectations/parser/parser/serialize/{parser_error.leo.out => parser_error.out} (100%) rename tests/expectations/parser/parser/statement/{assign.leo.out => assign.out} (100%) rename tests/expectations/parser/parser/statement/{assign_fail.leo.out => assign_fail.out} (100%) rename tests/expectations/parser/parser/statement/{block.leo.out => block.out} (100%) rename tests/expectations/parser/parser/statement/{conditional.leo.out => conditional.out} (100%) rename tests/expectations/parser/parser/statement/{conditional_fail.leo.out => conditional_fail.out} (100%) rename tests/expectations/parser/parser/statement/{console.leo.out => console.out} (100%) rename tests/expectations/parser/parser/statement/{console_fail.leo.out => console_fail.out} (100%) rename tests/expectations/parser/parser/statement/{definition.leo.out => definition.out} (100%) rename tests/expectations/parser/parser/statement/{definition_fail.leo.out => definition_fail.out} (100%) rename tests/expectations/parser/parser/statement/{expression.leo.out => expression.out} (100%) rename tests/expectations/parser/parser/statement/{expression_fail.leo.out => expression_fail.out} (100%) rename tests/expectations/parser/parser/statement/{hex_int_fail.leo.out => hex_int_fail.out} (100%) rename tests/expectations/parser/parser/statement/{iteration.leo.out => iteration.out} (100%) rename tests/expectations/parser/parser/statement/{let_mut_recover.leo.out => let_mut_recover.out} (100%) rename tests/expectations/parser/parser/statement/{return.leo.out => return.out} (100%) rename tests/expectations/parser/parser/statement/{return_fail.leo.out => return_fail.out} (100%) rename tests/expectations/parser/parser/unreachable/{define.leo.out => define.out} (100%) rename tests/expectations/parser/parser/unreachable/{eat_ident.leo.out => eat_ident.out} (100%) rename tests/expectations/parser/parser/unreachable/{eat_int.leo.out => eat_int.out} (100%) rename tests/expectations/parser/parser/unreachable/{equality_and_order_expression.leo.out => equality_and_order_expression.out} (100%) rename tests/expectations/parser/parser/unreachable/{expect_ident.leo.out => expect_ident.out} (100%) rename tests/expectations/parser/parser/unreachable/{math_op_fail.leo.out => math_op_fail.out} (100%) rename tests/expectations/parser/parser/unreachable/{math_op_pass.leo.out => math_op_pass.out} (100%) rename tests/expectations/parser/parser/unreachable/{postfix_fail.leo.out => postfix_fail.out} (100%) rename tests/expectations/parser/parser/unreachable/{postfix_pass.leo.out => postfix_pass.out} (100%) diff --git a/tests/expectations/compiler/compiler/address/branch.leo.out b/tests/expectations/compiler/compiler/address/branch.out similarity index 100% rename from tests/expectations/compiler/compiler/address/branch.leo.out rename to tests/expectations/compiler/compiler/address/branch.out diff --git a/tests/expectations/compiler/compiler/address/equal.leo.out b/tests/expectations/compiler/compiler/address/equal.out similarity index 100% rename from tests/expectations/compiler/compiler/address/equal.leo.out rename to tests/expectations/compiler/compiler/address/equal.out diff --git a/tests/expectations/compiler/compiler/address/ternary.leo.out b/tests/expectations/compiler/compiler/address/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/address/ternary.leo.out rename to tests/expectations/compiler/compiler/address/ternary.out diff --git a/tests/expectations/compiler/compiler/boolean/and.leo.out b/tests/expectations/compiler/compiler/boolean/and.out similarity index 100% rename from tests/expectations/compiler/compiler/boolean/and.leo.out rename to tests/expectations/compiler/compiler/boolean/and.out diff --git a/tests/expectations/compiler/compiler/boolean/conditional.leo.out b/tests/expectations/compiler/compiler/boolean/conditional.out similarity index 100% rename from tests/expectations/compiler/compiler/boolean/conditional.leo.out rename to tests/expectations/compiler/compiler/boolean/conditional.out diff --git a/tests/expectations/compiler/compiler/boolean/equal.leo.out b/tests/expectations/compiler/compiler/boolean/equal.out similarity index 100% rename from tests/expectations/compiler/compiler/boolean/equal.leo.out rename to tests/expectations/compiler/compiler/boolean/equal.out diff --git a/tests/expectations/compiler/compiler/boolean/not_equal.leo.out b/tests/expectations/compiler/compiler/boolean/not_equal.out similarity index 100% rename from tests/expectations/compiler/compiler/boolean/not_equal.leo.out rename to tests/expectations/compiler/compiler/boolean/not_equal.out diff --git a/tests/expectations/compiler/compiler/boolean/or.leo.out b/tests/expectations/compiler/compiler/boolean/or.out similarity index 100% rename from tests/expectations/compiler/compiler/boolean/or.leo.out rename to tests/expectations/compiler/compiler/boolean/or.out diff --git a/tests/expectations/compiler/compiler/char/invalid_char.leo.out b/tests/expectations/compiler/compiler/char/invalid_char.out similarity index 100% rename from tests/expectations/compiler/compiler/char/invalid_char.leo.out rename to tests/expectations/compiler/compiler/char/invalid_char.out diff --git a/tests/expectations/compiler/compiler/char/neq.leo.out b/tests/expectations/compiler/compiler/char/neq.out similarity index 100% rename from tests/expectations/compiler/compiler/char/neq.leo.out rename to tests/expectations/compiler/compiler/char/neq.out diff --git a/tests/expectations/compiler/compiler/char/out.leo.out b/tests/expectations/compiler/compiler/char/out.out similarity index 100% rename from tests/expectations/compiler/compiler/char/out.leo.out rename to tests/expectations/compiler/compiler/char/out.out diff --git a/tests/expectations/compiler/compiler/char/string.leo.out b/tests/expectations/compiler/compiler/char/string.out similarity index 100% rename from tests/expectations/compiler/compiler/char/string.leo.out rename to tests/expectations/compiler/compiler/char/string.out diff --git a/tests/expectations/compiler/compiler/console/assert.leo.out b/tests/expectations/compiler/compiler/console/assert.out similarity index 100% rename from tests/expectations/compiler/compiler/console/assert.leo.out rename to tests/expectations/compiler/compiler/console/assert.out diff --git a/tests/expectations/compiler/compiler/console/conditional_assert.leo.out b/tests/expectations/compiler/compiler/console/conditional_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/console/conditional_assert.leo.out rename to tests/expectations/compiler/compiler/console/conditional_assert.out diff --git a/tests/expectations/compiler/compiler/console/error.leo.out b/tests/expectations/compiler/compiler/console/error.out similarity index 100% rename from tests/expectations/compiler/compiler/console/error.leo.out rename to tests/expectations/compiler/compiler/console/error.out diff --git a/tests/expectations/compiler/compiler/console/log.leo.out b/tests/expectations/compiler/compiler/console/log.out similarity index 100% rename from tests/expectations/compiler/compiler/console/log.leo.out rename to tests/expectations/compiler/compiler/console/log.out diff --git a/tests/expectations/compiler/compiler/console/log_conditional.leo.out b/tests/expectations/compiler/compiler/console/log_conditional.out similarity index 100% rename from tests/expectations/compiler/compiler/console/log_conditional.leo.out rename to tests/expectations/compiler/compiler/console/log_conditional.out diff --git a/tests/expectations/compiler/compiler/console/log_fail.leo.out b/tests/expectations/compiler/compiler/console/log_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/console/log_fail.leo.out rename to tests/expectations/compiler/compiler/console/log_fail.out diff --git a/tests/expectations/compiler/compiler/console/log_input.leo.out b/tests/expectations/compiler/compiler/console/log_input.out similarity index 100% rename from tests/expectations/compiler/compiler/console/log_input.leo.out rename to tests/expectations/compiler/compiler/console/log_input.out diff --git a/tests/expectations/compiler/compiler/console/log_parameter.leo.out b/tests/expectations/compiler/compiler/console/log_parameter.out similarity index 100% rename from tests/expectations/compiler/compiler/console/log_parameter.leo.out rename to tests/expectations/compiler/compiler/console/log_parameter.out diff --git a/tests/expectations/compiler/compiler/console/log_parameter_many.leo.out b/tests/expectations/compiler/compiler/console/log_parameter_many.out similarity index 100% rename from tests/expectations/compiler/compiler/console/log_parameter_many.leo.out rename to tests/expectations/compiler/compiler/console/log_parameter_many.out diff --git a/tests/expectations/compiler/compiler/console/log_parameter_unkown_fail.leo.out b/tests/expectations/compiler/compiler/console/log_parameter_unkown_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/console/log_parameter_unkown_fail.leo.out rename to tests/expectations/compiler/compiler/console/log_parameter_unkown_fail.out diff --git a/tests/expectations/compiler/compiler/console/log_string.leo.out b/tests/expectations/compiler/compiler/console/log_string.out similarity index 100% rename from tests/expectations/compiler/compiler/console/log_string.leo.out rename to tests/expectations/compiler/compiler/console/log_string.out diff --git a/tests/expectations/compiler/compiler/core/account/compute_key.leo.out b/tests/expectations/compiler/compiler/core/account/compute_key.out similarity index 100% rename from tests/expectations/compiler/compiler/core/account/compute_key.leo.out rename to tests/expectations/compiler/compiler/core/account/compute_key.out diff --git a/tests/expectations/compiler/compiler/core/account/private_key.leo.out b/tests/expectations/compiler/compiler/core/account/private_key.out similarity index 100% rename from tests/expectations/compiler/compiler/core/account/private_key.leo.out rename to tests/expectations/compiler/compiler/core/account/private_key.out diff --git a/tests/expectations/compiler/compiler/core/account/record.leo.out b/tests/expectations/compiler/compiler/core/account/record.out similarity index 100% rename from tests/expectations/compiler/compiler/core/account/record.leo.out rename to tests/expectations/compiler/compiler/core/account/record.out diff --git a/tests/expectations/compiler/compiler/core/account/signature.leo.out b/tests/expectations/compiler/compiler/core/account/signature.out similarity index 100% rename from tests/expectations/compiler/compiler/core/account/signature.leo.out rename to tests/expectations/compiler/compiler/core/account/signature.out diff --git a/tests/expectations/compiler/compiler/core/account/view_key.leo.out b/tests/expectations/compiler/compiler/core/account/view_key.out similarity index 100% rename from tests/expectations/compiler/compiler/core/account/view_key.leo.out rename to tests/expectations/compiler/compiler/core/account/view_key.out diff --git a/tests/expectations/compiler/compiler/core/algorithms/poseidon.leo.out b/tests/expectations/compiler/compiler/core/algorithms/poseidon.out similarity index 100% rename from tests/expectations/compiler/compiler/core/algorithms/poseidon.leo.out rename to tests/expectations/compiler/compiler/core/algorithms/poseidon.out diff --git a/tests/expectations/compiler/compiler/core/invalid_input_ident_fail.leo.out b/tests/expectations/compiler/compiler/core/invalid_input_ident_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/core/invalid_input_ident_fail.leo.out rename to tests/expectations/compiler/compiler/core/invalid_input_ident_fail.out diff --git a/tests/expectations/compiler/compiler/definition/out_of_order.leo.out b/tests/expectations/compiler/compiler/definition/out_of_order.out similarity index 100% rename from tests/expectations/compiler/compiler/definition/out_of_order.leo.out rename to tests/expectations/compiler/compiler/definition/out_of_order.out diff --git a/tests/expectations/compiler/compiler/definition/use_decl_variable_as_assign_fail.leo.out b/tests/expectations/compiler/compiler/definition/use_decl_variable_as_assign_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/definition/use_decl_variable_as_assign_fail.leo.out rename to tests/expectations/compiler/compiler/definition/use_decl_variable_as_assign_fail.out diff --git a/tests/expectations/compiler/compiler/field/add.leo.out b/tests/expectations/compiler/compiler/field/add.out similarity index 100% rename from tests/expectations/compiler/compiler/field/add.leo.out rename to tests/expectations/compiler/compiler/field/add.out diff --git a/tests/expectations/compiler/compiler/field/div.leo.out b/tests/expectations/compiler/compiler/field/div.out similarity index 100% rename from tests/expectations/compiler/compiler/field/div.leo.out rename to tests/expectations/compiler/compiler/field/div.out diff --git a/tests/expectations/compiler/compiler/field/eq.leo.out b/tests/expectations/compiler/compiler/field/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/field/eq.leo.out rename to tests/expectations/compiler/compiler/field/eq.out diff --git a/tests/expectations/compiler/compiler/field/field.leo.out b/tests/expectations/compiler/compiler/field/field.out similarity index 100% rename from tests/expectations/compiler/compiler/field/field.leo.out rename to tests/expectations/compiler/compiler/field/field.out diff --git a/tests/expectations/compiler/compiler/field/mul.leo.out b/tests/expectations/compiler/compiler/field/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/field/mul.leo.out rename to tests/expectations/compiler/compiler/field/mul.out diff --git a/tests/expectations/compiler/compiler/field/negate.leo.out b/tests/expectations/compiler/compiler/field/negate.out similarity index 100% rename from tests/expectations/compiler/compiler/field/negate.leo.out rename to tests/expectations/compiler/compiler/field/negate.out diff --git a/tests/expectations/compiler/compiler/field/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/field/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/field/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/field/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/field/pow_signed.leo.out b/tests/expectations/compiler/compiler/field/pow_signed.out similarity index 100% rename from tests/expectations/compiler/compiler/field/pow_signed.leo.out rename to tests/expectations/compiler/compiler/field/pow_signed.out diff --git a/tests/expectations/compiler/compiler/field/pow_unsigned.leo.out b/tests/expectations/compiler/compiler/field/pow_unsigned.out similarity index 100% rename from tests/expectations/compiler/compiler/field/pow_unsigned.leo.out rename to tests/expectations/compiler/compiler/field/pow_unsigned.out diff --git a/tests/expectations/compiler/compiler/field/sub.leo.out b/tests/expectations/compiler/compiler/field/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/field/sub.leo.out rename to tests/expectations/compiler/compiler/field/sub.out diff --git a/tests/expectations/compiler/compiler/field/ternary.leo.out b/tests/expectations/compiler/compiler/field/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/field/ternary.leo.out rename to tests/expectations/compiler/compiler/field/ternary.out diff --git a/tests/expectations/compiler/compiler/function/conditional_return.leo.out b/tests/expectations/compiler/compiler/function/conditional_return.out similarity index 100% rename from tests/expectations/compiler/compiler/function/conditional_return.leo.out rename to tests/expectations/compiler/compiler/function/conditional_return.out diff --git a/tests/expectations/compiler/compiler/function/duplicate_definition_fail.leo.out b/tests/expectations/compiler/compiler/function/duplicate_definition_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/function/duplicate_definition_fail.leo.out rename to tests/expectations/compiler/compiler/function/duplicate_definition_fail.out diff --git a/tests/expectations/compiler/compiler/function/duplicate_parameter_fail.leo.out b/tests/expectations/compiler/compiler/function/duplicate_parameter_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/function/duplicate_parameter_fail.leo.out rename to tests/expectations/compiler/compiler/function/duplicate_parameter_fail.out diff --git a/tests/expectations/compiler/compiler/function/iteration.leo.out b/tests/expectations/compiler/compiler/function/iteration.out similarity index 100% rename from tests/expectations/compiler/compiler/function/iteration.leo.out rename to tests/expectations/compiler/compiler/function/iteration.out diff --git a/tests/expectations/compiler/compiler/function/iteration_repeated.leo.out b/tests/expectations/compiler/compiler/function/iteration_repeated.out similarity index 100% rename from tests/expectations/compiler/compiler/function/iteration_repeated.leo.out rename to tests/expectations/compiler/compiler/function/iteration_repeated.out diff --git a/tests/expectations/compiler/compiler/function/no_return_fail.leo.out b/tests/expectations/compiler/compiler/function/no_return_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/function/no_return_fail.leo.out rename to tests/expectations/compiler/compiler/function/no_return_fail.out diff --git a/tests/expectations/compiler/compiler/function/repeated.leo.out b/tests/expectations/compiler/compiler/function/repeated.out similarity index 100% rename from tests/expectations/compiler/compiler/function/repeated.leo.out rename to tests/expectations/compiler/compiler/function/repeated.out diff --git a/tests/expectations/compiler/compiler/function/return.leo.out b/tests/expectations/compiler/compiler/function/return.out similarity index 100% rename from tests/expectations/compiler/compiler/function/return.leo.out rename to tests/expectations/compiler/compiler/function/return.out diff --git a/tests/expectations/compiler/compiler/function/scope_fail.leo.out b/tests/expectations/compiler/compiler/function/scope_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/function/scope_fail.leo.out rename to tests/expectations/compiler/compiler/function/scope_fail.out diff --git a/tests/expectations/compiler/compiler/function/shadow_function_with_input_fail.leo.out b/tests/expectations/compiler/compiler/function/shadow_function_with_input_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/function/shadow_function_with_input_fail.leo.out rename to tests/expectations/compiler/compiler/function/shadow_function_with_input_fail.out diff --git a/tests/expectations/compiler/compiler/function/shadow_parameter_fail.leo.out b/tests/expectations/compiler/compiler/function/shadow_parameter_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/function/shadow_parameter_fail.leo.out rename to tests/expectations/compiler/compiler/function/shadow_parameter_fail.out diff --git a/tests/expectations/compiler/compiler/function/undefined_fail.leo.out b/tests/expectations/compiler/compiler/function/undefined_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/function/undefined_fail.leo.out rename to tests/expectations/compiler/compiler/function/undefined_fail.out diff --git a/tests/expectations/compiler/compiler/group/add.leo.out b/tests/expectations/compiler/compiler/group/add.out similarity index 100% rename from tests/expectations/compiler/compiler/group/add.leo.out rename to tests/expectations/compiler/compiler/group/add.out diff --git a/tests/expectations/compiler/compiler/group/assert_eq.leo.out b/tests/expectations/compiler/compiler/group/assert_eq.out similarity index 100% rename from tests/expectations/compiler/compiler/group/assert_eq.leo.out rename to tests/expectations/compiler/compiler/group/assert_eq.out diff --git a/tests/expectations/compiler/compiler/group/both_sign_high.leo.out b/tests/expectations/compiler/compiler/group/both_sign_high.out similarity index 100% rename from tests/expectations/compiler/compiler/group/both_sign_high.leo.out rename to tests/expectations/compiler/compiler/group/both_sign_high.out diff --git a/tests/expectations/compiler/compiler/group/both_sign_inferred.leo.out b/tests/expectations/compiler/compiler/group/both_sign_inferred.out similarity index 100% rename from tests/expectations/compiler/compiler/group/both_sign_inferred.leo.out rename to tests/expectations/compiler/compiler/group/both_sign_inferred.out diff --git a/tests/expectations/compiler/compiler/group/both_sign_low.leo.out b/tests/expectations/compiler/compiler/group/both_sign_low.out similarity index 100% rename from tests/expectations/compiler/compiler/group/both_sign_low.leo.out rename to tests/expectations/compiler/compiler/group/both_sign_low.out diff --git a/tests/expectations/compiler/compiler/group/eq.leo.out b/tests/expectations/compiler/compiler/group/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/group/eq.leo.out rename to tests/expectations/compiler/compiler/group/eq.out diff --git a/tests/expectations/compiler/compiler/group/input.leo.out b/tests/expectations/compiler/compiler/group/input.out similarity index 100% rename from tests/expectations/compiler/compiler/group/input.leo.out rename to tests/expectations/compiler/compiler/group/input.out diff --git a/tests/expectations/compiler/compiler/group/mult_by_group_fail.leo.out b/tests/expectations/compiler/compiler/group/mult_by_group_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/group/mult_by_group_fail.leo.out rename to tests/expectations/compiler/compiler/group/mult_by_group_fail.out diff --git a/tests/expectations/compiler/compiler/group/mult_by_scalar.leo.out b/tests/expectations/compiler/compiler/group/mult_by_scalar.out similarity index 100% rename from tests/expectations/compiler/compiler/group/mult_by_scalar.leo.out rename to tests/expectations/compiler/compiler/group/mult_by_scalar.out diff --git a/tests/expectations/compiler/compiler/group/negate.leo.out b/tests/expectations/compiler/compiler/group/negate.out similarity index 100% rename from tests/expectations/compiler/compiler/group/negate.leo.out rename to tests/expectations/compiler/compiler/group/negate.out diff --git a/tests/expectations/compiler/compiler/group/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/group/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/group/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/group/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/group/one.leo.out b/tests/expectations/compiler/compiler/group/one.out similarity index 100% rename from tests/expectations/compiler/compiler/group/one.leo.out rename to tests/expectations/compiler/compiler/group/one.out diff --git a/tests/expectations/compiler/compiler/group/point.leo.out b/tests/expectations/compiler/compiler/group/point.out similarity index 100% rename from tests/expectations/compiler/compiler/group/point.leo.out rename to tests/expectations/compiler/compiler/group/point.out diff --git a/tests/expectations/compiler/compiler/group/point_input.leo.out b/tests/expectations/compiler/compiler/group/point_input.out similarity index 100% rename from tests/expectations/compiler/compiler/group/point_input.leo.out rename to tests/expectations/compiler/compiler/group/point_input.out diff --git a/tests/expectations/compiler/compiler/group/positive_and_negative.leo.out b/tests/expectations/compiler/compiler/group/positive_and_negative.out similarity index 100% rename from tests/expectations/compiler/compiler/group/positive_and_negative.leo.out rename to tests/expectations/compiler/compiler/group/positive_and_negative.out diff --git a/tests/expectations/compiler/compiler/group/sub.leo.out b/tests/expectations/compiler/compiler/group/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/group/sub.leo.out rename to tests/expectations/compiler/compiler/group/sub.out diff --git a/tests/expectations/compiler/compiler/group/ternary.leo.out b/tests/expectations/compiler/compiler/group/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/group/ternary.leo.out rename to tests/expectations/compiler/compiler/group/ternary.out diff --git a/tests/expectations/compiler/compiler/group/x_and_y.leo.out b/tests/expectations/compiler/compiler/group/x_and_y.out similarity index 100% rename from tests/expectations/compiler/compiler/group/x_and_y.leo.out rename to tests/expectations/compiler/compiler/group/x_and_y.out diff --git a/tests/expectations/compiler/compiler/group/x_sign_high.leo.out b/tests/expectations/compiler/compiler/group/x_sign_high.out similarity index 100% rename from tests/expectations/compiler/compiler/group/x_sign_high.leo.out rename to tests/expectations/compiler/compiler/group/x_sign_high.out diff --git a/tests/expectations/compiler/compiler/group/x_sign_inferred.leo.out b/tests/expectations/compiler/compiler/group/x_sign_inferred.out similarity index 100% rename from tests/expectations/compiler/compiler/group/x_sign_inferred.leo.out rename to tests/expectations/compiler/compiler/group/x_sign_inferred.out diff --git a/tests/expectations/compiler/compiler/group/x_sign_low.leo.out b/tests/expectations/compiler/compiler/group/x_sign_low.out similarity index 100% rename from tests/expectations/compiler/compiler/group/x_sign_low.leo.out rename to tests/expectations/compiler/compiler/group/x_sign_low.out diff --git a/tests/expectations/compiler/compiler/group/y_sign_high.leo.out b/tests/expectations/compiler/compiler/group/y_sign_high.out similarity index 100% rename from tests/expectations/compiler/compiler/group/y_sign_high.leo.out rename to tests/expectations/compiler/compiler/group/y_sign_high.out diff --git a/tests/expectations/compiler/compiler/group/y_sign_inferred.leo.out b/tests/expectations/compiler/compiler/group/y_sign_inferred.out similarity index 100% rename from tests/expectations/compiler/compiler/group/y_sign_inferred.leo.out rename to tests/expectations/compiler/compiler/group/y_sign_inferred.out diff --git a/tests/expectations/compiler/compiler/group/y_sign_low.leo.out b/tests/expectations/compiler/compiler/group/y_sign_low.out similarity index 100% rename from tests/expectations/compiler/compiler/group/y_sign_low.leo.out rename to tests/expectations/compiler/compiler/group/y_sign_low.out diff --git a/tests/expectations/compiler/compiler/group/zero.leo.out b/tests/expectations/compiler/compiler/group/zero.out similarity index 100% rename from tests/expectations/compiler/compiler/group/zero.leo.out rename to tests/expectations/compiler/compiler/group/zero.out diff --git a/tests/expectations/compiler/compiler/input_files/program_input/main.leo.out b/tests/expectations/compiler/compiler/input_files/program_input/main.out similarity index 100% rename from tests/expectations/compiler/compiler/input_files/program_input/main.leo.out rename to tests/expectations/compiler/compiler/input_files/program_input/main.out diff --git a/tests/expectations/compiler/compiler/input_files/program_input/main_field.leo.out b/tests/expectations/compiler/compiler/input_files/program_input/main_field.out similarity index 100% rename from tests/expectations/compiler/compiler/input_files/program_input/main_field.leo.out rename to tests/expectations/compiler/compiler/input_files/program_input/main_field.out diff --git a/tests/expectations/compiler/compiler/input_files/program_input/main_group.leo.out b/tests/expectations/compiler/compiler/input_files/program_input/main_group.out similarity index 100% rename from tests/expectations/compiler/compiler/input_files/program_input/main_group.leo.out rename to tests/expectations/compiler/compiler/input_files/program_input/main_group.out diff --git a/tests/expectations/compiler/compiler/input_files/program_input_constants/main.leo.out b/tests/expectations/compiler/compiler/input_files/program_input_constants/main.out similarity index 100% rename from tests/expectations/compiler/compiler/input_files/program_input_constants/main.leo.out rename to tests/expectations/compiler/compiler/input_files/program_input_constants/main.out diff --git a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_field.leo.out b/tests/expectations/compiler/compiler/input_files/program_input_constants/main_field.out similarity index 100% rename from tests/expectations/compiler/compiler/input_files/program_input_constants/main_field.leo.out rename to tests/expectations/compiler/compiler/input_files/program_input_constants/main_field.out diff --git a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_group.leo.out b/tests/expectations/compiler/compiler/input_files/program_input_constants/main_group.out similarity index 100% rename from tests/expectations/compiler/compiler/input_files/program_input_constants/main_group.leo.out rename to tests/expectations/compiler/compiler/input_files/program_input_constants/main_group.out diff --git a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_multiple.leo.out b/tests/expectations/compiler/compiler/input_files/program_input_constants/main_multiple.out similarity index 100% rename from tests/expectations/compiler/compiler/input_files/program_input_constants/main_multiple.leo.out rename to tests/expectations/compiler/compiler/input_files/program_input_constants/main_multiple.out diff --git a/tests/expectations/compiler/compiler/integers/i128/add.leo.out b/tests/expectations/compiler/compiler/integers/i128/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/add.leo.out rename to tests/expectations/compiler/compiler/integers/i128/add.out diff --git a/tests/expectations/compiler/compiler/integers/i128/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i128/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/i128/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/i128/div.leo.out b/tests/expectations/compiler/compiler/integers/i128/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/div.leo.out rename to tests/expectations/compiler/compiler/integers/i128/div.out diff --git a/tests/expectations/compiler/compiler/integers/i128/eq.leo.out b/tests/expectations/compiler/compiler/integers/i128/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/eq.leo.out rename to tests/expectations/compiler/compiler/integers/i128/eq.out diff --git a/tests/expectations/compiler/compiler/integers/i128/ge.leo.out b/tests/expectations/compiler/compiler/integers/i128/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/ge.leo.out rename to tests/expectations/compiler/compiler/integers/i128/ge.out diff --git a/tests/expectations/compiler/compiler/integers/i128/gt.leo.out b/tests/expectations/compiler/compiler/integers/i128/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/gt.leo.out rename to tests/expectations/compiler/compiler/integers/i128/gt.out diff --git a/tests/expectations/compiler/compiler/integers/i128/le.leo.out b/tests/expectations/compiler/compiler/integers/i128/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/le.leo.out rename to tests/expectations/compiler/compiler/integers/i128/le.out diff --git a/tests/expectations/compiler/compiler/integers/i128/lt.leo.out b/tests/expectations/compiler/compiler/integers/i128/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/lt.leo.out rename to tests/expectations/compiler/compiler/integers/i128/lt.out diff --git a/tests/expectations/compiler/compiler/integers/i128/max.leo.out b/tests/expectations/compiler/compiler/integers/i128/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/max.leo.out rename to tests/expectations/compiler/compiler/integers/i128/max.out diff --git a/tests/expectations/compiler/compiler/integers/i128/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i128/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i128/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i128/min.leo.out b/tests/expectations/compiler/compiler/integers/i128/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/min.leo.out rename to tests/expectations/compiler/compiler/integers/i128/min.out diff --git a/tests/expectations/compiler/compiler/integers/i128/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i128/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i128/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i128/mul.leo.out b/tests/expectations/compiler/compiler/integers/i128/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/mul.leo.out rename to tests/expectations/compiler/compiler/integers/i128/mul.out diff --git a/tests/expectations/compiler/compiler/integers/i128/ne.leo.out b/tests/expectations/compiler/compiler/integers/i128/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/ne.leo.out rename to tests/expectations/compiler/compiler/integers/i128/ne.out diff --git a/tests/expectations/compiler/compiler/integers/i128/negate.leo.out b/tests/expectations/compiler/compiler/integers/i128/negate.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/negate.leo.out rename to tests/expectations/compiler/compiler/integers/i128/negate.out diff --git a/tests/expectations/compiler/compiler/integers/i128/negate_min.leo.out b/tests/expectations/compiler/compiler/integers/i128/negate_min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/negate_min.leo.out rename to tests/expectations/compiler/compiler/integers/i128/negate_min.out diff --git a/tests/expectations/compiler/compiler/integers/i128/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i128/negate_zero.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/negate_zero.leo.out rename to tests/expectations/compiler/compiler/integers/i128/negate_zero.out diff --git a/tests/expectations/compiler/compiler/integers/i128/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i128/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/i128/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/i128/pow_fail.leo.out b/tests/expectations/compiler/compiler/integers/i128/pow_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/pow_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i128/pow_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i128/sub.leo.out b/tests/expectations/compiler/compiler/integers/i128/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/sub.leo.out rename to tests/expectations/compiler/compiler/integers/i128/sub.out diff --git a/tests/expectations/compiler/compiler/integers/i128/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i128/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i128/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/i128/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/i16/add.leo.out b/tests/expectations/compiler/compiler/integers/i16/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/add.leo.out rename to tests/expectations/compiler/compiler/integers/i16/add.out diff --git a/tests/expectations/compiler/compiler/integers/i16/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i16/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/i16/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/i16/div.leo.out b/tests/expectations/compiler/compiler/integers/i16/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/div.leo.out rename to tests/expectations/compiler/compiler/integers/i16/div.out diff --git a/tests/expectations/compiler/compiler/integers/i16/eq.leo.out b/tests/expectations/compiler/compiler/integers/i16/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/eq.leo.out rename to tests/expectations/compiler/compiler/integers/i16/eq.out diff --git a/tests/expectations/compiler/compiler/integers/i16/ge.leo.out b/tests/expectations/compiler/compiler/integers/i16/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/ge.leo.out rename to tests/expectations/compiler/compiler/integers/i16/ge.out diff --git a/tests/expectations/compiler/compiler/integers/i16/gt.leo.out b/tests/expectations/compiler/compiler/integers/i16/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/gt.leo.out rename to tests/expectations/compiler/compiler/integers/i16/gt.out diff --git a/tests/expectations/compiler/compiler/integers/i16/le.leo.out b/tests/expectations/compiler/compiler/integers/i16/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/le.leo.out rename to tests/expectations/compiler/compiler/integers/i16/le.out diff --git a/tests/expectations/compiler/compiler/integers/i16/lt.leo.out b/tests/expectations/compiler/compiler/integers/i16/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/lt.leo.out rename to tests/expectations/compiler/compiler/integers/i16/lt.out diff --git a/tests/expectations/compiler/compiler/integers/i16/max.leo.out b/tests/expectations/compiler/compiler/integers/i16/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/max.leo.out rename to tests/expectations/compiler/compiler/integers/i16/max.out diff --git a/tests/expectations/compiler/compiler/integers/i16/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i16/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i16/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i16/min.leo.out b/tests/expectations/compiler/compiler/integers/i16/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/min.leo.out rename to tests/expectations/compiler/compiler/integers/i16/min.out diff --git a/tests/expectations/compiler/compiler/integers/i16/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i16/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i16/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i16/mul.leo.out b/tests/expectations/compiler/compiler/integers/i16/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/mul.leo.out rename to tests/expectations/compiler/compiler/integers/i16/mul.out diff --git a/tests/expectations/compiler/compiler/integers/i16/ne.leo.out b/tests/expectations/compiler/compiler/integers/i16/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/ne.leo.out rename to tests/expectations/compiler/compiler/integers/i16/ne.out diff --git a/tests/expectations/compiler/compiler/integers/i16/negate.leo.out b/tests/expectations/compiler/compiler/integers/i16/negate.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/negate.leo.out rename to tests/expectations/compiler/compiler/integers/i16/negate.out diff --git a/tests/expectations/compiler/compiler/integers/i16/negate_min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i16/negate_min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/negate_min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i16/negate_min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i16/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i16/negate_zero.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/negate_zero.leo.out rename to tests/expectations/compiler/compiler/integers/i16/negate_zero.out diff --git a/tests/expectations/compiler/compiler/integers/i16/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i16/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/i16/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/i16/pow_fail.leo.out b/tests/expectations/compiler/compiler/integers/i16/pow_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/pow_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i16/pow_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i16/sub.leo.out b/tests/expectations/compiler/compiler/integers/i16/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/sub.leo.out rename to tests/expectations/compiler/compiler/integers/i16/sub.out diff --git a/tests/expectations/compiler/compiler/integers/i16/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i16/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i16/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/i16/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/i32/add.leo.out b/tests/expectations/compiler/compiler/integers/i32/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/add.leo.out rename to tests/expectations/compiler/compiler/integers/i32/add.out diff --git a/tests/expectations/compiler/compiler/integers/i32/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i32/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/i32/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/i32/div.leo.out b/tests/expectations/compiler/compiler/integers/i32/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/div.leo.out rename to tests/expectations/compiler/compiler/integers/i32/div.out diff --git a/tests/expectations/compiler/compiler/integers/i32/eq.leo.out b/tests/expectations/compiler/compiler/integers/i32/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/eq.leo.out rename to tests/expectations/compiler/compiler/integers/i32/eq.out diff --git a/tests/expectations/compiler/compiler/integers/i32/ge.leo.out b/tests/expectations/compiler/compiler/integers/i32/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/ge.leo.out rename to tests/expectations/compiler/compiler/integers/i32/ge.out diff --git a/tests/expectations/compiler/compiler/integers/i32/gt.leo.out b/tests/expectations/compiler/compiler/integers/i32/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/gt.leo.out rename to tests/expectations/compiler/compiler/integers/i32/gt.out diff --git a/tests/expectations/compiler/compiler/integers/i32/le.leo.out b/tests/expectations/compiler/compiler/integers/i32/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/le.leo.out rename to tests/expectations/compiler/compiler/integers/i32/le.out diff --git a/tests/expectations/compiler/compiler/integers/i32/lt.leo.out b/tests/expectations/compiler/compiler/integers/i32/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/lt.leo.out rename to tests/expectations/compiler/compiler/integers/i32/lt.out diff --git a/tests/expectations/compiler/compiler/integers/i32/max.leo.out b/tests/expectations/compiler/compiler/integers/i32/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/max.leo.out rename to tests/expectations/compiler/compiler/integers/i32/max.out diff --git a/tests/expectations/compiler/compiler/integers/i32/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i32/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i32/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i32/min.leo.out b/tests/expectations/compiler/compiler/integers/i32/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/min.leo.out rename to tests/expectations/compiler/compiler/integers/i32/min.out diff --git a/tests/expectations/compiler/compiler/integers/i32/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i32/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i32/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i32/mul.leo.out b/tests/expectations/compiler/compiler/integers/i32/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/mul.leo.out rename to tests/expectations/compiler/compiler/integers/i32/mul.out diff --git a/tests/expectations/compiler/compiler/integers/i32/ne.leo.out b/tests/expectations/compiler/compiler/integers/i32/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/ne.leo.out rename to tests/expectations/compiler/compiler/integers/i32/ne.out diff --git a/tests/expectations/compiler/compiler/integers/i32/negate.leo.out b/tests/expectations/compiler/compiler/integers/i32/negate.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/negate.leo.out rename to tests/expectations/compiler/compiler/integers/i32/negate.out diff --git a/tests/expectations/compiler/compiler/integers/i32/negate_min.leo.out b/tests/expectations/compiler/compiler/integers/i32/negate_min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/negate_min.leo.out rename to tests/expectations/compiler/compiler/integers/i32/negate_min.out diff --git a/tests/expectations/compiler/compiler/integers/i32/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i32/negate_zero.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/negate_zero.leo.out rename to tests/expectations/compiler/compiler/integers/i32/negate_zero.out diff --git a/tests/expectations/compiler/compiler/integers/i32/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i32/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/i32/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/i32/pow_fail.leo.out b/tests/expectations/compiler/compiler/integers/i32/pow_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/pow_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i32/pow_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i32/sub.leo.out b/tests/expectations/compiler/compiler/integers/i32/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/sub.leo.out rename to tests/expectations/compiler/compiler/integers/i32/sub.out diff --git a/tests/expectations/compiler/compiler/integers/i32/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i32/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i32/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/i32/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/i64/add.leo.out b/tests/expectations/compiler/compiler/integers/i64/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/add.leo.out rename to tests/expectations/compiler/compiler/integers/i64/add.out diff --git a/tests/expectations/compiler/compiler/integers/i64/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i64/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/i64/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/i64/div.leo.out b/tests/expectations/compiler/compiler/integers/i64/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/div.leo.out rename to tests/expectations/compiler/compiler/integers/i64/div.out diff --git a/tests/expectations/compiler/compiler/integers/i64/eq.leo.out b/tests/expectations/compiler/compiler/integers/i64/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/eq.leo.out rename to tests/expectations/compiler/compiler/integers/i64/eq.out diff --git a/tests/expectations/compiler/compiler/integers/i64/ge.leo.out b/tests/expectations/compiler/compiler/integers/i64/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/ge.leo.out rename to tests/expectations/compiler/compiler/integers/i64/ge.out diff --git a/tests/expectations/compiler/compiler/integers/i64/gt.leo.out b/tests/expectations/compiler/compiler/integers/i64/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/gt.leo.out rename to tests/expectations/compiler/compiler/integers/i64/gt.out diff --git a/tests/expectations/compiler/compiler/integers/i64/le.leo.out b/tests/expectations/compiler/compiler/integers/i64/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/le.leo.out rename to tests/expectations/compiler/compiler/integers/i64/le.out diff --git a/tests/expectations/compiler/compiler/integers/i64/lt.leo.out b/tests/expectations/compiler/compiler/integers/i64/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/lt.leo.out rename to tests/expectations/compiler/compiler/integers/i64/lt.out diff --git a/tests/expectations/compiler/compiler/integers/i64/max.leo.out b/tests/expectations/compiler/compiler/integers/i64/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/max.leo.out rename to tests/expectations/compiler/compiler/integers/i64/max.out diff --git a/tests/expectations/compiler/compiler/integers/i64/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i64/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i64/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i64/min.leo.out b/tests/expectations/compiler/compiler/integers/i64/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/min.leo.out rename to tests/expectations/compiler/compiler/integers/i64/min.out diff --git a/tests/expectations/compiler/compiler/integers/i64/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i64/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i64/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i64/mul.leo.out b/tests/expectations/compiler/compiler/integers/i64/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/mul.leo.out rename to tests/expectations/compiler/compiler/integers/i64/mul.out diff --git a/tests/expectations/compiler/compiler/integers/i64/ne.leo.out b/tests/expectations/compiler/compiler/integers/i64/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/ne.leo.out rename to tests/expectations/compiler/compiler/integers/i64/ne.out diff --git a/tests/expectations/compiler/compiler/integers/i64/negate.leo.out b/tests/expectations/compiler/compiler/integers/i64/negate.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/negate.leo.out rename to tests/expectations/compiler/compiler/integers/i64/negate.out diff --git a/tests/expectations/compiler/compiler/integers/i64/negate_min.leo.out b/tests/expectations/compiler/compiler/integers/i64/negate_min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/negate_min.leo.out rename to tests/expectations/compiler/compiler/integers/i64/negate_min.out diff --git a/tests/expectations/compiler/compiler/integers/i64/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i64/negate_zero.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/negate_zero.leo.out rename to tests/expectations/compiler/compiler/integers/i64/negate_zero.out diff --git a/tests/expectations/compiler/compiler/integers/i64/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i64/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/i64/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/i64/pow_fail.leo.out b/tests/expectations/compiler/compiler/integers/i64/pow_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/pow_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i64/pow_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i64/sub.leo.out b/tests/expectations/compiler/compiler/integers/i64/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/sub.leo.out rename to tests/expectations/compiler/compiler/integers/i64/sub.out diff --git a/tests/expectations/compiler/compiler/integers/i64/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i64/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i64/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/i64/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/i8/add.leo.out b/tests/expectations/compiler/compiler/integers/i8/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/add.leo.out rename to tests/expectations/compiler/compiler/integers/i8/add.out diff --git a/tests/expectations/compiler/compiler/integers/i8/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i8/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/i8/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/i8/div.leo.out b/tests/expectations/compiler/compiler/integers/i8/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/div.leo.out rename to tests/expectations/compiler/compiler/integers/i8/div.out diff --git a/tests/expectations/compiler/compiler/integers/i8/eq.leo.out b/tests/expectations/compiler/compiler/integers/i8/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/eq.leo.out rename to tests/expectations/compiler/compiler/integers/i8/eq.out diff --git a/tests/expectations/compiler/compiler/integers/i8/ge.leo.out b/tests/expectations/compiler/compiler/integers/i8/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/ge.leo.out rename to tests/expectations/compiler/compiler/integers/i8/ge.out diff --git a/tests/expectations/compiler/compiler/integers/i8/gt.leo.out b/tests/expectations/compiler/compiler/integers/i8/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/gt.leo.out rename to tests/expectations/compiler/compiler/integers/i8/gt.out diff --git a/tests/expectations/compiler/compiler/integers/i8/le.leo.out b/tests/expectations/compiler/compiler/integers/i8/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/le.leo.out rename to tests/expectations/compiler/compiler/integers/i8/le.out diff --git a/tests/expectations/compiler/compiler/integers/i8/lt.leo.out b/tests/expectations/compiler/compiler/integers/i8/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/lt.leo.out rename to tests/expectations/compiler/compiler/integers/i8/lt.out diff --git a/tests/expectations/compiler/compiler/integers/i8/max.leo.out b/tests/expectations/compiler/compiler/integers/i8/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/max.leo.out rename to tests/expectations/compiler/compiler/integers/i8/max.out diff --git a/tests/expectations/compiler/compiler/integers/i8/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i8/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i8/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i8/min.leo.out b/tests/expectations/compiler/compiler/integers/i8/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/min.leo.out rename to tests/expectations/compiler/compiler/integers/i8/min.out diff --git a/tests/expectations/compiler/compiler/integers/i8/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i8/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i8/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i8/mul.leo.out b/tests/expectations/compiler/compiler/integers/i8/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/mul.leo.out rename to tests/expectations/compiler/compiler/integers/i8/mul.out diff --git a/tests/expectations/compiler/compiler/integers/i8/ne.leo.out b/tests/expectations/compiler/compiler/integers/i8/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/ne.leo.out rename to tests/expectations/compiler/compiler/integers/i8/ne.out diff --git a/tests/expectations/compiler/compiler/integers/i8/negate.leo.out b/tests/expectations/compiler/compiler/integers/i8/negate.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/negate.leo.out rename to tests/expectations/compiler/compiler/integers/i8/negate.out diff --git a/tests/expectations/compiler/compiler/integers/i8/negate_min.leo.out b/tests/expectations/compiler/compiler/integers/i8/negate_min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/negate_min.leo.out rename to tests/expectations/compiler/compiler/integers/i8/negate_min.out diff --git a/tests/expectations/compiler/compiler/integers/i8/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i8/negate_zero.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/negate_zero.leo.out rename to tests/expectations/compiler/compiler/integers/i8/negate_zero.out diff --git a/tests/expectations/compiler/compiler/integers/i8/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i8/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/i8/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/i8/pow_fail.leo.out b/tests/expectations/compiler/compiler/integers/i8/pow_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/pow_fail.leo.out rename to tests/expectations/compiler/compiler/integers/i8/pow_fail.out diff --git a/tests/expectations/compiler/compiler/integers/i8/sub.leo.out b/tests/expectations/compiler/compiler/integers/i8/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/sub.leo.out rename to tests/expectations/compiler/compiler/integers/i8/sub.out diff --git a/tests/expectations/compiler/compiler/integers/i8/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i8/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/i8/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/i8/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/u128/add.leo.out b/tests/expectations/compiler/compiler/integers/u128/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/add.leo.out rename to tests/expectations/compiler/compiler/integers/u128/add.out diff --git a/tests/expectations/compiler/compiler/integers/u128/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u128/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/u128/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/u128/div.leo.out b/tests/expectations/compiler/compiler/integers/u128/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/div.leo.out rename to tests/expectations/compiler/compiler/integers/u128/div.out diff --git a/tests/expectations/compiler/compiler/integers/u128/eq.leo.out b/tests/expectations/compiler/compiler/integers/u128/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/eq.leo.out rename to tests/expectations/compiler/compiler/integers/u128/eq.out diff --git a/tests/expectations/compiler/compiler/integers/u128/ge.leo.out b/tests/expectations/compiler/compiler/integers/u128/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/ge.leo.out rename to tests/expectations/compiler/compiler/integers/u128/ge.out diff --git a/tests/expectations/compiler/compiler/integers/u128/gt.leo.out b/tests/expectations/compiler/compiler/integers/u128/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/gt.leo.out rename to tests/expectations/compiler/compiler/integers/u128/gt.out diff --git a/tests/expectations/compiler/compiler/integers/u128/le.leo.out b/tests/expectations/compiler/compiler/integers/u128/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/le.leo.out rename to tests/expectations/compiler/compiler/integers/u128/le.out diff --git a/tests/expectations/compiler/compiler/integers/u128/lt.leo.out b/tests/expectations/compiler/compiler/integers/u128/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/lt.leo.out rename to tests/expectations/compiler/compiler/integers/u128/lt.out diff --git a/tests/expectations/compiler/compiler/integers/u128/max.leo.out b/tests/expectations/compiler/compiler/integers/u128/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/max.leo.out rename to tests/expectations/compiler/compiler/integers/u128/max.out diff --git a/tests/expectations/compiler/compiler/integers/u128/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u128/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u128/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u128/min.leo.out b/tests/expectations/compiler/compiler/integers/u128/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/min.leo.out rename to tests/expectations/compiler/compiler/integers/u128/min.out diff --git a/tests/expectations/compiler/compiler/integers/u128/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u128/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u128/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u128/mul.leo.out b/tests/expectations/compiler/compiler/integers/u128/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/mul.leo.out rename to tests/expectations/compiler/compiler/integers/u128/mul.out diff --git a/tests/expectations/compiler/compiler/integers/u128/ne.leo.out b/tests/expectations/compiler/compiler/integers/u128/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/ne.leo.out rename to tests/expectations/compiler/compiler/integers/u128/ne.out diff --git a/tests/expectations/compiler/compiler/integers/u128/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u128/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/u128/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/u128/pow.leo.out b/tests/expectations/compiler/compiler/integers/u128/pow.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/pow.leo.out rename to tests/expectations/compiler/compiler/integers/u128/pow.out diff --git a/tests/expectations/compiler/compiler/integers/u128/sub.leo.out b/tests/expectations/compiler/compiler/integers/u128/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/sub.leo.out rename to tests/expectations/compiler/compiler/integers/u128/sub.out diff --git a/tests/expectations/compiler/compiler/integers/u128/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u128/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u128/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/u128/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/u16/add.leo.out b/tests/expectations/compiler/compiler/integers/u16/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/add.leo.out rename to tests/expectations/compiler/compiler/integers/u16/add.out diff --git a/tests/expectations/compiler/compiler/integers/u16/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u16/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/u16/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/u16/div.leo.out b/tests/expectations/compiler/compiler/integers/u16/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/div.leo.out rename to tests/expectations/compiler/compiler/integers/u16/div.out diff --git a/tests/expectations/compiler/compiler/integers/u16/eq.leo.out b/tests/expectations/compiler/compiler/integers/u16/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/eq.leo.out rename to tests/expectations/compiler/compiler/integers/u16/eq.out diff --git a/tests/expectations/compiler/compiler/integers/u16/ge.leo.out b/tests/expectations/compiler/compiler/integers/u16/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/ge.leo.out rename to tests/expectations/compiler/compiler/integers/u16/ge.out diff --git a/tests/expectations/compiler/compiler/integers/u16/gt.leo.out b/tests/expectations/compiler/compiler/integers/u16/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/gt.leo.out rename to tests/expectations/compiler/compiler/integers/u16/gt.out diff --git a/tests/expectations/compiler/compiler/integers/u16/le.leo.out b/tests/expectations/compiler/compiler/integers/u16/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/le.leo.out rename to tests/expectations/compiler/compiler/integers/u16/le.out diff --git a/tests/expectations/compiler/compiler/integers/u16/lt.leo.out b/tests/expectations/compiler/compiler/integers/u16/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/lt.leo.out rename to tests/expectations/compiler/compiler/integers/u16/lt.out diff --git a/tests/expectations/compiler/compiler/integers/u16/max.leo.out b/tests/expectations/compiler/compiler/integers/u16/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/max.leo.out rename to tests/expectations/compiler/compiler/integers/u16/max.out diff --git a/tests/expectations/compiler/compiler/integers/u16/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u16/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u16/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u16/min.leo.out b/tests/expectations/compiler/compiler/integers/u16/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/min.leo.out rename to tests/expectations/compiler/compiler/integers/u16/min.out diff --git a/tests/expectations/compiler/compiler/integers/u16/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u16/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u16/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u16/mul.leo.out b/tests/expectations/compiler/compiler/integers/u16/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/mul.leo.out rename to tests/expectations/compiler/compiler/integers/u16/mul.out diff --git a/tests/expectations/compiler/compiler/integers/u16/ne.leo.out b/tests/expectations/compiler/compiler/integers/u16/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/ne.leo.out rename to tests/expectations/compiler/compiler/integers/u16/ne.out diff --git a/tests/expectations/compiler/compiler/integers/u16/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u16/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/u16/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/u16/pow.leo.out b/tests/expectations/compiler/compiler/integers/u16/pow.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/pow.leo.out rename to tests/expectations/compiler/compiler/integers/u16/pow.out diff --git a/tests/expectations/compiler/compiler/integers/u16/sub.leo.out b/tests/expectations/compiler/compiler/integers/u16/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/sub.leo.out rename to tests/expectations/compiler/compiler/integers/u16/sub.out diff --git a/tests/expectations/compiler/compiler/integers/u16/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u16/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u16/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/u16/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/u32/add.leo.out b/tests/expectations/compiler/compiler/integers/u32/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/add.leo.out rename to tests/expectations/compiler/compiler/integers/u32/add.out diff --git a/tests/expectations/compiler/compiler/integers/u32/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u32/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/u32/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/u32/div.leo.out b/tests/expectations/compiler/compiler/integers/u32/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/div.leo.out rename to tests/expectations/compiler/compiler/integers/u32/div.out diff --git a/tests/expectations/compiler/compiler/integers/u32/eq.leo.out b/tests/expectations/compiler/compiler/integers/u32/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/eq.leo.out rename to tests/expectations/compiler/compiler/integers/u32/eq.out diff --git a/tests/expectations/compiler/compiler/integers/u32/ge.leo.out b/tests/expectations/compiler/compiler/integers/u32/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/ge.leo.out rename to tests/expectations/compiler/compiler/integers/u32/ge.out diff --git a/tests/expectations/compiler/compiler/integers/u32/gt.leo.out b/tests/expectations/compiler/compiler/integers/u32/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/gt.leo.out rename to tests/expectations/compiler/compiler/integers/u32/gt.out diff --git a/tests/expectations/compiler/compiler/integers/u32/le.leo.out b/tests/expectations/compiler/compiler/integers/u32/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/le.leo.out rename to tests/expectations/compiler/compiler/integers/u32/le.out diff --git a/tests/expectations/compiler/compiler/integers/u32/lt.leo.out b/tests/expectations/compiler/compiler/integers/u32/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/lt.leo.out rename to tests/expectations/compiler/compiler/integers/u32/lt.out diff --git a/tests/expectations/compiler/compiler/integers/u32/max.leo.out b/tests/expectations/compiler/compiler/integers/u32/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/max.leo.out rename to tests/expectations/compiler/compiler/integers/u32/max.out diff --git a/tests/expectations/compiler/compiler/integers/u32/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u32/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u32/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u32/min.leo.out b/tests/expectations/compiler/compiler/integers/u32/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/min.leo.out rename to tests/expectations/compiler/compiler/integers/u32/min.out diff --git a/tests/expectations/compiler/compiler/integers/u32/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u32/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u32/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u32/mul.leo.out b/tests/expectations/compiler/compiler/integers/u32/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/mul.leo.out rename to tests/expectations/compiler/compiler/integers/u32/mul.out diff --git a/tests/expectations/compiler/compiler/integers/u32/ne.leo.out b/tests/expectations/compiler/compiler/integers/u32/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/ne.leo.out rename to tests/expectations/compiler/compiler/integers/u32/ne.out diff --git a/tests/expectations/compiler/compiler/integers/u32/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u32/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/u32/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/u32/pow.leo.out b/tests/expectations/compiler/compiler/integers/u32/pow.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/pow.leo.out rename to tests/expectations/compiler/compiler/integers/u32/pow.out diff --git a/tests/expectations/compiler/compiler/integers/u32/sub.leo.out b/tests/expectations/compiler/compiler/integers/u32/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/sub.leo.out rename to tests/expectations/compiler/compiler/integers/u32/sub.out diff --git a/tests/expectations/compiler/compiler/integers/u32/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u32/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u32/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/u32/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/u64/add.leo.out b/tests/expectations/compiler/compiler/integers/u64/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/add.leo.out rename to tests/expectations/compiler/compiler/integers/u64/add.out diff --git a/tests/expectations/compiler/compiler/integers/u64/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u64/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/u64/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/u64/div.leo.out b/tests/expectations/compiler/compiler/integers/u64/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/div.leo.out rename to tests/expectations/compiler/compiler/integers/u64/div.out diff --git a/tests/expectations/compiler/compiler/integers/u64/eq.leo.out b/tests/expectations/compiler/compiler/integers/u64/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/eq.leo.out rename to tests/expectations/compiler/compiler/integers/u64/eq.out diff --git a/tests/expectations/compiler/compiler/integers/u64/ge.leo.out b/tests/expectations/compiler/compiler/integers/u64/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/ge.leo.out rename to tests/expectations/compiler/compiler/integers/u64/ge.out diff --git a/tests/expectations/compiler/compiler/integers/u64/gt.leo.out b/tests/expectations/compiler/compiler/integers/u64/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/gt.leo.out rename to tests/expectations/compiler/compiler/integers/u64/gt.out diff --git a/tests/expectations/compiler/compiler/integers/u64/le.leo.out b/tests/expectations/compiler/compiler/integers/u64/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/le.leo.out rename to tests/expectations/compiler/compiler/integers/u64/le.out diff --git a/tests/expectations/compiler/compiler/integers/u64/lt.leo.out b/tests/expectations/compiler/compiler/integers/u64/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/lt.leo.out rename to tests/expectations/compiler/compiler/integers/u64/lt.out diff --git a/tests/expectations/compiler/compiler/integers/u64/max.leo.out b/tests/expectations/compiler/compiler/integers/u64/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/max.leo.out rename to tests/expectations/compiler/compiler/integers/u64/max.out diff --git a/tests/expectations/compiler/compiler/integers/u64/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u64/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u64/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u64/min.leo.out b/tests/expectations/compiler/compiler/integers/u64/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/min.leo.out rename to tests/expectations/compiler/compiler/integers/u64/min.out diff --git a/tests/expectations/compiler/compiler/integers/u64/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u64/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u64/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u64/mul.leo.out b/tests/expectations/compiler/compiler/integers/u64/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/mul.leo.out rename to tests/expectations/compiler/compiler/integers/u64/mul.out diff --git a/tests/expectations/compiler/compiler/integers/u64/ne.leo.out b/tests/expectations/compiler/compiler/integers/u64/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/ne.leo.out rename to tests/expectations/compiler/compiler/integers/u64/ne.out diff --git a/tests/expectations/compiler/compiler/integers/u64/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u64/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/u64/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/u64/pow.leo.out b/tests/expectations/compiler/compiler/integers/u64/pow.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/pow.leo.out rename to tests/expectations/compiler/compiler/integers/u64/pow.out diff --git a/tests/expectations/compiler/compiler/integers/u64/sub.leo.out b/tests/expectations/compiler/compiler/integers/u64/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/sub.leo.out rename to tests/expectations/compiler/compiler/integers/u64/sub.out diff --git a/tests/expectations/compiler/compiler/integers/u64/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u64/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u64/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/u64/ternary.out diff --git a/tests/expectations/compiler/compiler/integers/u8/add.leo.out b/tests/expectations/compiler/compiler/integers/u8/add.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/add.leo.out rename to tests/expectations/compiler/compiler/integers/u8/add.out diff --git a/tests/expectations/compiler/compiler/integers/u8/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u8/console_assert.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/console_assert.leo.out rename to tests/expectations/compiler/compiler/integers/u8/console_assert.out diff --git a/tests/expectations/compiler/compiler/integers/u8/div.leo.out b/tests/expectations/compiler/compiler/integers/u8/div.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/div.leo.out rename to tests/expectations/compiler/compiler/integers/u8/div.out diff --git a/tests/expectations/compiler/compiler/integers/u8/eq.leo.out b/tests/expectations/compiler/compiler/integers/u8/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/eq.leo.out rename to tests/expectations/compiler/compiler/integers/u8/eq.out diff --git a/tests/expectations/compiler/compiler/integers/u8/ge.leo.out b/tests/expectations/compiler/compiler/integers/u8/ge.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/ge.leo.out rename to tests/expectations/compiler/compiler/integers/u8/ge.out diff --git a/tests/expectations/compiler/compiler/integers/u8/gt.leo.out b/tests/expectations/compiler/compiler/integers/u8/gt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/gt.leo.out rename to tests/expectations/compiler/compiler/integers/u8/gt.out diff --git a/tests/expectations/compiler/compiler/integers/u8/le.leo.out b/tests/expectations/compiler/compiler/integers/u8/le.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/le.leo.out rename to tests/expectations/compiler/compiler/integers/u8/le.out diff --git a/tests/expectations/compiler/compiler/integers/u8/lt.leo.out b/tests/expectations/compiler/compiler/integers/u8/lt.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/lt.leo.out rename to tests/expectations/compiler/compiler/integers/u8/lt.out diff --git a/tests/expectations/compiler/compiler/integers/u8/max.leo.out b/tests/expectations/compiler/compiler/integers/u8/max.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/max.leo.out rename to tests/expectations/compiler/compiler/integers/u8/max.out diff --git a/tests/expectations/compiler/compiler/integers/u8/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u8/max_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/max_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u8/max_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u8/min.leo.out b/tests/expectations/compiler/compiler/integers/u8/min.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/min.leo.out rename to tests/expectations/compiler/compiler/integers/u8/min.out diff --git a/tests/expectations/compiler/compiler/integers/u8/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u8/min_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/min_fail.leo.out rename to tests/expectations/compiler/compiler/integers/u8/min_fail.out diff --git a/tests/expectations/compiler/compiler/integers/u8/mul.leo.out b/tests/expectations/compiler/compiler/integers/u8/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/mul.leo.out rename to tests/expectations/compiler/compiler/integers/u8/mul.out diff --git a/tests/expectations/compiler/compiler/integers/u8/ne.leo.out b/tests/expectations/compiler/compiler/integers/u8/ne.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/ne.leo.out rename to tests/expectations/compiler/compiler/integers/u8/ne.out diff --git a/tests/expectations/compiler/compiler/integers/u8/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u8/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/integers/u8/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/integers/u8/pow.leo.out b/tests/expectations/compiler/compiler/integers/u8/pow.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/pow.leo.out rename to tests/expectations/compiler/compiler/integers/u8/pow.out diff --git a/tests/expectations/compiler/compiler/integers/u8/sub.leo.out b/tests/expectations/compiler/compiler/integers/u8/sub.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/sub.leo.out rename to tests/expectations/compiler/compiler/integers/u8/sub.out diff --git a/tests/expectations/compiler/compiler/integers/u8/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u8/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/integers/u8/ternary.leo.out rename to tests/expectations/compiler/compiler/integers/u8/ternary.out diff --git a/tests/expectations/compiler/compiler/mutability/cond_mut.leo.out b/tests/expectations/compiler/compiler/mutability/cond_mut.out similarity index 100% rename from tests/expectations/compiler/compiler/mutability/cond_mut.leo.out rename to tests/expectations/compiler/compiler/mutability/cond_mut.out diff --git a/tests/expectations/compiler/compiler/mutability/function_input_mut.leo.out b/tests/expectations/compiler/compiler/mutability/function_input_mut.out similarity index 100% rename from tests/expectations/compiler/compiler/mutability/function_input_mut.leo.out rename to tests/expectations/compiler/compiler/mutability/function_input_mut.out diff --git a/tests/expectations/compiler/compiler/mutability/let_mut_nested.leo.out b/tests/expectations/compiler/compiler/mutability/let_mut_nested.out similarity index 100% rename from tests/expectations/compiler/compiler/mutability/let_mut_nested.leo.out rename to tests/expectations/compiler/compiler/mutability/let_mut_nested.out diff --git a/tests/expectations/compiler/compiler/scalar/add.leo.out b/tests/expectations/compiler/compiler/scalar/add.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/add.leo.out rename to tests/expectations/compiler/compiler/scalar/add.out diff --git a/tests/expectations/compiler/compiler/scalar/cmp.leo.out b/tests/expectations/compiler/compiler/scalar/cmp.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/cmp.leo.out rename to tests/expectations/compiler/compiler/scalar/cmp.out diff --git a/tests/expectations/compiler/compiler/scalar/div.leo.out b/tests/expectations/compiler/compiler/scalar/div.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/div.leo.out rename to tests/expectations/compiler/compiler/scalar/div.out diff --git a/tests/expectations/compiler/compiler/scalar/eq.leo.out b/tests/expectations/compiler/compiler/scalar/eq.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/eq.leo.out rename to tests/expectations/compiler/compiler/scalar/eq.out diff --git a/tests/expectations/compiler/compiler/scalar/group_mul.leo.out b/tests/expectations/compiler/compiler/scalar/group_mul.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/group_mul.leo.out rename to tests/expectations/compiler/compiler/scalar/group_mul.out diff --git a/tests/expectations/compiler/compiler/scalar/mul.leo.out b/tests/expectations/compiler/compiler/scalar/mul.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/mul.leo.out rename to tests/expectations/compiler/compiler/scalar/mul.out diff --git a/tests/expectations/compiler/compiler/scalar/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/scalar/no_space_between_literal.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/no_space_between_literal.leo.out rename to tests/expectations/compiler/compiler/scalar/no_space_between_literal.out diff --git a/tests/expectations/compiler/compiler/scalar/scalar.leo.out b/tests/expectations/compiler/compiler/scalar/scalar.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/scalar.leo.out rename to tests/expectations/compiler/compiler/scalar/scalar.out diff --git a/tests/expectations/compiler/compiler/scalar/ternary.leo.out b/tests/expectations/compiler/compiler/scalar/ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/scalar/ternary.leo.out rename to tests/expectations/compiler/compiler/scalar/ternary.out diff --git a/tests/expectations/compiler/compiler/statements/all_loops.leo.out b/tests/expectations/compiler/compiler/statements/all_loops.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/all_loops.leo.out rename to tests/expectations/compiler/compiler/statements/all_loops.out diff --git a/tests/expectations/compiler/compiler/statements/all_loops_fail.leo.out b/tests/expectations/compiler/compiler/statements/all_loops_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/all_loops_fail.leo.out rename to tests/expectations/compiler/compiler/statements/all_loops_fail.out diff --git a/tests/expectations/compiler/compiler/statements/assign_ternary.leo.out b/tests/expectations/compiler/compiler/statements/assign_ternary.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/assign_ternary.leo.out rename to tests/expectations/compiler/compiler/statements/assign_ternary.out diff --git a/tests/expectations/compiler/compiler/statements/block.leo.out b/tests/expectations/compiler/compiler/statements/block.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/block.leo.out rename to tests/expectations/compiler/compiler/statements/block.out diff --git a/tests/expectations/compiler/compiler/statements/chain.leo.out b/tests/expectations/compiler/compiler/statements/chain.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/chain.leo.out rename to tests/expectations/compiler/compiler/statements/chain.out diff --git a/tests/expectations/compiler/compiler/statements/compare_diff_types_fail.leo.out b/tests/expectations/compiler/compiler/statements/compare_diff_types_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/compare_diff_types_fail.leo.out rename to tests/expectations/compiler/compiler/statements/compare_diff_types_fail.out diff --git a/tests/expectations/compiler/compiler/statements/compare_invalid_negates_fail.leo.out b/tests/expectations/compiler/compiler/statements/compare_invalid_negates_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/compare_invalid_negates_fail.leo.out rename to tests/expectations/compiler/compiler/statements/compare_invalid_negates_fail.out diff --git a/tests/expectations/compiler/compiler/statements/duplicate_variable.leo.out b/tests/expectations/compiler/compiler/statements/duplicate_variable.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/duplicate_variable.leo.out rename to tests/expectations/compiler/compiler/statements/duplicate_variable.out diff --git a/tests/expectations/compiler/compiler/statements/for_loop.leo.out b/tests/expectations/compiler/compiler/statements/for_loop.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/for_loop.leo.out rename to tests/expectations/compiler/compiler/statements/for_loop.out diff --git a/tests/expectations/compiler/compiler/statements/iteration_basic.leo.out b/tests/expectations/compiler/compiler/statements/iteration_basic.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/iteration_basic.leo.out rename to tests/expectations/compiler/compiler/statements/iteration_basic.out diff --git a/tests/expectations/compiler/compiler/statements/iteration_variable.leo.out b/tests/expectations/compiler/compiler/statements/iteration_variable.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/iteration_variable.leo.out rename to tests/expectations/compiler/compiler/statements/iteration_variable.out diff --git a/tests/expectations/compiler/compiler/statements/multiple_returns.leo.out b/tests/expectations/compiler/compiler/statements/multiple_returns.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/multiple_returns.leo.out rename to tests/expectations/compiler/compiler/statements/multiple_returns.out diff --git a/tests/expectations/compiler/compiler/statements/mutate.leo.out b/tests/expectations/compiler/compiler/statements/mutate.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/mutate.leo.out rename to tests/expectations/compiler/compiler/statements/mutate.out diff --git a/tests/expectations/compiler/compiler/statements/non_existant_var_exp_fail.leo.out b/tests/expectations/compiler/compiler/statements/non_existant_var_exp_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/non_existant_var_exp_fail.leo.out rename to tests/expectations/compiler/compiler/statements/non_existant_var_exp_fail.out diff --git a/tests/expectations/compiler/compiler/statements/non_existant_vars_mul_fail.leo.out b/tests/expectations/compiler/compiler/statements/non_existant_vars_mul_fail.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/non_existant_vars_mul_fail.leo.out rename to tests/expectations/compiler/compiler/statements/non_existant_vars_mul_fail.out diff --git a/tests/expectations/compiler/compiler/statements/ternary_explicit_and_implicit.leo.out b/tests/expectations/compiler/compiler/statements/ternary_explicit_and_implicit.out similarity index 100% rename from tests/expectations/compiler/compiler/statements/ternary_explicit_and_implicit.leo.out rename to tests/expectations/compiler/compiler/statements/ternary_explicit_and_implicit.out diff --git a/tests/expectations/parser/parser/expression/access/call.leo.out b/tests/expectations/parser/parser/expression/access/call.out similarity index 100% rename from tests/expectations/parser/parser/expression/access/call.leo.out rename to tests/expectations/parser/parser/expression/access/call.out diff --git a/tests/expectations/parser/parser/expression/array_init_fail.leo.out b/tests/expectations/parser/parser/expression/array_init_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/array_init_fail.leo.out rename to tests/expectations/parser/parser/expression/array_init_fail.out diff --git a/tests/expectations/parser/parser/expression/array_inline_fail.leo.out b/tests/expectations/parser/parser/expression/array_inline_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/array_inline_fail.leo.out rename to tests/expectations/parser/parser/expression/array_inline_fail.out diff --git a/tests/expectations/parser/parser/expression/binary/add.leo.out b/tests/expectations/parser/parser/expression/binary/add.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/add.leo.out rename to tests/expectations/parser/parser/expression/binary/add.out diff --git a/tests/expectations/parser/parser/expression/binary/and.leo.out b/tests/expectations/parser/parser/expression/binary/and.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/and.leo.out rename to tests/expectations/parser/parser/expression/binary/and.out diff --git a/tests/expectations/parser/parser/expression/binary/div.leo.out b/tests/expectations/parser/parser/expression/binary/div.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/div.leo.out rename to tests/expectations/parser/parser/expression/binary/div.out diff --git a/tests/expectations/parser/parser/expression/binary/eq.leo.out b/tests/expectations/parser/parser/expression/binary/eq.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/eq.leo.out rename to tests/expectations/parser/parser/expression/binary/eq.out diff --git a/tests/expectations/parser/parser/expression/binary/eq_fail.leo.out b/tests/expectations/parser/parser/expression/binary/eq_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/eq_fail.leo.out rename to tests/expectations/parser/parser/expression/binary/eq_fail.out diff --git a/tests/expectations/parser/parser/expression/binary/exp.leo.out b/tests/expectations/parser/parser/expression/binary/exp.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/exp.leo.out rename to tests/expectations/parser/parser/expression/binary/exp.out diff --git a/tests/expectations/parser/parser/expression/binary/gt.leo.out b/tests/expectations/parser/parser/expression/binary/gt.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/gt.leo.out rename to tests/expectations/parser/parser/expression/binary/gt.out diff --git a/tests/expectations/parser/parser/expression/binary/gt_fail.leo.out b/tests/expectations/parser/parser/expression/binary/gt_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/gt_fail.leo.out rename to tests/expectations/parser/parser/expression/binary/gt_fail.out diff --git a/tests/expectations/parser/parser/expression/binary/gte.leo.out b/tests/expectations/parser/parser/expression/binary/gte.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/gte.leo.out rename to tests/expectations/parser/parser/expression/binary/gte.out diff --git a/tests/expectations/parser/parser/expression/binary/gte_fail.leo.out b/tests/expectations/parser/parser/expression/binary/gte_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/gte_fail.leo.out rename to tests/expectations/parser/parser/expression/binary/gte_fail.out diff --git a/tests/expectations/parser/parser/expression/binary/lt.leo.out b/tests/expectations/parser/parser/expression/binary/lt.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/lt.leo.out rename to tests/expectations/parser/parser/expression/binary/lt.out diff --git a/tests/expectations/parser/parser/expression/binary/lt_fail.leo.out b/tests/expectations/parser/parser/expression/binary/lt_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/lt_fail.leo.out rename to tests/expectations/parser/parser/expression/binary/lt_fail.out diff --git a/tests/expectations/parser/parser/expression/binary/lte.leo.out b/tests/expectations/parser/parser/expression/binary/lte.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/lte.leo.out rename to tests/expectations/parser/parser/expression/binary/lte.out diff --git a/tests/expectations/parser/parser/expression/binary/lte_fail.leo.out b/tests/expectations/parser/parser/expression/binary/lte_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/lte_fail.leo.out rename to tests/expectations/parser/parser/expression/binary/lte_fail.out diff --git a/tests/expectations/parser/parser/expression/binary/mul.leo.out b/tests/expectations/parser/parser/expression/binary/mul.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/mul.leo.out rename to tests/expectations/parser/parser/expression/binary/mul.out diff --git a/tests/expectations/parser/parser/expression/binary/ne.leo.out b/tests/expectations/parser/parser/expression/binary/ne.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/ne.leo.out rename to tests/expectations/parser/parser/expression/binary/ne.out diff --git a/tests/expectations/parser/parser/expression/binary/ne_fail.leo.out b/tests/expectations/parser/parser/expression/binary/ne_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/ne_fail.leo.out rename to tests/expectations/parser/parser/expression/binary/ne_fail.out diff --git a/tests/expectations/parser/parser/expression/binary/or.leo.out b/tests/expectations/parser/parser/expression/binary/or.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/or.leo.out rename to tests/expectations/parser/parser/expression/binary/or.out diff --git a/tests/expectations/parser/parser/expression/binary/sub.leo.out b/tests/expectations/parser/parser/expression/binary/sub.out similarity index 100% rename from tests/expectations/parser/parser/expression/binary/sub.leo.out rename to tests/expectations/parser/parser/expression/binary/sub.out diff --git a/tests/expectations/parser/parser/expression/circuit_init_fail.leo.out b/tests/expectations/parser/parser/expression/circuit_init_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/circuit_init_fail.leo.out rename to tests/expectations/parser/parser/expression/circuit_init_fail.out diff --git a/tests/expectations/parser/parser/expression/ident.leo.out b/tests/expectations/parser/parser/expression/ident.out similarity index 100% rename from tests/expectations/parser/parser/expression/ident.leo.out rename to tests/expectations/parser/parser/expression/ident.out diff --git a/tests/expectations/parser/parser/expression/literal/address.leo.out b/tests/expectations/parser/parser/expression/literal/address.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/address.leo.out rename to tests/expectations/parser/parser/expression/literal/address.out diff --git a/tests/expectations/parser/parser/expression/literal/address_fail.leo.out b/tests/expectations/parser/parser/expression/literal/address_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/address_fail.leo.out rename to tests/expectations/parser/parser/expression/literal/address_fail.out diff --git a/tests/expectations/parser/parser/expression/literal/address_parse.leo.out b/tests/expectations/parser/parser/expression/literal/address_parse.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/address_parse.leo.out rename to tests/expectations/parser/parser/expression/literal/address_parse.out diff --git a/tests/expectations/parser/parser/expression/literal/bool.leo.out b/tests/expectations/parser/parser/expression/literal/bool.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/bool.leo.out rename to tests/expectations/parser/parser/expression/literal/bool.out diff --git a/tests/expectations/parser/parser/expression/literal/bool_parse.leo.out b/tests/expectations/parser/parser/expression/literal/bool_parse.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/bool_parse.leo.out rename to tests/expectations/parser/parser/expression/literal/bool_parse.out diff --git a/tests/expectations/parser/parser/expression/literal/char.leo.out b/tests/expectations/parser/parser/expression/literal/char.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/char.leo.out rename to tests/expectations/parser/parser/expression/literal/char.out diff --git a/tests/expectations/parser/parser/expression/literal/char_fail.leo.out b/tests/expectations/parser/parser/expression/literal/char_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/char_fail.leo.out rename to tests/expectations/parser/parser/expression/literal/char_fail.out diff --git a/tests/expectations/parser/parser/expression/literal/char_parse.leo.out b/tests/expectations/parser/parser/expression/literal/char_parse.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/char_parse.leo.out rename to tests/expectations/parser/parser/expression/literal/char_parse.out diff --git a/tests/expectations/parser/parser/expression/literal/comment.leo.out b/tests/expectations/parser/parser/expression/literal/comment.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/comment.leo.out rename to tests/expectations/parser/parser/expression/literal/comment.out diff --git a/tests/expectations/parser/parser/expression/literal/comment_fail.leo.out b/tests/expectations/parser/parser/expression/literal/comment_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/comment_fail.leo.out rename to tests/expectations/parser/parser/expression/literal/comment_fail.out diff --git a/tests/expectations/parser/parser/expression/literal/formatted_string.leo.out b/tests/expectations/parser/parser/expression/literal/formatted_string.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/formatted_string.leo.out rename to tests/expectations/parser/parser/expression/literal/formatted_string.out diff --git a/tests/expectations/parser/parser/expression/literal/group.leo.out b/tests/expectations/parser/parser/expression/literal/group.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/group.leo.out rename to tests/expectations/parser/parser/expression/literal/group.out diff --git a/tests/expectations/parser/parser/expression/literal/group_fail.leo.out b/tests/expectations/parser/parser/expression/literal/group_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/group_fail.leo.out rename to tests/expectations/parser/parser/expression/literal/group_fail.out diff --git a/tests/expectations/parser/parser/expression/literal/int.leo.out b/tests/expectations/parser/parser/expression/literal/int.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int.leo.out rename to tests/expectations/parser/parser/expression/literal/int.out diff --git a/tests/expectations/parser/parser/expression/literal/int_fail.leo.out b/tests/expectations/parser/parser/expression/literal/int_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_fail.leo.out rename to tests/expectations/parser/parser/expression/literal/int_fail.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/field.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/field.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/field.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/field.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/field_fail.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/field_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/field_fail.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/field_fail.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i128.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i128.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/i128.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/i128.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i16.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i16.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/i16.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/i16.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i32.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i32.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/i32.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/i32.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i64.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i64.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/i64.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/i64.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i8.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i8.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/i8.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/i8.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/implicit.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/implicit.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/implicit.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/implicit.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/mono_group.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/mono_group.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/mono_group.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/mono_group.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/scalar.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/scalar.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/scalar.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/scalar.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u128.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u128.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/u128.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/u128.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u16.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u16.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/u16.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/u16.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u32.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u32.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/u32.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/u32.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u64.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u64.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/u64.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/u64.out diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u8.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u8.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/int_parse/u8.leo.out rename to tests/expectations/parser/parser/expression/literal/int_parse/u8.out diff --git a/tests/expectations/parser/parser/expression/literal/postfix_types.leo.out b/tests/expectations/parser/parser/expression/literal/postfix_types.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/postfix_types.leo.out rename to tests/expectations/parser/parser/expression/literal/postfix_types.out diff --git a/tests/expectations/parser/parser/expression/literal/string.leo.out b/tests/expectations/parser/parser/expression/literal/string.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/string.leo.out rename to tests/expectations/parser/parser/expression/literal/string.out diff --git a/tests/expectations/parser/parser/expression/literal/string_fail.leo.out b/tests/expectations/parser/parser/expression/literal/string_fail.out similarity index 100% rename from tests/expectations/parser/parser/expression/literal/string_fail.leo.out rename to tests/expectations/parser/parser/expression/literal/string_fail.out diff --git a/tests/expectations/parser/parser/expression/ternary.leo.out b/tests/expectations/parser/parser/expression/ternary.out similarity index 100% rename from tests/expectations/parser/parser/expression/ternary.leo.out rename to tests/expectations/parser/parser/expression/ternary.out diff --git a/tests/expectations/parser/parser/expression/token_format.leo.out b/tests/expectations/parser/parser/expression/token_format.out similarity index 100% rename from tests/expectations/parser/parser/expression/token_format.leo.out rename to tests/expectations/parser/parser/expression/token_format.out diff --git a/tests/expectations/parser/parser/expression/unary/negate.leo.out b/tests/expectations/parser/parser/expression/unary/negate.out similarity index 100% rename from tests/expectations/parser/parser/expression/unary/negate.leo.out rename to tests/expectations/parser/parser/expression/unary/negate.out diff --git a/tests/expectations/parser/parser/expression/unary/not.leo.out b/tests/expectations/parser/parser/expression/unary/not.out similarity index 100% rename from tests/expectations/parser/parser/expression/unary/not.leo.out rename to tests/expectations/parser/parser/expression/unary/not.out diff --git a/tests/expectations/parser/parser/functions/annotated_arg_not_ident.leo.out b/tests/expectations/parser/parser/functions/annotated_arg_not_ident.out similarity index 100% rename from tests/expectations/parser/parser/functions/annotated_arg_not_ident.leo.out rename to tests/expectations/parser/parser/functions/annotated_arg_not_ident.out diff --git a/tests/expectations/parser/parser/functions/annotated_context_fail.leo.out b/tests/expectations/parser/parser/functions/annotated_context_fail.out similarity index 100% rename from tests/expectations/parser/parser/functions/annotated_context_fail.leo.out rename to tests/expectations/parser/parser/functions/annotated_context_fail.out diff --git a/tests/expectations/parser/parser/functions/bounded_recursion.leo.out b/tests/expectations/parser/parser/functions/bounded_recursion.out similarity index 100% rename from tests/expectations/parser/parser/functions/bounded_recursion.leo.out rename to tests/expectations/parser/parser/functions/bounded_recursion.out diff --git a/tests/expectations/parser/parser/functions/const_input.leo.out b/tests/expectations/parser/parser/functions/const_input.out similarity index 100% rename from tests/expectations/parser/parser/functions/const_input.leo.out rename to tests/expectations/parser/parser/functions/const_input.out diff --git a/tests/expectations/parser/parser/functions/const_param.leo.out b/tests/expectations/parser/parser/functions/const_param.out similarity index 100% rename from tests/expectations/parser/parser/functions/const_param.leo.out rename to tests/expectations/parser/parser/functions/const_param.out diff --git a/tests/expectations/parser/parser/functions/const_public_param_fail.leo.out b/tests/expectations/parser/parser/functions/const_public_param_fail.out similarity index 100% rename from tests/expectations/parser/parser/functions/const_public_param_fail.leo.out rename to tests/expectations/parser/parser/functions/const_public_param_fail.out diff --git a/tests/expectations/parser/parser/functions/empty2.leo.out b/tests/expectations/parser/parser/functions/empty2.out similarity index 100% rename from tests/expectations/parser/parser/functions/empty2.leo.out rename to tests/expectations/parser/parser/functions/empty2.out diff --git a/tests/expectations/parser/parser/functions/escape_fail.leo.out b/tests/expectations/parser/parser/functions/escape_fail.out similarity index 100% rename from tests/expectations/parser/parser/functions/escape_fail.leo.out rename to tests/expectations/parser/parser/functions/escape_fail.out diff --git a/tests/expectations/parser/parser/functions/ident_token_fail.leo.out b/tests/expectations/parser/parser/functions/ident_token_fail.out similarity index 100% rename from tests/expectations/parser/parser/functions/ident_token_fail.leo.out rename to tests/expectations/parser/parser/functions/ident_token_fail.out diff --git a/tests/expectations/parser/parser/functions/infinite_recursion.leo.out b/tests/expectations/parser/parser/functions/infinite_recursion.out similarity index 100% rename from tests/expectations/parser/parser/functions/infinite_recursion.leo.out rename to tests/expectations/parser/parser/functions/infinite_recursion.out diff --git a/tests/expectations/parser/parser/functions/mut_input_fail.leo.out b/tests/expectations/parser/parser/functions/mut_input_fail.out similarity index 100% rename from tests/expectations/parser/parser/functions/mut_input_fail.leo.out rename to tests/expectations/parser/parser/functions/mut_input_fail.out diff --git a/tests/expectations/parser/parser/functions/params.leo.out b/tests/expectations/parser/parser/functions/params.out similarity index 100% rename from tests/expectations/parser/parser/functions/params.leo.out rename to tests/expectations/parser/parser/functions/params.out diff --git a/tests/expectations/parser/parser/functions/params_return.leo.out b/tests/expectations/parser/parser/functions/params_return.out similarity index 100% rename from tests/expectations/parser/parser/functions/params_return.leo.out rename to tests/expectations/parser/parser/functions/params_return.out diff --git a/tests/expectations/parser/parser/functions/public_const_param_fail.leo.out b/tests/expectations/parser/parser/functions/public_const_param_fail.out similarity index 100% rename from tests/expectations/parser/parser/functions/public_const_param_fail.leo.out rename to tests/expectations/parser/parser/functions/public_const_param_fail.out diff --git a/tests/expectations/parser/parser/functions/public_param.leo.out b/tests/expectations/parser/parser/functions/public_param.out similarity index 100% rename from tests/expectations/parser/parser/functions/public_param.leo.out rename to tests/expectations/parser/parser/functions/public_param.out diff --git a/tests/expectations/parser/parser/functions/return.leo.out b/tests/expectations/parser/parser/functions/return.out similarity index 100% rename from tests/expectations/parser/parser/functions/return.leo.out rename to tests/expectations/parser/parser/functions/return.out diff --git a/tests/expectations/parser/parser/functions/test_keyword_fail.leo.out b/tests/expectations/parser/parser/functions/test_keyword_fail.out similarity index 100% rename from tests/expectations/parser/parser/functions/test_keyword_fail.leo.out rename to tests/expectations/parser/parser/functions/test_keyword_fail.out diff --git a/tests/expectations/parser/parser/inputs/input_const.leo.out b/tests/expectations/parser/parser/inputs/input_const.out similarity index 100% rename from tests/expectations/parser/parser/inputs/input_const.leo.out rename to tests/expectations/parser/parser/inputs/input_const.out diff --git a/tests/expectations/parser/parser/inputs/input_constant.leo.out b/tests/expectations/parser/parser/inputs/input_constant.out similarity index 100% rename from tests/expectations/parser/parser/inputs/input_constant.leo.out rename to tests/expectations/parser/parser/inputs/input_constant.out diff --git a/tests/expectations/parser/parser/inputs/input_constant_public_fail.leo.out b/tests/expectations/parser/parser/inputs/input_constant_public_fail.out similarity index 100% rename from tests/expectations/parser/parser/inputs/input_constant_public_fail.leo.out rename to tests/expectations/parser/parser/inputs/input_constant_public_fail.out diff --git a/tests/expectations/parser/parser/inputs/input_fail.leo.out b/tests/expectations/parser/parser/inputs/input_fail.out similarity index 100% rename from tests/expectations/parser/parser/inputs/input_fail.leo.out rename to tests/expectations/parser/parser/inputs/input_fail.out diff --git a/tests/expectations/parser/parser/inputs/input_public.leo.out b/tests/expectations/parser/parser/inputs/input_public.out similarity index 100% rename from tests/expectations/parser/parser/inputs/input_public.leo.out rename to tests/expectations/parser/parser/inputs/input_public.out diff --git a/tests/expectations/parser/parser/inputs/input_public_constant_fail.leo.out b/tests/expectations/parser/parser/inputs/input_public_constant_fail.out similarity index 100% rename from tests/expectations/parser/parser/inputs/input_public_constant_fail.leo.out rename to tests/expectations/parser/parser/inputs/input_public_constant_fail.out diff --git a/tests/expectations/parser/parser/program/backslash_eof.leo.out b/tests/expectations/parser/parser/program/backslash_eof.out similarity index 100% rename from tests/expectations/parser/parser/program/backslash_eof.leo.out rename to tests/expectations/parser/parser/program/backslash_eof.out diff --git a/tests/expectations/parser/parser/program/bidi_comment_2_fail.leo.out b/tests/expectations/parser/parser/program/bidi_comment_2_fail.out similarity index 100% rename from tests/expectations/parser/parser/program/bidi_comment_2_fail.leo.out rename to tests/expectations/parser/parser/program/bidi_comment_2_fail.out diff --git a/tests/expectations/parser/parser/program/bidi_comment_fail.leo.out b/tests/expectations/parser/parser/program/bidi_comment_fail.out similarity index 100% rename from tests/expectations/parser/parser/program/bidi_comment_fail.leo.out rename to tests/expectations/parser/parser/program/bidi_comment_fail.out diff --git a/tests/expectations/parser/parser/program/dollar_eof.leo.out b/tests/expectations/parser/parser/program/dollar_eof.out similarity index 100% rename from tests/expectations/parser/parser/program/dollar_eof.leo.out rename to tests/expectations/parser/parser/program/dollar_eof.out diff --git a/tests/expectations/parser/parser/program/escape_u8_eof.leo.out b/tests/expectations/parser/parser/program/escape_u8_eof.out similarity index 100% rename from tests/expectations/parser/parser/program/escape_u8_eof.leo.out rename to tests/expectations/parser/parser/program/escape_u8_eof.out diff --git a/tests/expectations/parser/parser/program/hex_eof.leo.out b/tests/expectations/parser/parser/program/hex_eof.out similarity index 100% rename from tests/expectations/parser/parser/program/hex_eof.leo.out rename to tests/expectations/parser/parser/program/hex_eof.out diff --git a/tests/expectations/parser/parser/program/pipe_eof.leo.out b/tests/expectations/parser/parser/program/pipe_eof.out similarity index 100% rename from tests/expectations/parser/parser/program/pipe_eof.leo.out rename to tests/expectations/parser/parser/program/pipe_eof.out diff --git a/tests/expectations/parser/parser/program/q_eof.leo.out b/tests/expectations/parser/parser/program/q_eof.out similarity index 100% rename from tests/expectations/parser/parser/program/q_eof.leo.out rename to tests/expectations/parser/parser/program/q_eof.out diff --git a/tests/expectations/parser/parser/program/sq_eof.leo.out b/tests/expectations/parser/parser/program/sq_eof.out similarity index 100% rename from tests/expectations/parser/parser/program/sq_eof.leo.out rename to tests/expectations/parser/parser/program/sq_eof.out diff --git a/tests/expectations/parser/parser/program/tilde_eof.leo.out b/tests/expectations/parser/parser/program/tilde_eof.out similarity index 100% rename from tests/expectations/parser/parser/program/tilde_eof.leo.out rename to tests/expectations/parser/parser/program/tilde_eof.out diff --git a/tests/expectations/parser/parser/program/unclosed_unicode_eof_fail.leo.out b/tests/expectations/parser/parser/program/unclosed_unicode_eof_fail.out similarity index 100% rename from tests/expectations/parser/parser/program/unclosed_unicode_eof_fail.leo.out rename to tests/expectations/parser/parser/program/unclosed_unicode_eof_fail.out diff --git a/tests/expectations/parser/parser/serialize/one_plus_one.leo.out b/tests/expectations/parser/parser/serialize/one_plus_one.out similarity index 100% rename from tests/expectations/parser/parser/serialize/one_plus_one.leo.out rename to tests/expectations/parser/parser/serialize/one_plus_one.out diff --git a/tests/expectations/parser/parser/serialize/parser_error.leo.out b/tests/expectations/parser/parser/serialize/parser_error.out similarity index 100% rename from tests/expectations/parser/parser/serialize/parser_error.leo.out rename to tests/expectations/parser/parser/serialize/parser_error.out diff --git a/tests/expectations/parser/parser/statement/assign.leo.out b/tests/expectations/parser/parser/statement/assign.out similarity index 100% rename from tests/expectations/parser/parser/statement/assign.leo.out rename to tests/expectations/parser/parser/statement/assign.out diff --git a/tests/expectations/parser/parser/statement/assign_fail.leo.out b/tests/expectations/parser/parser/statement/assign_fail.out similarity index 100% rename from tests/expectations/parser/parser/statement/assign_fail.leo.out rename to tests/expectations/parser/parser/statement/assign_fail.out diff --git a/tests/expectations/parser/parser/statement/block.leo.out b/tests/expectations/parser/parser/statement/block.out similarity index 100% rename from tests/expectations/parser/parser/statement/block.leo.out rename to tests/expectations/parser/parser/statement/block.out diff --git a/tests/expectations/parser/parser/statement/conditional.leo.out b/tests/expectations/parser/parser/statement/conditional.out similarity index 100% rename from tests/expectations/parser/parser/statement/conditional.leo.out rename to tests/expectations/parser/parser/statement/conditional.out diff --git a/tests/expectations/parser/parser/statement/conditional_fail.leo.out b/tests/expectations/parser/parser/statement/conditional_fail.out similarity index 100% rename from tests/expectations/parser/parser/statement/conditional_fail.leo.out rename to tests/expectations/parser/parser/statement/conditional_fail.out diff --git a/tests/expectations/parser/parser/statement/console.leo.out b/tests/expectations/parser/parser/statement/console.out similarity index 100% rename from tests/expectations/parser/parser/statement/console.leo.out rename to tests/expectations/parser/parser/statement/console.out diff --git a/tests/expectations/parser/parser/statement/console_fail.leo.out b/tests/expectations/parser/parser/statement/console_fail.out similarity index 100% rename from tests/expectations/parser/parser/statement/console_fail.leo.out rename to tests/expectations/parser/parser/statement/console_fail.out diff --git a/tests/expectations/parser/parser/statement/definition.leo.out b/tests/expectations/parser/parser/statement/definition.out similarity index 100% rename from tests/expectations/parser/parser/statement/definition.leo.out rename to tests/expectations/parser/parser/statement/definition.out diff --git a/tests/expectations/parser/parser/statement/definition_fail.leo.out b/tests/expectations/parser/parser/statement/definition_fail.out similarity index 100% rename from tests/expectations/parser/parser/statement/definition_fail.leo.out rename to tests/expectations/parser/parser/statement/definition_fail.out diff --git a/tests/expectations/parser/parser/statement/expression.leo.out b/tests/expectations/parser/parser/statement/expression.out similarity index 100% rename from tests/expectations/parser/parser/statement/expression.leo.out rename to tests/expectations/parser/parser/statement/expression.out diff --git a/tests/expectations/parser/parser/statement/expression_fail.leo.out b/tests/expectations/parser/parser/statement/expression_fail.out similarity index 100% rename from tests/expectations/parser/parser/statement/expression_fail.leo.out rename to tests/expectations/parser/parser/statement/expression_fail.out diff --git a/tests/expectations/parser/parser/statement/hex_int_fail.leo.out b/tests/expectations/parser/parser/statement/hex_int_fail.out similarity index 100% rename from tests/expectations/parser/parser/statement/hex_int_fail.leo.out rename to tests/expectations/parser/parser/statement/hex_int_fail.out diff --git a/tests/expectations/parser/parser/statement/iteration.leo.out b/tests/expectations/parser/parser/statement/iteration.out similarity index 100% rename from tests/expectations/parser/parser/statement/iteration.leo.out rename to tests/expectations/parser/parser/statement/iteration.out diff --git a/tests/expectations/parser/parser/statement/let_mut_recover.leo.out b/tests/expectations/parser/parser/statement/let_mut_recover.out similarity index 100% rename from tests/expectations/parser/parser/statement/let_mut_recover.leo.out rename to tests/expectations/parser/parser/statement/let_mut_recover.out diff --git a/tests/expectations/parser/parser/statement/return.leo.out b/tests/expectations/parser/parser/statement/return.out similarity index 100% rename from tests/expectations/parser/parser/statement/return.leo.out rename to tests/expectations/parser/parser/statement/return.out diff --git a/tests/expectations/parser/parser/statement/return_fail.leo.out b/tests/expectations/parser/parser/statement/return_fail.out similarity index 100% rename from tests/expectations/parser/parser/statement/return_fail.leo.out rename to tests/expectations/parser/parser/statement/return_fail.out diff --git a/tests/expectations/parser/parser/unreachable/define.leo.out b/tests/expectations/parser/parser/unreachable/define.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/define.leo.out rename to tests/expectations/parser/parser/unreachable/define.out diff --git a/tests/expectations/parser/parser/unreachable/eat_ident.leo.out b/tests/expectations/parser/parser/unreachable/eat_ident.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/eat_ident.leo.out rename to tests/expectations/parser/parser/unreachable/eat_ident.out diff --git a/tests/expectations/parser/parser/unreachable/eat_int.leo.out b/tests/expectations/parser/parser/unreachable/eat_int.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/eat_int.leo.out rename to tests/expectations/parser/parser/unreachable/eat_int.out diff --git a/tests/expectations/parser/parser/unreachable/equality_and_order_expression.leo.out b/tests/expectations/parser/parser/unreachable/equality_and_order_expression.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/equality_and_order_expression.leo.out rename to tests/expectations/parser/parser/unreachable/equality_and_order_expression.out diff --git a/tests/expectations/parser/parser/unreachable/expect_ident.leo.out b/tests/expectations/parser/parser/unreachable/expect_ident.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/expect_ident.leo.out rename to tests/expectations/parser/parser/unreachable/expect_ident.out diff --git a/tests/expectations/parser/parser/unreachable/math_op_fail.leo.out b/tests/expectations/parser/parser/unreachable/math_op_fail.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/math_op_fail.leo.out rename to tests/expectations/parser/parser/unreachable/math_op_fail.out diff --git a/tests/expectations/parser/parser/unreachable/math_op_pass.leo.out b/tests/expectations/parser/parser/unreachable/math_op_pass.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/math_op_pass.leo.out rename to tests/expectations/parser/parser/unreachable/math_op_pass.out diff --git a/tests/expectations/parser/parser/unreachable/postfix_fail.leo.out b/tests/expectations/parser/parser/unreachable/postfix_fail.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/postfix_fail.leo.out rename to tests/expectations/parser/parser/unreachable/postfix_fail.out diff --git a/tests/expectations/parser/parser/unreachable/postfix_pass.leo.out b/tests/expectations/parser/parser/unreachable/postfix_pass.out similarity index 100% rename from tests/expectations/parser/parser/unreachable/postfix_pass.leo.out rename to tests/expectations/parser/parser/unreachable/postfix_pass.out diff --git a/tests/test-framework/src/runner.rs b/tests/test-framework/src/runner.rs index de72df0886..ad2dbb2090 100644 --- a/tests/test-framework/src/runner.rs +++ b/tests/test-framework/src/runner.rs @@ -164,7 +164,7 @@ impl TestCases { .join(expectation_category) .join(relative_path.parent().expect("no parent dir for test")) .join(relative_path.file_name().expect("no file name for test")) - .with_extension("leo.out"); + .with_extension("out"); if expectation_path.exists() { if !is_env_var_set("CLEAR_LEO_TEST_EXPECTATIONS") {