Skip to content
8 changes: 4 additions & 4 deletions acir_tests/run_acir_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -e

BB=$PWD/${BB:-../cpp/build/bin/bb}
CRS_PATH=~/.bb-crs
BRANCH=master
BRANCH=kw/add-bb-tests
Comment thread
kevaundray marked this conversation as resolved.
Outdated
Comment thread
kevaundray marked this conversation as resolved.
Outdated

# Pull down the test vectors from the noir repo, if we don't have the folder already.
if [ ! -d acir_tests ]; then
Expand All @@ -18,10 +18,10 @@ if [ ! -d acir_tests ]; then
git clone -b $BRANCH --filter=blob:none --no-checkout https://github.com/noir-lang/noir.git
cd noir
git sparse-checkout init --cone
git sparse-checkout set crates/nargo_cli/tests/test_data
git sparse-checkout set crates/nargo_cli/tests/test_data_ssa_refactor
git checkout
cd ..
mv noir/crates/nargo_cli/tests/test_data acir_tests
mv noir/crates/nargo_cli/tests/test_data_ssa_refactor acir_tests
rm -rf noir
fi
fi
Expand All @@ -35,7 +35,7 @@ fail_dirs=$(grep "^fail" config.toml | sed 's/fail = \[//;s/\]//;s/\"//g;s/ //g'
# Convert them to array
exclude_array=($exclude_dirs)
fail_array=($fail_dirs)
skip_array=(diamond_deps_0 workspace workspace_default_member)
skip_array=(diamond_deps_0 workspace workspace_default_member 9_conditional)
Comment thread
kevaundray marked this conversation as resolved.
Outdated

function test() {
echo -n "Testing $1... "
Expand Down
Loading