Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions test_programs/gates_report_brillig.sh
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
8 changes: 5 additions & 3 deletions test_programs/gates_report_brillig_execution.sh
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
Loading