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
1 change: 1 addition & 0 deletions barretenberg/acir_tests/.rebuild_patterns
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
^acir_tests/scripts/run_test.sh
2 changes: 2 additions & 0 deletions barretenberg/acir_tests/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ export bb=$(realpath ../cpp/build/bin/bb)
tests_tar=barretenberg-acir-tests-$(hash_str \
$(../../noir/bootstrap.sh hash-tests) \
$(cache_content_hash \
./.rebuild_patterns \
../cpp/.rebuild_patterns \
)).tar.gz

tests_hash=$(hash_str \
$(../../noir/bootstrap.sh hash-tests) \
$(cache_content_hash \
^barretenberg/acir_tests/ \
./.rebuild_patterns \
../cpp/.rebuild_patterns \
../ts/.rebuild_patterns))

Expand Down
2 changes: 1 addition & 1 deletion barretenberg/acir_tests/scripts/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [ "$COMPILE" -ne 0 ]; then
export RAYON_NUM_THREADS=${RAYON_NUM_THREADS:-4}
rm -rf target
set +e
compile_output=$($nargo compile --pedantic-solving --silence-warnings 2>&1 && $nargo execute --pedantic-solving 2>&1)
compile_output=$($nargo compile --silence-warnings 2>&1 && $nargo execute 2>&1)
result=$?
set -e
if [ "$result" -ne 0 ]; then
Expand Down