diff --git a/test_programs/gates_report_brillig.sh b/test_programs/gates_report_brillig.sh index 3f2a4542735..900abe656fa 100755 --- a/test_programs/gates_report_brillig.sh +++ b/test_programs/gates_report_brillig.sh @@ -1,8 +1,16 @@ #!/usr/bin/env bash set -e -# These tests are incompatible with gas reporting -excluded_dirs=("workspace" "workspace_default_member" "double_verify_nested_proof" "overlapping_dep_and_mod" "comptime_println") +# These tests are incompatible with artifact size reporting +excluded_dirs=( + "workspace" + "workspace_default_member" + "double_verify_nested_proof" + "overlapping_dep_and_mod" + "comptime_println" + # This test utilizes enums which are experimental + "regression_7323" +) current_dir=$(pwd) base_path="$current_dir/execution_success" diff --git a/test_programs/gates_report_brillig_execution.sh b/test_programs/gates_report_brillig_execution.sh index c6a904f8b93..bf9e698589c 100755 --- a/test_programs/gates_report_brillig_execution.sh +++ b/test_programs/gates_report_brillig_execution.sh @@ -1,17 +1,19 @@ #!/usr/bin/env bash set -e -# These tests are incompatible with gas reporting +# These tests are incompatible with execution trace reporting excluded_dirs=( "workspace" "workspace_default_member" "double_verify_nested_proof" "overlapping_dep_and_mod" "comptime_println" - # bit sizes for bigint operation doesn't match up. + # bit sizes for bigint operation doesn't match up. "bigint" - # Expected to fail as test asserts on which runtime it is in. + # Expected to fail as test asserts on which runtime it is in. "is_unconstrained" + # This test utilizes enums which are experimental + "regression_7323" ) current_dir=$(pwd)