Skip to content

Commit

Permalink
chore: remove debug output from run_acir_tests script (#1970)
Browse files Browse the repository at this point in the history
This snuck in in the
AztecProtocol/aztec-packages@0036e07
PR.

`-x` allows one to print the command before executing it, so its good
for debugging, but when running tests it becomes verbose for the CI

# Checklist:
Remove the checklist to signal you've completed it. Enable auto-merge if
the PR is ready to merge.
- [ ] If the pull request requires a cryptography review (e.g.
cryptographic algorithm implementations) I have added the 'crypto' tag.
- [ ] I have reviewed my diff in github, line by line and removed
unexpected formatting changes, testing logs, or commented-out code.
- [ ] Every change is related to the PR description.
- [ ] I have
[linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
this pull request to relevant issues (if any exist).
  • Loading branch information
kevaundray authored and AztecBot committed Sep 4, 2023
1 parent 9ff920d commit 155e32b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acir_tests/run_acir_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function test() {
$BB prove_and_verify -c $CRS_PATH -b ./target/$dir_name.bytecode > /dev/null 2>&1
fi
result=$?
set -xeu
set -eu

if [ $result -eq 0 ]; then
echo -e "\033[32mPASSED\033[0m"
Expand Down

0 comments on commit 155e32b

Please sign in to comment.